bcache: Correct return value for sysfs attach errors
authorTony Asleson <tasleson@redhat.com>
Wed, 6 Sep 2017 06:25:57 +0000 (14:25 +0800)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 27 Sep 2017 09:00:17 +0000 (11:00 +0200)
commita6c5e7a0cd0184d3cf4fe29b598931329b237569
tree1cfbed67f0bd9fd599d527409fb5eff610761ba7
parentd9c6a28a6a1cf0e0854c8175386898288f7f3ddf
bcache: Correct return value for sysfs attach errors

commit 77fa100f27475d08a569b9d51c17722130f089e7 upstream.

If you encounter any errors in bch_cached_dev_attach it will return
a negative error code.  The variable 'v' which stores the result is
unsigned, thus user space sees a very large value returned for bytes
written which can cause incorrect user space behavior.  Utilize 1
signed variable to use throughout the function to preserve error return
capability.

Signed-off-by: Tony Asleson <tasleson@redhat.com>
Acked-by: Coly Li <colyli@suse.de>
Signed-off-by: Jens Axboe <axboe@kernel.dk>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/md/bcache/sysfs.c