[NETPOLL]: rx_flags bugfix
authorJeff Moyer <jmoyer@redhat.com>
Fri, 12 Aug 2005 02:23:04 +0000 (19:23 -0700)
committerDavid S. Miller <davem@davemloft.net>
Fri, 12 Aug 2005 02:23:04 +0000 (19:23 -0700)
Initialize npinfo->rx_flags.  The way it stands now, this will have random
garbage, and so will incur a locking penalty even when an rx_hook isn't
registered and we are not active in the netpoll polling code.

Signed-off-by: Jeff Moyer <jmoyer@redhat.com>
Signed-off-by: Matt Mackall <mpm@selenic.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
net/core/netpoll.c

index c327c9e..895f3ef 100644 (file)
@@ -639,6 +639,7 @@ int netpoll_setup(struct netpoll *np)
                if (!npinfo)
                        goto release;
 
+               npinfo->rx_flags = 0;
                npinfo->rx_np = NULL;
                npinfo->poll_lock = SPIN_LOCK_UNLOCKED;
                npinfo->poll_owner = -1;