diff options
Diffstat (limited to 'drivers/block/nbd.c')
-rw-r--r-- | drivers/block/nbd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/block/nbd.c b/drivers/block/nbd.c index a3da198ca429..bdba282f15e4 100644 --- a/drivers/block/nbd.c +++ b/drivers/block/nbd.c | |||
@@ -339,7 +339,7 @@ static struct request *nbd_read_stat(struct nbd_device *lo) | |||
339 | } | 339 | } |
340 | 340 | ||
341 | req = nbd_find_request(lo, *(struct request **)reply.handle); | 341 | req = nbd_find_request(lo, *(struct request **)reply.handle); |
342 | if (unlikely(IS_ERR(req))) { | 342 | if (IS_ERR(req)) { |
343 | result = PTR_ERR(req); | 343 | result = PTR_ERR(req); |
344 | if (result != -ENOENT) | 344 | if (result != -ENOENT) |
345 | goto harderror; | 345 | goto harderror; |