]> git.baikalelectronics.ru Git - kernel.git/commit
virtio-net: remove useless disable on freeze
authorMichael S. Tsirkin <mst@redhat.com>
Wed, 30 May 2012 14:21:29 +0000 (17:21 +0300)
committerDavid S. Miller <davem@davemloft.net>
Wed, 30 May 2012 20:36:15 +0000 (16:36 -0400)
commit059d93ce217f03f9012d03b358f887b5b6890796
tree459923eb896240212a0e7aadb10ff63467b7544f
parenta86cf83b3e42f9e655ee14e8cdeea67d2e91393a
virtio-net: remove useless disable on freeze

disable_cb is just an optimization: it
can not guarantee that there are no callbacks.
In particular it doesn't have any effect when
event index is on.

Instead, detach, napi disable and reset on freeze ensure we don't run
concurrently with a callback.

Remove the useless calls so we get same behaviour
with and without event index.

Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/virtio_net.c