Lines Matching refs:fp
22 u32 fc_frame_crc_check(struct fc_frame *fp) in fc_frame_crc_check() argument
29 WARN_ON(!fc_frame_is_linear(fp)); in fc_frame_crc_check()
30 fr_flags(fp) &= ~FCPHF_CRC_UNCHECKED; in fc_frame_crc_check()
31 len = (fr_len(fp) + 3) & ~3; /* round up length to include fill */ in fc_frame_crc_check()
32 bp = (const u8 *) fr_hdr(fp); in fc_frame_crc_check()
34 error = crc ^ fr_crc(fp); in fc_frame_crc_check()
45 struct fc_frame *fp; in _fc_frame_alloc() local
55 fp = (struct fc_frame *) skb; in _fc_frame_alloc()
56 fc_frame_init(fp); in _fc_frame_alloc()
58 return fp; in _fc_frame_alloc()
64 struct fc_frame *fp; in fc_frame_alloc_fill() local
70 fp = _fc_frame_alloc(payload_len + fill); in fc_frame_alloc_fill()
71 if (fp) { in fc_frame_alloc_fill()
72 memset((char *) fr_hdr(fp) + payload_len, 0, fill); in fc_frame_alloc_fill()
74 skb_trim(fp_skb(fp), in fc_frame_alloc_fill()
77 return fp; in fc_frame_alloc_fill()