xen/netback: fix error path of xenvif_connect_data()
commit 3d5c1a037d37392a6859afbde49be5ba6a70a6b3 upstream.
xenvif_connect_data() calls module_put() in case of error. This is
wrong as there is no related module_get().
Remove the superfluous module_put().
Fixes: 279f438e36 ("xen-netback: Don't destroy the netdev until the vif is shut down")
Cc: <stable@vger.kernel.org> # 3.12
Signed-off-by: Juergen Gross <jgross@suse.com>
Reviewed-by: Paul Durrant <paul@xen.org>
Reviewed-by: Wei Liu <wei.liu@kernel.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
89ab39da14
commit
ccb02adf32
@@ -718,7 +718,6 @@ int xenvif_connect_data(struct xenvif_queue *queue,
|
|||||||
xenvif_unmap_frontend_data_rings(queue);
|
xenvif_unmap_frontend_data_rings(queue);
|
||||||
netif_napi_del(&queue->napi);
|
netif_napi_del(&queue->napi);
|
||||||
err:
|
err:
|
||||||
module_put(THIS_MODULE);
|
|
||||||
return err;
|
return err;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user