Lines Matching defs:frame

4053 	 "Received an Authentication frame with authentication sequence "
4057 "frame in sequence"},
6860 * Handle management frame beacon and probe response
7714 if (unlikely((le16_to_cpu(pkt->u.frame.length) + IPW_RX_FRAME_SIZE) >
7728 skb_reserve(rxb->skb, offsetof(struct ipw_rx_packet, u.frame.data));
7730 /* Set the size of the skb to the size of the frame */
7731 skb_put(rxb->skb, le16_to_cpu(pkt->u.frame.length));
7757 struct ipw_rx_frame *frame = &pkt->u.frame;
7760 u16 received_channel = frame->received_channel;
7761 u8 antennaAndPhy = frame->antennaAndPhy;
7762 s8 antsignal = frame->rssi_dbm - IPW_RSSI_TO_DBM; /* call it signed anyhow */
7763 u16 pktrate = frame->rate;
7770 unsigned short len = le16_to_cpu(pkt->u.frame.length);
7777 if (unlikely((le16_to_cpu(pkt->u.frame.length) + IPW_RX_FRAME_SIZE) >
7800 /* copy the frame itself */
7822 ipw_rt->rt_tsf = (u64)(frame->parent_tsf[3] << 24 |
7823 frame->parent_tsf[2] << 16 |
7824 frame->parent_tsf[1] << 8 |
7825 frame->parent_tsf[0]);
7829 ipw_rt->rt_dbmnoise = (s8) le16_to_cpu(frame->noise);
7894 /* Set the size of the skb to the size of the frame */
7934 struct ipw_rx_frame *frame = &pkt->u.frame;
7940 u16 channel = frame->received_channel;
7941 u8 phy_flags = frame->antennaAndPhy;
7942 s8 signal = frame->rssi_dbm - IPW_RSSI_TO_DBM;
7943 s8 noise = (s8) le16_to_cpu(frame->noise);
7944 u8 rate = frame->rate;
7945 unsigned short len = le16_to_cpu(pkt->u.frame.length);
8004 /* copy the frame data to write after where the radiotap header goes */
8016 /* Set the size of the skb to the size of the frame */
8031 ipw_rt->rt_tsf = (u64)(frame->parent_tsf[3] << 24 |
8032 frame->parent_tsf[2] << 16 |
8033 frame->parent_tsf[1] << 8 |
8034 frame->parent_tsf[0]);
8247 * ipw header and 802.11 frame */
8248 skb_put(skb, le16_to_cpu(pkt->u.frame.length) +
8251 /* Advance past the ipw packet header to the 802.11 frame */
8254 /* Push the libipw_rx_stats before the 802.11 frame */
8309 case RX_FRAME_TYPE: /* 802.11 frame */ {
8311 .rssi = pkt->u.frame.rssi_dbm -
8314 pkt->u.frame.rssi_dbm -
8317 le16_to_cpu(pkt->u.frame.noise),
8318 .rate = pkt->u.frame.rate,
8321 pkt->u.frame.received_channel,
8323 (pkt->u.frame.
8327 .len = le16_to_cpu(pkt->u.frame.length),
8368 * frame control of the packet and disregard
8382 le16_to_cpu(pkt->u.frame.length));
8384 if (le16_to_cpu(pkt->u.frame.length) <