]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
loop: fix error handling regression
authorArnd Bergmann <arnd@arndb.de>
Fri, 9 Jun 2017 10:19:18 +0000 (12:19 +0200)
committerJens Axboe <axboe@fb.com>
Fri, 9 Jun 2017 14:18:42 +0000 (08:18 -0600)
gcc points out an unusual indentation:

drivers/block/loop.c: In function 'loop_set_status':
drivers/block/loop.c:1149:3: error: this 'if' clause does not guard... [-Werror=misleading-indentation]
   if (figure_loop_size(lo, info->lo_offset, info->lo_sizelimit,
   ^~
drivers/block/loop.c:1152:4: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'if'
    goto exit;

This was introduced by a new feature that accidentally moved the opening
braces from one condition to another. Adding a second pair of braces
makes it work correctly again and also more readable.

Fixes: f2c6df7dbf9a ("loop: support 4k physical blocksize")
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Signed-off-by: Jens Axboe <axboe@fb.com>
drivers/block/loop.c

index 4d376c10a97a2beba0877346e3785a309238dec3..e288fb30100f5e99418f14d5941c96f7be6767ae 100644 (file)
@@ -1147,10 +1147,11 @@ loop_set_status(struct loop_device *lo, const struct loop_info64 *info)
            ((lo->lo_flags & LO_FLAGS_BLOCKSIZE) &&
             lo->lo_logical_blocksize != LO_INFO_BLOCKSIZE(info))) {
                if (figure_loop_size(lo, info->lo_offset, info->lo_sizelimit,
-                                    LO_INFO_BLOCKSIZE(info)))
+                                    LO_INFO_BLOCKSIZE(info))) {
                        err = -EFBIG;
                        goto exit;
                }
+       }
 
        loop_config_discard(lo);