Lines Matching defs:fp
62 #define fp_skb(fp) (&((fp)->skb)) argument
63 #define fr_hdr(fp) ((fp)->skb.data) argument
64 #define fr_len(fp) ((fp)->skb.len) argument
65 #define fr_cb(fp) ((struct fcoe_rcv_info *)&((fp)->skb.cb[0])) argument
66 #define fr_dev(fp) (fr_cb(fp)->fr_dev) argument
67 #define fr_seq(fp) (fr_cb(fp)->fr_seq) argument
68 #define fr_sof(fp) (fr_cb(fp)->fr_sof) argument
69 #define fr_eof(fp) (fr_cb(fp)->fr_eof) argument
70 #define fr_flags(fp) (fr_cb(fp)->fr_flags) argument
71 #define fr_encaps(fp) (fr_cb(fp)->fr_encaps) argument
72 #define fr_max_payload(fp) (fr_cb(fp)->fr_max_payload) argument
73 #define fr_fsp(fp) (fr_cb(fp)->fr_fsp) argument
74 #define fr_crc(fp) (fr_cb(fp)->fr_crc) argument
113 static inline void fc_frame_init(struct fc_frame *fp) in fc_frame_init()
130 struct fc_frame *fp; in fc_frame_alloc() local
146 static inline void fc_frame_free(struct fc_frame *fp) in fc_frame_free()
151 static inline int fc_frame_is_linear(struct fc_frame *fp) in fc_frame_is_linear()
161 struct fc_frame_header *__fc_frame_header_get(const struct fc_frame *fp) in __fc_frame_header_get()
171 struct fc_frame_header *fc_frame_header_get(const struct fc_frame *fp) in fc_frame_header_get()
180 static inline u32 fc_frame_sid(const struct fc_frame *fp) in fc_frame_sid()
188 static inline u32 fc_frame_did(const struct fc_frame *fp) in fc_frame_did()
203 static inline void *fc_frame_payload_get(const struct fc_frame *fp, in fc_frame_payload_get()
218 static inline u8 fc_frame_payload_op(const struct fc_frame *fp) in fc_frame_payload_op()
232 static inline enum fc_class fc_frame_class(const struct fc_frame *fp) in fc_frame_class()
244 static inline u8 fc_frame_rctl(const struct fc_frame *fp) in fc_frame_rctl()
249 static inline bool fc_frame_is_cmd(const struct fc_frame *fp) in fc_frame_is_cmd()