Lines Matching defs:frame

3983 	 "Received an Authentication frame with authentication sequence "
3987 "frame in sequence"},
6788 * Handle management frame beacon and probe response
7638 if (unlikely((le16_to_cpu(pkt->u.frame.length) + IPW_RX_FRAME_SIZE) >
7652 skb_reserve(rxb->skb, offsetof(struct ipw_rx_packet, u.frame.data));
7654 /* Set the size of the skb to the size of the frame */
7655 skb_put(rxb->skb, le16_to_cpu(pkt->u.frame.length));
7681 struct ipw_rx_frame *frame = &pkt->u.frame;
7684 u16 received_channel = frame->received_channel;
7685 u8 antennaAndPhy = frame->antennaAndPhy;
7686 s8 antsignal = frame->rssi_dbm - IPW_RSSI_TO_DBM; /* call it signed anyhow */
7687 u16 pktrate = frame->rate;
7694 unsigned short len = le16_to_cpu(pkt->u.frame.length);
7701 if (unlikely((le16_to_cpu(pkt->u.frame.length) + IPW_RX_FRAME_SIZE) >
7724 /* copy the frame itself */
7746 ipw_rt->rt_tsf = (u64)(frame->parent_tsf[3] << 24 |
7747 frame->parent_tsf[2] << 16 |
7748 frame->parent_tsf[1] << 8 |
7749 frame->parent_tsf[0]);
7753 ipw_rt->rt_dbmnoise = (s8) le16_to_cpu(frame->noise);
7818 /* Set the size of the skb to the size of the frame */
7858 struct ipw_rx_frame *frame = &pkt->u.frame;
7864 u16 channel = frame->received_channel;
7865 u8 phy_flags = frame->antennaAndPhy;
7866 s8 signal = frame->rssi_dbm - IPW_RSSI_TO_DBM;
7867 s8 noise = (s8) le16_to_cpu(frame->noise);
7868 u8 rate = frame->rate;
7869 unsigned short len = le16_to_cpu(pkt->u.frame.length);
7928 /* copy the frame data to write after where the radiotap header goes */
7940 /* Set the size of the skb to the size of the frame */
7955 ipw_rt->rt_tsf = (u64)(frame->parent_tsf[3] << 24 |
7956 frame->parent_tsf[2] << 16 |
7957 frame->parent_tsf[1] << 8 |
7958 frame->parent_tsf[0]);
8171 * ipw header and 802.11 frame */
8172 skb_put(skb, le16_to_cpu(pkt->u.frame.length) +
8175 /* Advance past the ipw packet header to the 802.11 frame */
8178 /* Push the libipw_rx_stats before the 802.11 frame */
8232 case RX_FRAME_TYPE: /* 802.11 frame */ {
8234 .rssi = pkt->u.frame.rssi_dbm -
8237 pkt->u.frame.rssi_dbm -
8240 le16_to_cpu(pkt->u.frame.noise),
8241 .rate = pkt->u.frame.rate,
8244 pkt->u.frame.received_channel,
8246 (pkt->u.frame.
8250 .len = le16_to_cpu(pkt->u.frame.length),
8291 * frame control of the packet and disregard
8305 le16_to_cpu(pkt->u.frame.length));
8307 if (le16_to_cpu(pkt->u.frame.length) <