Add a new line after variable declaration at the start of the function just like we have in the block layer code. No functional change in this patch. Signed-off-by: Chaitanya Kulkarni <chaitanya.kulkarni@xxxxxxx> --- drivers/block/loop.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/drivers/block/loop.c b/drivers/block/loop.c index 3f8d9bdfc16e..9e59adfd11ff 100644 --- a/drivers/block/loop.c +++ b/drivers/block/loop.c @@ -457,6 +457,7 @@ static int lo_req_flush(struct loop_device *lo, struct request *rq) { struct file *file = lo->lo_backing_file; int ret = vfs_fsync(file, 0); + if (unlikely(ret && ret != -EINVAL)) ret = -EIO; @@ -1584,6 +1585,7 @@ static int loop_set_capacity(struct loop_device *lo) static int loop_set_dio(struct loop_device *lo, unsigned long arg) { int error = -ENXIO; + if (lo->lo_state != Lo_bound) goto out; -- 2.22.1