From: jonas.jensen@gmail.com (Jonas Jensen)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH v6 1/4] net: moxa: clear DESC1 on ndo_start_xmit()
Date: Mon, 25 Aug 2014 16:22:11 +0200 [thread overview]
Message-ID: <1408976531-15589-1-git-send-email-jonas.jensen@gmail.com> (raw)
In-Reply-To: <1408544322-32023-1-git-send-email-jonas.jensen@gmail.com>
TX buffer length is not cleared on ndo_start_xmit().
Failing to do so can bug/hang the controller and
cause TX interrupts to stop altogether.
Remove the readl() and compute a new value for DESC1.
Addresses https://bugzilla.kernel.org/show_bug.cgi?id=69031
Signed-off-by: Jonas Jensen <jonas.jensen@gmail.com>
---
Notes:
Changes since v5:
1. remove readl(desc + TX_REG_OFFSET_DESC1) in moxart_mac_start_xmit()
2. compute entirely new values for DESC1
3. set TX_DESC1_END if (tx_head == TX_DESC_NUM_MASK)
Applies to next-20140825
drivers/net/ethernet/moxa/moxart_ether.c | 7 +++----
1 file changed, 3 insertions(+), 4 deletions(-)
diff --git a/drivers/net/ethernet/moxa/moxart_ether.c b/drivers/net/ethernet/moxa/moxart_ether.c
index 5020fd4..eed70d9 100644
--- a/drivers/net/ethernet/moxa/moxart_ether.c
+++ b/drivers/net/ethernet/moxa/moxart_ether.c
@@ -346,10 +346,9 @@ static int moxart_mac_start_xmit(struct sk_buff *skb, struct net_device *ndev)
len = ETH_ZLEN;
}
- txdes1 = readl(desc + TX_REG_OFFSET_DESC1);
- txdes1 |= TX_DESC1_LTS | TX_DESC1_FTS;
- txdes1 &= ~(TX_DESC1_FIFO_COMPLETE | TX_DESC1_INTR_COMPLETE);
- txdes1 |= (len & TX_DESC1_BUF_SIZE_MASK);
+ txdes1 = TX_DESC1_LTS | TX_DESC1_FTS | (len & TX_DESC1_BUF_SIZE_MASK);
+ if (tx_head == TX_DESC_NUM_MASK)
+ txdes1 |= TX_DESC1_END;
writel(txdes1, desc + TX_REG_OFFSET_DESC1);
writel(TX_DESC0_DMA_OWN, desc + TX_REG_OFFSET_DESC0);
--
1.8.2.1
next prev parent reply other threads:[~2014-08-25 14:22 UTC|newest]
Thread overview: 18+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-08-19 14:49 [PATCH v4 1/2] net: moxa: clear TX descriptor length bits Jonas Jensen
2014-08-19 14:49 ` [PATCH v4 2/2] net: moxa: replace build_skb() with netdev_alloc_skb_ip_align() / memcpy() Jonas Jensen
2014-08-19 18:31 ` Eric Dumazet
2014-08-20 14:24 ` Jonas Jensen
2014-08-20 14:19 ` [PATCH v5 " Jonas Jensen
2014-08-25 14:22 ` [PATCH v6 2/4] " Jonas Jensen
2014-08-26 0:26 ` David Miller
2014-08-26 9:04 ` Arnd Bergmann
2014-08-26 9:10 ` David Laight
2014-08-26 10:55 ` Eric Dumazet
2014-08-21 21:43 ` [PATCH v4 2/2] " Michał Mirosław
2014-08-25 14:23 ` Jonas Jensen
2014-08-20 14:18 ` [PATCH v5 1/2] net: moxa: clear TX descriptor length bits Jonas Jensen
2014-08-20 17:10 ` Eric Dumazet
2014-08-25 14:23 ` Jonas Jensen
2014-08-22 4:39 ` David Miller
2014-08-25 14:22 ` Jonas Jensen [this message]
2014-08-26 0:25 ` [PATCH v6 1/4] net: moxa: clear DESC1 on ndo_start_xmit() David Miller
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=1408976531-15589-1-git-send-email-jonas.jensen@gmail.com \
--to=jonas.jensen@gmail.com \
--cc=linux-arm-kernel@lists.infradead.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 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).