[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-ID: <20071121115358.2e31fb91@freepuppy.rosehill>
Date: Wed, 21 Nov 2007 11:53:58 -0800
From: Stephen Hemminger <shemminger@...ux-foundation.org>
To: Jeff Garzik <jgarzik@...ox.com>
Cc: netdev@...r.kernel.org
Subject: [PATCH] cassini: NAPI configuration
The Cassini driver has NAPI support, but it not possible to configure it.
Compile tested only, no idea if it works (no hardware).
Get rid of warning from lefover variable in now visible code.
Signed-off-by: Stephen Hemminger <shemminger@...ux-foundation.org>
--- a/drivers/net/Kconfig 2007-11-19 18:56:12.000000000 -0800
+++ b/drivers/net/Kconfig 2007-11-21 11:28:20.000000000 -0800
@@ -587,6 +587,15 @@ config CASSINI
Support for the Sun Cassini chip, aka Sun GigaSwift Ethernet. See also
<http://www.sun.com/products-n-solutions/hardware/docs/pdf/817-4341-10.pdf>
+config CASSINI_NAPI
+ bool "Use Rx Polling (NAPI) (EXPERIMENTAL)"
+ depends on CASSINI && EXPERIMENTAL
+ help
+ NAPI is a new driver API designed to reduce CPU and interrupt load
+ when the driver is receiving lots of packets from the card.
+
+ If in doubt, say N.
+
config SUNVNET
tristate "Sun Virtual Network support"
depends on SUN_LDOMS
--- a/drivers/net/cassini.c 2007-11-16 16:17:20.000000000 -0800
+++ b/drivers/net/cassini.c 2007-11-21 11:30:43.000000000 -0800
@@ -2611,7 +2611,7 @@ static int cas_poll(struct napi_struct *
{
struct cas *cp = container_of(napi, struct cas, napi);
struct net_device *dev = cp->dev;
- int i, enable_intr, todo, credits;
+ int i, enable_intr, credits;
u32 status = readl(cp->regs + REG_INTR_STATUS);
unsigned long flags;
-
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Powered by blists - more mailing lists