From: Sergei Shtylyov <sshtylyov@ru.mvista.com>
To: davem@davemloft.net
Cc: netdev@vger.kernel.org
Subject: Re: [PATCH] netpoll: fix TX queue overflow in trapped mode
Date: Sat, 28 Apr 2007 22:52:01 +0400 [thread overview]
Message-ID: <200704282252.01296.sshtylyov@ru.mvista.com> (raw)
In-Reply-To: <200704282212.32443.sshtylyov@ru.mvista.com>
On Saturday 28 April 2007 22:12, you wrote:
> CONFIG_NETPOLL_TRAP causes the TX queue controls to be completely bypassed
> in the netpoll's "trapped" mode which easily causes overflows in the
> drivers with short TX queues (most notably, in 8139too with its 4-deep
> queue). So, make this option more sensible by making it only bypass the TX
> softirq wakeup.
Dammit! Finally forgot to add acks earned so far:
> Signed-off-by: Sergei Shtylyov <sshtylyov@ru.mvista.com>
Acked-by: Jeff Garzik <jgarzik@pobox.com>
Acked-by: Matt Mackall <mpm@selenic.com>
> ---
> Split this part form the initial patch as request by Matt Mackall.
>
> include/linux/netdevice.h | 8 +++-----
> 2 files changed, 3 insertions(+), 10 deletions(-)
>
> Index: linux-2.6/include/linux/netdevice.h
> ===================================================================
> --- linux-2.6.orig/include/linux/netdevice.h
> +++ linux-2.6/include/linux/netdevice.h
> @@ -647,8 +647,10 @@ static inline void netif_start_queue(str
> static inline void netif_wake_queue(struct net_device *dev)
> {
> #ifdef CONFIG_NETPOLL_TRAP
> - if (netpoll_trap())
> + if (netpoll_trap()) {
> + clear_bit(__LINK_STATE_XOFF, &dev->state);
> return;
> + }
> #endif
> if (test_and_clear_bit(__LINK_STATE_XOFF, &dev->state))
> __netif_schedule(dev);
> @@ -656,10 +658,6 @@ static inline void netif_wake_queue(stru
>
> static inline void netif_stop_queue(struct net_device *dev)
> {
> -#ifdef CONFIG_NETPOLL_TRAP
> - if (netpoll_trap())
> - return;
> -#endif
> set_bit(__LINK_STATE_XOFF, &dev->state);
> }
next prev parent reply other threads:[~2007-04-28 18:50 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2007-04-28 18:12 [PATCH] netpoll: fix TX queue overflow in trapped mode Sergei Shtylyov
2007-04-28 18:52 ` Sergei Shtylyov [this message]
2007-04-28 20:25 ` Sergei Shtylyov
2007-04-29 3:59 ` 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=200704282252.01296.sshtylyov@ru.mvista.com \
--to=sshtylyov@ru.mvista.com \
--cc=davem@davemloft.net \
--cc=netdev@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 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).