* [PATCH] drivers: block: correct brackets
@ 2017-06-09 12:07 Seraphime Kirkovski
0 siblings, 0 replies; only message in thread
From: Seraphime Kirkovski @ 2017-06-09 12:07 UTC (permalink / raw)
To: linux-kernel
Cc: sfr, Seraphime Kirkovski, Jens Axboe, Ming Lei, Hannes Reinecke,
Andrew Morton, Omar Sandoval
GCC complained on linux-next about
drivers/block/loop.c:1149:3: warning: this ‘if’ clause does not guard...
[-Wmisleading-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 is guarded by the ‘if’
goto exit;
This adjustes the brackets to the inner if.
Fixes: f2c6df7dbf9a ("loop: support 4k physical blocksize")
Signed-off-by: Seraphime Kirkovski <kirkseraph@gmail.com>
---
The patch was made against linux-next.
drivers/block/loop.c | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/drivers/block/loop.c b/drivers/block/loop.c
index 4d376c10a97a..e288fb30100f 100644
--- a/drivers/block/loop.c
+++ b/drivers/block/loop.c
@@ -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);
--
2.11.0
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2017-06-09 12:07 UTC | newest]
Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-06-09 12:07 [PATCH] drivers: block: correct brackets Seraphime Kirkovski
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®