qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PATCH V3 1/2] Update ioctl order in nbd_init to detect -EBUSY
@ 2011-11-23 10:14 Chunyan Liu
  2011-11-23 10:14 ` [Qemu-devel] [PATCH V3 2/2] Add -f option to qemu-nbd Chunyan Liu
  0 siblings, 1 reply; 9+ messages in thread
From: Chunyan Liu @ 2011-11-23 10:14 UTC (permalink / raw)
  To: qemu-devel

Remove NBD_CLEAR_SOCK from nbd_init and adjust NBD_SET_SOCK ioctl before other
ioctl(s) in nbd_init so that it can detect -EBUSY properly.
 
Signed-off-by: Chunyan Liu <cyliu@suse.com>
---
 nbd.c |   27 +++++++++------------------
 1 files changed, 9 insertions(+), 18 deletions(-)

diff --git a/nbd.c b/nbd.c
index e6c931c..4184614 100644
--- a/nbd.c
+++ b/nbd.c
@@ -348,6 +348,15 @@ int nbd_receive_negotiate(int csock, const char *name, uint32_t *flags,
 #ifdef __linux__
 int nbd_init(int fd, int csock, uint32_t flags, off_t size, size_t blocksize)
 {
+    TRACE("Setting NBD socket");
+
+    if (ioctl(fd, NBD_SET_SOCK, csock) == -1) {
+        int serrno = errno;
+        LOG("Failed to set NBD socket");
+        errno = serrno;
+        return -1;
+    }
+
     TRACE("Setting block size to %lu", (unsigned long)blocksize);
 
     if (ioctl(fd, NBD_SET_BLKSIZE, blocksize) == -1) {
@@ -386,24 +395,6 @@ int nbd_init(int fd, int csock, uint32_t flags, off_t size, size_t blocksize)
         return -1;
     }
 
-    TRACE("Clearing NBD socket");
-
-    if (ioctl(fd, NBD_CLEAR_SOCK) == -1) {
-        int serrno = errno;
-        LOG("Failed clearing NBD socket");
-        errno = serrno;
-        return -1;
-    }
-
-    TRACE("Setting NBD socket");
-
-    if (ioctl(fd, NBD_SET_SOCK, csock) == -1) {
-        int serrno = errno;
-        LOG("Failed to set NBD socket");
-        errno = serrno;
-        return -1;
-    }
-
     TRACE("Negotiation ended");
 
     return 0;
-- 
1.7.3.4

^ permalink raw reply related	[flat|nested] 9+ messages in thread

end of thread, other threads:[~2011-12-02 15:31 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-11-23 10:14 [Qemu-devel] [PATCH V3 1/2] Update ioctl order in nbd_init to detect -EBUSY Chunyan Liu
2011-11-23 10:14 ` [Qemu-devel] [PATCH V3 2/2] Add -f option to qemu-nbd Chunyan Liu
2011-11-23 10:56   ` Stefan Hajnoczi
2011-11-23 10:58     ` Stefan Hajnoczi
2011-11-24  3:38     ` Chunyan Liu
2011-11-24  8:59       ` Stefan Hajnoczi
2011-11-25 10:19         ` Chunyan Liu
2011-11-29 10:52           ` Stefan Hajnoczi
2011-12-02 15:31             ` Chunyan Liu

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).