diff options
author | Namhyung Kim <namhyung@gmail.com> | 2011-06-20 07:27:44 -0400 |
---|---|---|
committer | Jens Axboe <jaxboe@fusionio.com> | 2011-06-20 07:27:44 -0400 |
commit | 44194e3e88fcfe77a2a6e2333847d4f27816259a (patch) | |
tree | 66d3aa40d385570b0c269b28371f086fa6ca6244 /block/bsg.c | |
parent | 80ceb057135ad77f513277f3bcd04b885501877a (diff) |
bsg: remove unnecessary conditional expressions
Second condition in OR always implies first condition is false
thus bytes_read in the second is not needed. The same goes to
bytes_written.
Signed-off-by: Namhyung Kim <namhyung@gmail.com>
Acked-by: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
Signed-off-by: Jens Axboe <jaxboe@fusionio.com>
Diffstat (limited to 'block/bsg.c')
-rw-r--r-- | block/bsg.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/block/bsg.c b/block/bsg.c index c4f49e255751..b7e42ad55361 100644 --- a/block/bsg.c +++ b/block/bsg.c | |||
@@ -606,7 +606,7 @@ bsg_read(struct file *file, char __user *buf, size_t count, loff_t *ppos) | |||
606 | ret = __bsg_read(buf, count, bd, NULL, &bytes_read); | 606 | ret = __bsg_read(buf, count, bd, NULL, &bytes_read); |
607 | *ppos = bytes_read; | 607 | *ppos = bytes_read; |
608 | 608 | ||
609 | if (!bytes_read || (bytes_read && err_block_err(ret))) | 609 | if (!bytes_read || err_block_err(ret)) |
610 | bytes_read = ret; | 610 | bytes_read = ret; |
611 | 611 | ||
612 | return bytes_read; | 612 | return bytes_read; |
@@ -686,7 +686,7 @@ bsg_write(struct file *file, const char __user *buf, size_t count, loff_t *ppos) | |||
686 | /* | 686 | /* |
687 | * return bytes written on non-fatal errors | 687 | * return bytes written on non-fatal errors |
688 | */ | 688 | */ |
689 | if (!bytes_written || (bytes_written && err_block_err(ret))) | 689 | if (!bytes_written || err_block_err(ret)) |
690 | bytes_written = ret; | 690 | bytes_written = ret; |
691 | 691 | ||
692 | dprintk("%s: returning %Zd\n", bd->name, bytes_written); | 692 | dprintk("%s: returning %Zd\n", bd->name, bytes_written); |