Searched defs:frame_status (Results 1 - 15 of 15) sorted by relevance

/drivers/net/wireless/iwlwifi/mvm/
H A Dtx.c806 struct agg_tx_status *frame_status = &tx_resp->status; local
810 u16 fstatus = le16_to_cpu(frame_status[i].status);
818 le16_to_cpu(frame_status[i].sequence));
/drivers/net/ethernet/apple/
H A Dmace.c884 unsigned frame_status; local
913 frame_status = (data[nb-3] << 8) + data[nb-4];
914 if (frame_status & (RS_OFLO|RS_CLSN|RS_FRAMERR|RS_FCSERR)) {
916 if (frame_status & RS_OFLO)
918 if (frame_status & RS_FRAMERR)
920 if (frame_status & RS_FCSERR)
H A Dmacmace.c644 unsigned int frame_status = mf->rcvsts; local
646 if (frame_status & (RS_OFLO | RS_CLSN | RS_FRAMERR | RS_FCSERR)) {
648 if (frame_status & RS_OFLO) {
652 if (frame_status & RS_CLSN)
654 if (frame_status & RS_FRAMERR)
656 if (frame_status & RS_FCSERR)
659 unsigned int frame_length = mf->rcvcnt + ((frame_status & 0x0F) << 8 );
/drivers/net/fddi/skfp/
H A Dhwmtm.c148 int frame_status);
150 int frame_status);
154 int frame_status);
1395 * void hwm_rx_frag(smc,virt,phys,len,frame_status)
1408 * frame_status status of the frame, see design description
1416 int frame_status)
1421 NDD_TRACE("RHfB",virt,len,frame_status) ;
1422 DB_RX("hwm_rx_frag: len = %d, frame_status = %x\n",len,frame_status,2) ;
1426 rbctrl = cpu_to_le32( (((__u32)frame_status
1415 hwm_rx_frag(struct s_smc *smc, char far *virt, u_long phys, int len, int frame_status) argument
1550 hwm_tx_init(struct s_smc *smc, u_char fc, int frag_count, int frame_len, int frame_status) argument
1628 hwm_tx_frag(struct s_smc *smc, char far *virt, u_long phys, int len, int frame_status) argument
1813 int frame_status ; local
[all...]
H A Dskfddi.c142 int len, int frame_status);
144 int frame_len, int frame_status);
147 int len, int frame_status);
1114 int frame_status; // HWM tx frame status. local
1146 frame_status = hwm_tx_init(smc, fc, 1, skb->len, queue);
1148 if ((frame_status & (LOC_TX | LAN_TX)) == 0) {
1151 if ((frame_status & RING_DOWN) != 0) {
1154 } else if ((frame_status & OUT_OF_TXD) != 0) {
1178 if (frame_status & LAN_TX) {
1183 frame_status | FIRST_FRA
[all...]
/drivers/net/wireless/iwlwifi/dvm/
H A Dtx.c943 struct agg_tx_status *frame_status = &tx_resp->status; local
981 u16 fstatus = le16_to_cpu(frame_status[i].status);
/drivers/net/ethernet/dlink/
H A Ddl2k.c829 u64 frame_status; local
837 frame_status = le64_to_cpu(desc->status);
838 pkt_len = frame_status & 0xffff;
842 if (frame_status & RFS_Errors) {
844 if (frame_status & (RxRuntFrame | RxLengthError))
846 if (frame_status & RxFCSError)
848 if (frame_status & RxAlignmentError && np->speed != 1000)
850 if (frame_status & RxFIFOOverrun)
881 !(frame_status & (TCPError | UDPError | IPError))) {
H A Dsundance.c1343 u32 frame_status = le32_to_cpu(desc->status); local
1349 if (!(frame_status & DescOwn))
1351 pkt_len = frame_status & 0x1fff; /* Chip omits the CRC. */
1354 frame_status);
1355 if (frame_status & 0x001f4000) {
1359 frame_status);
1361 if (frame_status & 0x00100000)
1363 if (frame_status & 0x00010000)
1365 if (frame_status & 0x00060000)
1367 if (frame_status
[all...]
/drivers/net/wireless/zd1211rw/
H A Dzd_mac.h118 u8 frame_status; member in struct:rx_status
129 /* rx_status field frame_status */
/drivers/net/ethernet/packetengines/
H A Dhamachi.c1415 s32 frame_status; local
1424 frame_status = get_unaligned_le32(&(buf_addr[data_size - 12]));
1427 frame_status);
1443 if (frame_status & 0x00380000) {
1447 frame_status);
1449 if (frame_status & 0x00600000)
1451 if (frame_status & 0x00080000)
1453 if (frame_status & 0x00100000)
1455 if (frame_status < 0)
1460 u16 pkt_len = (frame_status
[all...]
H A Dyellowfin.c1054 s16 frame_status; local
1067 frame_status = get_unaligned_le16(&(buf_addr[data_size - 2]));
1070 __func__, frame_status);
1081 } else if ((yp->drv_flags & IsGigabit) && (frame_status & 0x0038)) {
1085 __func__, frame_status);
1087 if (frame_status & 0x0060) dev->stats.rx_length_errors++;
1088 if (frame_status & 0x0008) dev->stats.rx_frame_errors++;
1089 if (frame_status & 0x0010) dev->stats.rx_crc_errors++;
1090 if (frame_status < 0) dev->stats.rx_dropped++;
/drivers/media/usb/cpia2/
H A Dcpia2.h122 enum frame_status { enum
362 volatile enum frame_status status;
/drivers/usb/host/
H A Dfhci.h426 u8 frame_status; /* flag that indicates to stop fill this frame */ member in struct:fhci_time_frame
/drivers/net/wireless/iwlegacy/
H A D4965-mac.c2669 struct agg_tx_status *frame_status = tx_resp->u.agg_status; local
2686 status = le16_to_cpu(frame_status[0].status);
2712 status = le16_to_cpu(frame_status[i].status);
2713 seq = le16_to_cpu(frame_status[i].sequence);
/drivers/staging/slicoss/
H A Dslichw.h241 u32 frame_status; member in struct:slic_hddr_wds::__anon6803::__anon6804
247 u32 frame_status; member in struct:slic_hddr_wds::__anon6803::__anon6805
257 #define frame_status14 u0.hdrs_14port.frame_status
259 #define frame_statusGB u0.hdrs_gbit.frame_status

Completed in 1091 milliseconds