Lines Matching refs:fp
34 u32 fc_frame_crc_check(struct fc_frame *fp) in fc_frame_crc_check() argument
41 WARN_ON(!fc_frame_is_linear(fp)); in fc_frame_crc_check()
42 fr_flags(fp) &= ~FCPHF_CRC_UNCHECKED; in fc_frame_crc_check()
43 len = (fr_len(fp) + 3) & ~3; /* round up length to include fill */ in fc_frame_crc_check()
44 bp = (const u8 *) fr_hdr(fp); in fc_frame_crc_check()
46 error = crc ^ fr_crc(fp); in fc_frame_crc_check()
57 struct fc_frame *fp; in _fc_frame_alloc() local
67 fp = (struct fc_frame *) skb; in _fc_frame_alloc()
68 fc_frame_init(fp); in _fc_frame_alloc()
70 return fp; in _fc_frame_alloc()
76 struct fc_frame *fp; in fc_frame_alloc_fill() local
82 fp = _fc_frame_alloc(payload_len + fill); in fc_frame_alloc_fill()
83 if (fp) { in fc_frame_alloc_fill()
84 memset((char *) fr_hdr(fp) + payload_len, 0, fill); in fc_frame_alloc_fill()
86 skb_trim(fp_skb(fp), in fc_frame_alloc_fill()
89 return fp; in fc_frame_alloc_fill()