Lines Matching defs:len
52 #define fr_len(fp) ((fp)->skb.len)
116 static inline struct fc_frame *fc_frame_alloc(struct fc_lport *dev, size_t len)
121 * Note: Since len will often be a constant multiple of 4,
124 if (len && len % 4)
125 fp = fc_frame_alloc_fill(dev, len);
127 fp = _fc_frame_alloc(len);
184 * The len parameter is the minimum length for the payload portion.
192 size_t len)
196 if (fr_len(fp) >= sizeof(struct fc_frame_header) + len)