bcache: Correct return value for sysfs attach errors
authorTony Asleson <tasleson@redhat.com>
Wed, 6 Sep 2017 06:25:57 +0000 (14:25 +0800)
committerJens Axboe <axboe@kernel.dk>
Wed, 6 Sep 2017 14:17:33 +0000 (08:17 -0600)
commit77fa100f27475d08a569b9d51c17722130f089e7
treef4407063000718a982fe1f5438c4cb91e776cb9f
parenta8394090a9129b40f9d90dcb7f4a49d60c727ca6
bcache: Correct return value for sysfs attach errors

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>
Cc: stable@vger.kernel.org
Signed-off-by: Jens Axboe <axboe@kernel.dk>
drivers/md/bcache/sysfs.c