netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 00/21] clean up rx_copybreak handling [split version]
@ 2011-07-09 17:17 Michał Mirosław
  2011-07-09 17:17 ` [PATCH 08/21] net: natsemi: use common rx_copybreak handling Michał Mirosław
                   ` (21 more replies)
  0 siblings, 22 replies; 34+ messages in thread
From: Michał Mirosław @ 2011-07-09 17:17 UTC (permalink / raw)
  To: netdev
  Cc: Steffen Klassert, Santiago Leon, Tim Hockin, Don Fry,
	Francois Romieu, Ion Badulescu, Matt Carlson, Michael Chan,
	Grant Grundler, David Dillow, Roger Luethi, David S. Miller

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


^ permalink raw reply	[flat|nested] 34+ messages in thread

end of thread, other threads:[~2011-07-10 15:11 UTC | newest]

Thread overview: 34+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-07-09 17:17 [PATCH 00/21] clean up rx_copybreak handling [split version] 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 06/21] net: ibmveth: make rx_copybreak threshold consistent with other drivers Michał Mirosław
2011-07-09 17:17 ` [PATCH 04/21] net: fealnx: 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 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 01/21] net: wrap common patterns of rx handler code Michał Mirosław
2011-07-09 17:17 ` [PATCH 03/21] net: epic100: use common rx_copybreak handling 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 13/21] net: sundance: use common rx_copybreak handling Michał Mirosław
2011-07-09 17:17 ` [PATCH 12/21] net: starfire: " 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 11/21] net: sis190: 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 21/21] net: yellowfin: use common rx_copybreak handling Michał Mirosław
2011-07-09 17:17 ` [PATCH 16/21] net: tulip/interrupt.c: " 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 17/21] net: tulip/winbond-840: use common rx_copybreak handling Michał Mirosław
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 18/21] net: typhoon: " Michał Mirosław
2011-07-09 17:46   ` David Dillow
2011-07-09 17:17 ` [PATCH 19/21] net: via-rhine: " 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

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).