Commit 15746fca authored by Pavel Machek's avatar Pavel Machek Committed by Linus Torvalds

nbd: trivial cleanups

Trivial cleanups for nbd: only the return -EIO one really changes code,
and I've verified all the callers (plus 0 == success, 1 == error
convention is really ugly).
Signed-off-by: default avatarPavel Machek <pavel@suse.cz>
Acked-by: default avatarPaul Clements <paul.clements@steeleye.com>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent 1a2ad211
...@@ -4,7 +4,7 @@ ...@@ -4,7 +4,7 @@
* Note that you can not swap over this thing, yet. Seems to work but * Note that you can not swap over this thing, yet. Seems to work but
* deadlocks sometimes - you can not swap over TCP in general. * deadlocks sometimes - you can not swap over TCP in general.
* *
* Copyright 1997-2000 Pavel Machek <pavel@ucw.cz> * Copyright 1997-2000, 2008 Pavel Machek <pavel@suse.cz>
* Parts copyright 2001 Steven Whitehouse <steve@chygwyn.com> * Parts copyright 2001 Steven Whitehouse <steve@chygwyn.com>
* *
* This file is released under GPLv2 or later. * This file is released under GPLv2 or later.
...@@ -276,7 +276,7 @@ static int nbd_send_req(struct nbd_device *lo, struct request *req) ...@@ -276,7 +276,7 @@ static int nbd_send_req(struct nbd_device *lo, struct request *req)
return 0; return 0;
error_out: error_out:
return 1; return -EIO;
} }
static struct request *nbd_find_request(struct nbd_device *lo, static struct request *nbd_find_request(struct nbd_device *lo,
...@@ -467,9 +467,7 @@ static void nbd_handle_req(struct nbd_device *lo, struct request *req) ...@@ -467,9 +467,7 @@ static void nbd_handle_req(struct nbd_device *lo, struct request *req)
mutex_unlock(&lo->tx_lock); mutex_unlock(&lo->tx_lock);
printk(KERN_ERR "%s: Attempted send on closed socket\n", printk(KERN_ERR "%s: Attempted send on closed socket\n",
lo->disk->disk_name); lo->disk->disk_name);
req->errors++; goto error_out;
nbd_end_request(req);
return;
} }
lo->active_req = req; lo->active_req = req;
...@@ -531,7 +529,7 @@ static int nbd_thread(void *data) ...@@ -531,7 +529,7 @@ static int nbd_thread(void *data)
* { printk( "Warning: Ignoring result!\n"); nbd_end_request( req ); } * { printk( "Warning: Ignoring result!\n"); nbd_end_request( req ); }
*/ */
static void do_nbd_request(struct request_queue * q) static void do_nbd_request(struct request_queue *q)
{ {
struct request *req; struct request *req;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment