From: "Michał Mirosław" <mirq-linux@rere.qmqm.pl>
To: netdev@vger.kernel.org
Cc: Steffen Klassert <klassert@mathematik.tu-chemnitz.de>,
Santiago Leon <santil@linux.vnet.ibm.com>,
Tim Hockin <thockin@hockin.org>, Don Fry <pcnet32@frontier.com>,
Francois Romieu <romieu@fr.zoreil.com>,
Ion Badulescu <ionut@badula.org>,
Matt Carlson <mcarlson@broadcom.com>,
Michael Chan <mchan@broadcom.com>,
Grant Grundler <grundler@parisc-linux.org>,
David Dillow <dave@thedillows.org>, Roger Luethi <rl@hellgate.ch>,
"David S. Miller" <davem@davemloft.net>
Subject: [PATCH 00/21] clean up rx_copybreak handling [split version]
Date: Sat, 9 Jul 2011 19:17:51 +0200 (CEST) [thread overview]
Message-ID: <cover.1310229312.git.mirq-linux@rere.qmqm.pl> (raw)
Split version of rx_copybreak cleanup patch.
Drivers marked with "[strict refill!]" are dropping packets from
rx queue's head when under memory pressure.
[Patch 1 is the same as the one I sent yesterday]
[Driver patches Cc limited to relevant maintainers, as found in MAINTAINERS]
Best Regards,
Michał Mirosław
---
Michał Mirosław (21):
net: wrap common patterns of rx handler code
net: 3c59x: use common rx_copybreak handling
net: epic100: use common rx_copybreak handling
net: fealnx: use common rx_copybreak handling
net: hamachi: use common rx_copybreak handling
net: ibmveth: make rx_copybreak threshold consistent with other
drivers
net: lib82596: use common rx_copybreak handling [strict refill!]
net: natsemi: use common rx_copybreak handling
net: pcnet32: use common rx_copybreak handling [strict refill!]
net: sgiseeq: use common rx_copybreak handling [strict refill!]
net: sis190: use common rx_copybreak handling
net: starfire: use common rx_copybreak handling
net: sundance: use common rx_copybreak handling
net: tg3: mark bad rx handler behaviour [strict refill!]
net: tulip/de2104x: use common rx_copybreak handling [strict refill!]
net: tulip/interrupt: use common rx_copybreak handling
net: tulip/winbond-840: use common rx_copybreak handling
net: typhoon: use common rx_copybreak handling
net: via-rhine: use common rx_copybreak handling
net: via-velocity: use common rx_copybreak handling
net: yellowfin: use common rx_copybreak handling
drivers/net/3c59x.c | 23 ++-----
drivers/net/epic100.c | 32 +++-------
drivers/net/fealnx.c | 39 ++----------
drivers/net/hamachi.c | 43 +++-----------
drivers/net/ibmveth.c | 2 +-
drivers/net/lib82596.c | 66 ++++----------------
drivers/net/natsemi.c | 30 ++--------
drivers/net/pcnet32.c | 52 +++-------------
drivers/net/sgiseeq.c | 66 ++++++++------------
drivers/net/sis190.c | 38 ++----------
drivers/net/starfire.c | 27 +++------
drivers/net/sundance.c | 26 ++------
drivers/net/tg3.c | 2 +
drivers/net/tulip/de2104x.c | 38 +++---------
drivers/net/tulip/interrupt.c | 77 +++++------------------
drivers/net/tulip/winbond-840.c | 25 ++------
drivers/net/typhoon.c | 26 ++------
drivers/net/via-rhine.c | 37 ++----------
drivers/net/via-velocity.c | 59 +++---------------
drivers/net/yellowfin.c | 27 ++------
include/linux/skbuff.h | 129 +++++++++++++++++++++++++++++++++++++++
21 files changed, 291 insertions(+), 573 deletions(-)
--
1.7.5.4
next reply other threads:[~2011-07-09 17:17 UTC|newest]
Thread overview: 34+ messages / expand[flat|nested] mbox.gz Atom feed top
2011-07-09 17:17 Michał Mirosław [this message]
2011-07-09 17:17 ` [PATCH 07/21] net: lib82596: use common rx_copybreak handling [strict refill!] Michał Mirosław
2011-07-09 22:25 ` Francois Romieu
2011-07-09 17:17 ` [PATCH 05/21] net: hamachi: use common rx_copybreak handling Michał Mirosław
2011-07-09 17:17 ` [PATCH 02/21] net: 3c59x: " Michał Mirosław
2011-07-09 22:22 ` Francois Romieu
2011-07-09 23:23 ` Michał Mirosław
2011-07-10 7:24 ` Francois Romieu
2011-07-09 17:17 ` [PATCH 04/21] net: fealnx: " Michał Mirosław
2011-07-09 17:17 ` [PATCH 03/21] net: epic100: " Michał Mirosław
2011-07-09 17:17 ` [PATCH 01/21] net: wrap common patterns of rx handler code Michał Mirosław
2011-07-09 17:17 ` [PATCH 06/21] net: ibmveth: make rx_copybreak threshold consistent with other drivers Michał Mirosław
2011-07-09 17:17 ` [PATCH 08/21] net: natsemi: use common rx_copybreak handling Michał Mirosław
2011-07-09 17:17 ` [PATCH 14/21] net: tg3: mark bad rx handler behaviour [strict refill!] Michał Mirosław
2011-07-09 17:17 ` [PATCH 12/21] net: starfire: use common rx_copybreak handling Michał Mirosław
2011-07-09 17:17 ` [PATCH 13/21] net: sundance: " Michał Mirosław
2011-07-09 17:17 ` [PATCH 10/21] net: sgiseeq: use common rx_copybreak handling [strict refill!] Michał Mirosław
2011-07-09 17:17 ` [PATCH 11/21] net: sis190: use common rx_copybreak handling Michał Mirosław
2011-07-09 17:17 ` [PATCH 09/21] net: pcnet32: use common rx_copybreak handling [strict refill!] Michał Mirosław
2011-07-09 22:28 ` Francois Romieu
2011-07-09 17:17 ` [PATCH 17/21] net: tulip/winbond-840: use common rx_copybreak handling Michał Mirosław
2011-07-09 17:17 ` [PATCH 15/21] net: tulip/de2104x: use common rx_copybreak handling [strict refill!] Michał Mirosław
2011-07-09 22:31 ` Francois Romieu
2011-07-09 17:17 ` [PATCH 19/21] net: via-rhine: use common rx_copybreak handling Michał Mirosław
2011-07-09 17:17 ` [PATCH 18/21] net: typhoon: " Michał Mirosław
2011-07-09 17:46 ` David Dillow
2011-07-09 17:17 ` [PATCH 20/21] net: via-velocity: " Michał Mirosław
2011-07-09 22:19 ` Francois Romieu
2011-07-09 17:17 ` [PATCH 21/21] net: yellowfin: " Michał Mirosław
2011-07-09 17:17 ` [PATCH 16/21] net: tulip/interrupt.c: " Michał Mirosław
2011-07-09 18:20 ` [PATCH 00/21] clean up rx_copybreak handling [split version] Joe Perches
2011-07-10 11:28 ` Michał Mirosław
2011-07-10 11:52 ` Michał Mirosław
2011-07-10 15:11 ` Joe Perches
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=cover.1310229312.git.mirq-linux@rere.qmqm.pl \
--to=mirq-linux@rere.qmqm.pl \
--cc=dave@thedillows.org \
--cc=davem@davemloft.net \
--cc=grundler@parisc-linux.org \
--cc=ionut@badula.org \
--cc=klassert@mathematik.tu-chemnitz.de \
--cc=mcarlson@broadcom.com \
--cc=mchan@broadcom.com \
--cc=netdev@vger.kernel.org \
--cc=pcnet32@frontier.com \
--cc=rl@hellgate.ch \
--cc=romieu@fr.zoreil.com \
--cc=santil@linux.vnet.ibm.com \
--cc=thockin@hockin.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).