All of lore.kernel.org
 help / color / mirror / Atom feed
From: Mohammed Shafi <shafi.wireless@gmail.com>
To: 李刚 <gang.li@watchdata.com>
Cc: wireless <linux-wireless@vger.kernel.org>
Subject: Re: Question about IEEE80211_TX_CTL_NO_ACK in ath_9k
Date: Mon, 19 Dec 2011 18:03:19 +0530	[thread overview]
Message-ID: <CAD2nsn1UO5Lz0h4DQiYr0n=W9TAyXeGYuPbvuNt9JKeGhBjB8g@mail.gmail.com> (raw)
In-Reply-To: <20111219112845.C748820066@mail.watchdata.com.cn>

2011/12/19 李刚 <gang.li@watchdata.com>:
> Hi everybody!
>
> My wireless card is AR9280. I set the IEEE80211_TX_CTL_NO_ACK flag before
> send a packet, but found it no use. It still wait for an ACK. Then I read
> the code,

may be any of the following hacks may work ?

@@ -1039,6 +1039,9 @@ static void ath_tx_fill_desc(struct ath_softc
*sc, struct ath_buf *bf,
        info.qcu = txq->axq_qnum;

        info.flags = ATH9K_TXDESC_INTREQ;
+
+               info.flags |= ATH9K_TXDESC_NOACK;
+
        if (tx_info->flags & IEEE80211_TX_CTL_NO_ACK)
                info.flags |= ATH9K_TXDESC_NOACK;
        if (tx_info->flags & IEEE80211_TX_CTL_LDPC)

(or)

diff --git a/net/mac80211/tx.c b/net/mac80211/tx.c
index edcd1c7..0454dee 100644
--- a/net/mac80211/tx.c
+++ b/net/mac80211/tx.c
@@ -1185,6 +1185,8 @@ ieee80211_tx_prepare(struct ieee80211_sub_if_data *sdata,
        } else
                tx->flags |= IEEE80211_TX_UNICAST;

+               info->flags |= IEEE80211_TX_CTL_NO_ACK;
+
        if (!(info->flags & IEEE80211_TX_CTL_DONTFRAG)) {
                if (!(tx->flags & IEEE80211_TX_UNICAST) ||
                    skb->len + FCS_LEN <= local->hw.wiphy->frag_threshold ||



-- 
shafi

  reply	other threads:[~2011-12-19 12:33 UTC|newest]

Thread overview: 22+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2011-12-17 23:18 Question about TCP Checksum errors Larry Finger
2011-12-17 23:43 ` Eric Dumazet
2011-12-19 11:38 ` Question about IEEE80211_TX_CTL_NO_ACK in ath_9k 李刚
2011-12-19 12:33   ` Mohammed Shafi [this message]
2011-12-19 13:03     ` 李刚
2011-12-19 12:33   ` Daniel Smith
2011-12-19 13:00     ` 李刚
2011-12-19 13:43       ` Daniel Smith
2011-12-19 13:43         ` [ath9k-devel] " Daniel Smith
2011-12-30  8:15         ` Question: ieee80211_rx called twice after one ieee80211_subif_start_xmit call 李刚
2011-12-30  8:15           ` [ath9k-devel] " 李刚
2011-12-30  9:30           ` Adrian Chadd
2011-12-30  9:30             ` [ath9k-devel] " Adrian Chadd
2011-12-30 11:13             ` [ath9k-devel] 答复: " 李刚
2012-01-07  2:11         ` Question about duration of data frame in ath9k_htc 李刚
2012-01-07  2:11           ` [ath9k-devel] " 李刚
2012-01-07  5:31           ` Sujith Manoharan
2012-01-07  5:31             ` [ath9k-devel] " Sujith Manoharan
2011-12-19 13:07   ` Question about IEEE80211_TX_CTL_NO_ACK in ath_9k Helmut Schaa
2011-12-19 14:42   ` Sujith
2011-12-20  5:39     ` 李刚
2011-12-20 15:24       ` Sujith

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='CAD2nsn1UO5Lz0h4DQiYr0n=W9TAyXeGYuPbvuNt9JKeGhBjB8g@mail.gmail.com' \
    --to=shafi.wireless@gmail.com \
    --cc=gang.li@watchdata.com \
    --cc=linux-wireless@vger.kernel.org \
    /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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.