diff options
author | Paul Clements <paul.clements@steeleye.com> | 2013-07-03 18:09:04 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2013-07-03 19:08:05 -0400 |
commit | c378f70adbc1bbecd9e6db145019f14b2f688c7c (patch) | |
tree | 6b81f9cf54e812e10d6930ece08f3149dccbc535 /drivers/block/nbd.c | |
parent | 9532f149ee4532b5efc7e4a76381e1742805e1af (diff) |
nbd: correct disconnect behavior
Currently, when a disconnect is requested by the user (via NBD_DISCONNECT
ioctl) the return from NBD_DO_IT is undefined (it is usually one of
several error codes). This means that nbd-client does not know if a
manual disconnect was performed or whether a network error occurred.
Because of this, nbd-client's persist mode (which tries to reconnect after
error, but not after manual disconnect) does not always work correctly.
This change fixes this by causing NBD_DO_IT to always return 0 if a user
requests a disconnect. This means that nbd-client can correctly either
persist the connection (if an error occurred) or disconnect (if the user
requested it).
Signed-off-by: Paul Clements <paul.clements@steeleye.com>
Acked-by: Rob Landley <rob@landley.net>
Cc: <stable@vger.kernel.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'drivers/block/nbd.c')
-rw-r--r-- | drivers/block/nbd.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/drivers/block/nbd.c b/drivers/block/nbd.c index 7ed1308c42d3..2dc3b5153f0d 100644 --- a/drivers/block/nbd.c +++ b/drivers/block/nbd.c | |||
@@ -623,8 +623,10 @@ static int __nbd_ioctl(struct block_device *bdev, struct nbd_device *nbd, | |||
623 | if (!nbd->sock) | 623 | if (!nbd->sock) |
624 | return -EINVAL; | 624 | return -EINVAL; |
625 | 625 | ||
626 | nbd->disconnect = 1; | ||
627 | |||
626 | nbd_send_req(nbd, &sreq); | 628 | nbd_send_req(nbd, &sreq); |
627 | return 0; | 629 | return 0; |
628 | } | 630 | } |
629 | 631 | ||
630 | case NBD_CLEAR_SOCK: { | 632 | case NBD_CLEAR_SOCK: { |
@@ -654,6 +656,7 @@ static int __nbd_ioctl(struct block_device *bdev, struct nbd_device *nbd, | |||
654 | nbd->sock = SOCKET_I(inode); | 656 | nbd->sock = SOCKET_I(inode); |
655 | if (max_part > 0) | 657 | if (max_part > 0) |
656 | bdev->bd_invalidated = 1; | 658 | bdev->bd_invalidated = 1; |
659 | nbd->disconnect = 0; /* we're connected now */ | ||
657 | return 0; | 660 | return 0; |
658 | } else { | 661 | } else { |
659 | fput(file); | 662 | fput(file); |
@@ -743,6 +746,8 @@ static int __nbd_ioctl(struct block_device *bdev, struct nbd_device *nbd, | |||
743 | set_capacity(nbd->disk, 0); | 746 | set_capacity(nbd->disk, 0); |
744 | if (max_part > 0) | 747 | if (max_part > 0) |
745 | ioctl_by_bdev(bdev, BLKRRPART, 0); | 748 | ioctl_by_bdev(bdev, BLKRRPART, 0); |
749 | if (nbd->disconnect) /* user requested, ignore socket errors */ | ||
750 | return 0; | ||
746 | return nbd->harderror; | 751 | return nbd->harderror; |
747 | } | 752 | } |
748 | 753 | ||