macvtap: rework object lifetime rules
authorArnd Bergmann <arnd@arndb.de>
Thu, 18 Feb 2010 05:45:36 +0000 (05:45 +0000)
committerDavid S. Miller <davem@davemloft.net>
Thu, 18 Feb 2010 22:08:37 +0000 (14:08 -0800)
commit02df55d28c6001a3cdb7a997a34a0b01f01d015e
treeea1bf32f7464294ce90e288bf5440323e9ca6e7f
parent37ee3d5b3e979a168536e7e2f15bd1e769cb4122
macvtap: rework object lifetime rules

This reworks the change done by the previous patch
in a more complete way.

The original macvtap code has a number of problems
resulting from the use of RCU for protecting the
access to struct macvtap_queue from open files.

This includes
- need for GFP_ATOMIC allocations for skbs
- potential deadlocks when copy_*_user sleeps
- inability to work with vhost-net

Changing the lifetime of macvtap_queue to always
depend on the open file solves all these. The
RCU reference simply moves one step down to
the reference on the macvlan_dev, which we
only need for nonblocking operations.

Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Acked-by: Sridhar Samudrala <sri@us.ibm.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/macvtap.c