From: Samuel Ortiz <samuel@sortiz.org>
To: Zhu Yi <yi.zhu@intel.com>
Cc: linville@tuxdriver.com, linux-wireless@vger.kernel.org,
Johannes Berg <johannes@sipsolutions.net>
Subject: Re: [PATCH v4 2/2] iwmc3200wifi: rx aggregation support
Date: Tue, 01 Dec 2009 16:12:58 +0100 [thread overview]
Message-ID: <1259680378.2182.0.camel@caravaggio> (raw)
In-Reply-To: <1259633918-17517-2-git-send-email-yi.zhu@intel.com>
On Tue, 2009-12-01 at 10:18 +0800, Zhu Yi wrote:
> When the device receives an A-MSDU frame (indicated by flag
> IWM_RX_TICKET_AMSDU_MSK), use ieee80211_amsdu_to_8023s to convert
> it to a list of 802.3 frames and handled them to upper layer.
>
> Cc: Johannes Berg <johannes@sipsolutions.net>
> Cc: Samuel Ortiz <samuel@sortiz.org>
Acked-by: Samuel Ortiz <sameo@linux.intel.com>
> Signed-off-by: Zhu Yi <yi.zhu@intel.com>
> ---
> V2: use __ version of sk_buff_head operations
> V3: pass 0 as parameter extra_headroom to ieee80211_amsdu_to_8023s
> V4: set skb->protocol for every packet in the return list
>
> drivers/net/wireless/iwmc3200wifi/rx.c | 46 ++++++++++++++++++++++++++++---
> 1 files changed, 41 insertions(+), 5 deletions(-)
>
> diff --git a/drivers/net/wireless/iwmc3200wifi/rx.c b/drivers/net/wireless/iwmc3200wifi/rx.c
> index 72c27a3..6bd253a 100644
> --- a/drivers/net/wireless/iwmc3200wifi/rx.c
> +++ b/drivers/net/wireless/iwmc3200wifi/rx.c
> @@ -1534,6 +1534,33 @@ static void classify8023(struct sk_buff *skb)
> }
> }
>
> +static void iwm_rx_process_amsdu(struct iwm_priv *iwm, struct sk_buff *skb)
> +{
> + struct wireless_dev *wdev = iwm_to_wdev(iwm);
> + struct net_device *ndev = iwm_to_ndev(iwm);
> + struct sk_buff_head list;
> + struct sk_buff *frame;
> +
> + IWM_HEXDUMP(iwm, DBG, RX, "A-MSDU: ", skb->data, skb->len);
> +
> + __skb_queue_head_init(&list);
> + ieee80211_amsdu_to_8023s(skb, &list, ndev->dev_addr, wdev->iftype, 0);
> +
> + while ((frame = __skb_dequeue(&list))) {
> + ndev->stats.rx_packets++;
> + ndev->stats.rx_bytes += frame->len;
> +
> + frame->protocol = eth_type_trans(frame, ndev);
> + frame->ip_summed = CHECKSUM_NONE;
> + memset(frame->cb, 0, sizeof(frame->cb));
> +
> + if (netif_rx_ni(frame) == NET_RX_DROP) {
> + IWM_ERR(iwm, "Packet dropped\n");
> + ndev->stats.rx_dropped++;
> + }
> + }
> +}
> +
> static void iwm_rx_process_packet(struct iwm_priv *iwm,
> struct iwm_rx_packet *packet,
> struct iwm_rx_ticket_node *ticket_node)
> @@ -1548,25 +1575,34 @@ static void iwm_rx_process_packet(struct iwm_priv *iwm,
> switch (le16_to_cpu(ticket_node->ticket->action)) {
> case IWM_RX_TICKET_RELEASE:
> IWM_DBG_RX(iwm, DBG, "RELEASE packet\n");
> - classify8023(skb);
> +
> iwm_rx_adjust_packet(iwm, packet, ticket_node);
> + skb->dev = iwm_to_ndev(iwm);
> + classify8023(skb);
> +
> + if (le16_to_cpu(ticket_node->ticket->flags) &
> + IWM_RX_TICKET_AMSDU_MSK) {
> + iwm_rx_process_amsdu(iwm, skb);
> + break;
> + }
> +
> ret = ieee80211_data_to_8023(skb, ndev->dev_addr, wdev->iftype);
> if (ret < 0) {
> IWM_DBG_RX(iwm, DBG, "Couldn't convert 802.11 header - "
> "%d\n", ret);
> + kfree_skb(packet->skb);
> break;
> }
>
> IWM_HEXDUMP(iwm, DBG, RX, "802.3: ", skb->data, skb->len);
>
> - skb->dev = iwm_to_ndev(iwm);
> + ndev->stats.rx_packets++;
> + ndev->stats.rx_bytes += skb->len;
> +
> skb->protocol = eth_type_trans(skb, ndev);
> skb->ip_summed = CHECKSUM_NONE;
> memset(skb->cb, 0, sizeof(skb->cb));
>
> - ndev->stats.rx_packets++;
> - ndev->stats.rx_bytes += skb->len;
> -
> if (netif_rx_ni(skb) == NET_RX_DROP) {
> IWM_ERR(iwm, "Packet dropped\n");
> ndev->stats.rx_dropped++;
prev parent reply other threads:[~2009-12-01 15:12 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2009-12-01 2:18 [PATCH v4 1/2] wireless: add ieee80211_amsdu_to_8023s Zhu Yi
2009-12-01 2:18 ` [PATCH v4 2/2] iwmc3200wifi: rx aggregation support Zhu Yi
2009-12-01 15:12 ` Samuel Ortiz [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1259680378.2182.0.camel@caravaggio \
--to=samuel@sortiz.org \
--cc=johannes@sipsolutions.net \
--cc=linux-wireless@vger.kernel.org \
--cc=linville@tuxdriver.com \
--cc=yi.zhu@intel.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).