[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-Id: <20110525.181418.1100603684033986711.davem@davemloft.net>
Date: Wed, 25 May 2011 18:14:18 -0400 (EDT)
From: David Miller <davem@...emloft.net>
To: greearb@...delatech.com
Cc: netdev@...r.kernel.org
Subject: Re: [RFC] af-packet: Save reference to bound network device.
From: Ben Greear <greearb@...delatech.com>
Date: Wed, 25 May 2011 15:05:10 -0700
> Doesn't this piece of code take care of that?
> I tested with rmmod..but of course I could have missed something.
>
> @@ -2266,6 +2284,10 @@ static int packet_notifier(struct
> notifier_block *this, unsigned long msg, void
> }
> if (msg == NETDEV_UNREGISTER) {
> po->ifindex = -1;
> + if (po->bound_dev) {
> + dev_put(po->bound_dev);
> + po->bound_dev = NULL;
> + }
> po->prot_hook.dev = NULL;
> }
> spin_unlock(&po->bind_lock);
>
Indeed, it should, thanks for pointing that out.
Wait a second, why do you need to store the device a second
time, can't you get at po->prot_hook.dev in all the necessary
spots?
--
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