Re: [PATCH netdev-2.6 01/39] Fix jumbo frame performance

2006-01-17 Thread Jeff Garzik

Jeff Kirsher wrote:

Partition PBA for Jumbo frames based on MTU size.

Signed-off-by: Jeff Kirsher [EMAIL PROTECTED]
Signed-off-by: Jesse Brandeburg [EMAIL PROTECTED]
Signed-off-by: John Ronciak [EMAIL PROTECTED]


yay!

applied patches 1-10, finally worked this time.

one flaw, that required me to hand-edit stuff:  remember, your emails go 
directly into the git changelog.  Your email's subject line becomes the 
one-line summary for your change.  Fix jumbo frame performance is not 
adequate, because it does not give the reader enough context. 
Typically, you should prefix the summary with a word indicating the 
subsystem or driver.  In this case, I hand-edited in the prefix e1000: 
immediately following the [PATCH...] part.


Jeff


-
To unsubscribe from this list: send the line unsubscribe netdev in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html


[PATCH netdev-2.6 01/39] Fix jumbo frame performance

2006-01-12 Thread Jeff Kirsher
Partition PBA for Jumbo frames based on MTU size.

Signed-off-by: Jeff Kirsher [EMAIL PROTECTED]
Signed-off-by: Jesse Brandeburg [EMAIL PROTECTED]
Signed-off-by: John Ronciak [EMAIL PROTECTED]
---

 drivers/net/e1000/e1000_main.c |4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/net/e1000/e1000_main.c b/drivers/net/e1000/e1000_main.c
index 438a931..4b44bcd 100644
--- a/drivers/net/e1000/e1000_main.c
+++ b/drivers/net/e1000/e1000_main.c
@@ -43,7 +43,7 @@ static char e1000_driver_string[] = Int
 #else
 #define DRIVERNAPI -NAPI
 #endif
-#define DRV_VERSION 6.1.16-k2DRIVERNAPI
+#define DRV_VERSION 6.3.9-k2DRIVERNAPI
 char e1000_driver_version[] = DRV_VERSION;
 static char e1000_copyright[] = Copyright (c) 1999-2005 Intel Corporation.;
 
@@ -449,7 +449,7 @@ e1000_reset(struct e1000_adapter *adapte
}
 
if((adapter-hw.mac_type != e1000_82573) 
-  (adapter-rx_buffer_len  E1000_RXBUFFER_8192)) {
+  (adapter-netdev-mtu  E1000_RXBUFFER_8192)) {
pba -= 8; /* allocate more FIFO for Tx */
/* send an XOFF when there is enough space in the
 * Rx FIFO to hold one extra full size Rx packet 

-
To unsubscribe from this list: send the line unsubscribe netdev in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html