[PATCH 4/5][SRU][XENIAL] nbd: don't shutdown sock with irq's disabled
Colin King
colin.king at canonical.com
Thu Oct 11 14:41:22 UTC 2018
From: Josef Bacik <jbacik at fb.com>
BugLink: https://bugs.launchpad.net/bugs/1793464
We hit a warning when shutting down the nbd connection because we have irq's
disabled. We don't really need to do the shutdown under the lock, just clear
the nbd->sock. So do the shutdown outside of the irq. This gets rid of the
warning.
Signed-off-by: Josef Bacik <jbacik at fb.com>
Signed-off-by: Jens Axboe <axboe at fb.com>
(backported from commit c261189862c6f65117eb3b1748622a08ef49c262)
Signed-off-by: Colin Ian King <colin.king at canonical.com>
---
drivers/block/nbd.c | 19 +++++++++++++++----
1 file changed, 15 insertions(+), 4 deletions(-)
diff --git a/drivers/block/nbd.c b/drivers/block/nbd.c
index 910c3c6..c2a688b 100644
--- a/drivers/block/nbd.c
+++ b/drivers/block/nbd.c
@@ -172,6 +172,8 @@ static void nbd_end_request(struct nbd_device *nbd, struct request *req)
*/
static void sock_shutdown(struct nbd_device *nbd)
{
+ struct socket *sock;
+
spin_lock_irq(&nbd->sock_lock);
if (!nbd->sock) {
@@ -179,18 +181,21 @@ static void sock_shutdown(struct nbd_device *nbd)
return;
}
+ sock = nbd->sock;
dev_warn(disk_to_dev(nbd->disk), "shutting down socket\n");
- kernel_sock_shutdown(nbd->sock, SHUT_RDWR);
- sockfd_put(nbd->sock);
nbd->sock = NULL;
spin_unlock_irq(&nbd->sock_lock);
+ kernel_sock_shutdown(sock, SHUT_RDWR);
+ sockfd_put(sock);
+
del_timer(&nbd->timeout_timer);
}
static void nbd_xmit_timeout(unsigned long arg)
{
struct nbd_device *nbd = (struct nbd_device *)arg;
+ struct socket *sock = NULL;
unsigned long flags;
if (list_empty(&nbd->queue_head))
@@ -200,10 +205,16 @@ static void nbd_xmit_timeout(unsigned long arg)
nbd->timedout = true;
- if (nbd->sock)
- kernel_sock_shutdown(nbd->sock, SHUT_RDWR);
+ if (nbd->sock) {
+ sock = nbd->sock;
+ get_file(sock->file);
+ }
spin_unlock_irqrestore(&nbd->sock_lock, flags);
+ if (sock) {
+ kernel_sock_shutdown(sock, SHUT_RDWR);
+ sockfd_put(sock);
+ }
dev_err(nbd_to_dev(nbd), "Connection timed out, shutting down connection\n");
}
--
2.7.4
More information about the kernel-team
mailing list