Home
last modified time | relevance | path

Searched refs:raw_frame_size (Results 1 – 4 of 4) sorted by relevance

/titanic_44/usr/src/uts/common/io/comstar/port/fcoet/
H A Dfcoet_fc.c745 int raw_frame_size; in fcoet_send_status() local
754 raw_frame_size = FCFH_SIZE + sizeof (fcoe_fcp_rsp_t); in fcoet_send_status()
756 raw_frame_size += task->task_sense_length; in fcoet_send_status()
758 raw_frame_size = P2ROUNDUP(raw_frame_size, 4); in fcoet_send_status()
761 raw_frame_size, NULL); in fcoet_send_status()
1025 int raw_frame_size; in fcoet_send_good_status() local
1027 raw_frame_size = FCFH_SIZE + sizeof (fcoe_fcp_rsp_t); in fcoet_send_good_status()
1029 raw_frame_size, NULL); in fcoet_send_good_status()
/titanic_44/usr/src/uts/common/io/fcoe/
H A Dfcoe_eth.c244 uint32_t raw_frame_size, frame_size; in fcoe_rx() local
261 raw_frame_size = MBLKL(mp); in fcoe_rx()
262 frame_size = raw_frame_size - PADDING_SIZE; in fcoe_rx()
H A Dfcoe_fc.c278 uint32_t raw_frame_size; in fcoe_allocate_frame() local
290 raw_frame_size = PADDING_SIZE + fc_frame_size; in fcoe_allocate_frame()
291 mp = fcoe_get_mblk(EPORT2MAC(eport), raw_frame_size); in fcoe_allocate_frame()
H A Dfcoe.c1030 fcoe_get_mblk(fcoe_mac_t *mac, uint32_t raw_frame_size) in fcoe_get_mblk() argument
1038 ASSERT(raw_frame_size >= 60); in fcoe_get_mblk()
1039 while ((mp = allocb((size_t)raw_frame_size, 0)) == NULL) { in fcoe_get_mblk()
1040 if ((err = strwaitbuf((size_t)raw_frame_size, BPRI_LO)) != 0) { in fcoe_get_mblk()
1045 mp->b_wptr = mp->b_rptr + raw_frame_size; in fcoe_get_mblk()