Lines Matching defs:frame

4029 	 "Received an Authentication frame with authentication sequence "
4033 "frame in sequence"},
6834 * Handle management frame beacon and probe response
7684 if (unlikely((le16_to_cpu(pkt->u.frame.length) + IPW_RX_FRAME_SIZE) >
7698 skb_reserve(rxb->skb, offsetof(struct ipw_rx_packet, u.frame.data));
7700 /* Set the size of the skb to the size of the frame */
7701 skb_put(rxb->skb, le16_to_cpu(pkt->u.frame.length));
7727 struct ipw_rx_frame *frame = &pkt->u.frame;
7730 u16 received_channel = frame->received_channel;
7731 u8 antennaAndPhy = frame->antennaAndPhy;
7732 s8 antsignal = frame->rssi_dbm - IPW_RSSI_TO_DBM; /* call it signed anyhow */
7733 u16 pktrate = frame->rate;
7740 unsigned short len = le16_to_cpu(pkt->u.frame.length);
7747 if (unlikely((le16_to_cpu(pkt->u.frame.length) + IPW_RX_FRAME_SIZE) >
7770 /* copy the frame itself */
7792 ipw_rt->rt_tsf = (u64)(frame->parent_tsf[3] << 24 |
7793 frame->parent_tsf[2] << 16 |
7794 frame->parent_tsf[1] << 8 |
7795 frame->parent_tsf[0]);
7799 ipw_rt->rt_dbmnoise = (s8) le16_to_cpu(frame->noise);
7864 /* Set the size of the skb to the size of the frame */
7904 struct ipw_rx_frame *frame = &pkt->u.frame;
7910 u16 channel = frame->received_channel;
7911 u8 phy_flags = frame->antennaAndPhy;
7912 s8 signal = frame->rssi_dbm - IPW_RSSI_TO_DBM;
7913 s8 noise = (s8) le16_to_cpu(frame->noise);
7914 u8 rate = frame->rate;
7915 unsigned short len = le16_to_cpu(pkt->u.frame.length);
7974 /* copy the frame data to write after where the radiotap header goes */
7986 /* Set the size of the skb to the size of the frame */
8001 ipw_rt->rt_tsf = (u64)(frame->parent_tsf[3] << 24 |
8002 frame->parent_tsf[2] << 16 |
8003 frame->parent_tsf[1] << 8 |
8004 frame->parent_tsf[0]);
8217 * ipw header and 802.11 frame */
8218 skb_put(skb, le16_to_cpu(pkt->u.frame.length) +
8221 /* Advance past the ipw packet header to the 802.11 frame */
8224 /* Push the libipw_rx_stats before the 802.11 frame */
8278 case RX_FRAME_TYPE: /* 802.11 frame */ {
8280 .rssi = pkt->u.frame.rssi_dbm -
8283 pkt->u.frame.rssi_dbm -
8286 le16_to_cpu(pkt->u.frame.noise),
8287 .rate = pkt->u.frame.rate,
8290 pkt->u.frame.received_channel,
8292 (pkt->u.frame.
8296 .len = le16_to_cpu(pkt->u.frame.length),
8337 * frame control of the packet and disregard
8351 le16_to_cpu(pkt->u.frame.length));
8353 if (le16_to_cpu(pkt->u.frame.length) <