Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

xen/blkfront: Adjust indentation in xlvbd_alloc_gendisk

Clang warns:

../drivers/block/xen-blkfront.c:1117:4: warning: misleading indentation;
statement is not part of the previous 'if' [-Wmisleading-indentation]
nr_parts = PARTS_PER_DISK;
^
../drivers/block/xen-blkfront.c:1115:3: note: previous statement is here
if (err)
^

This is because there is a space at the beginning of this line; remove
it so that the indentation is consistent according to the Linux kernel
coding style and clang no longer warns.

While we are here, the previous line has some trailing whitespace; clean
that up as well.

Fixes: c80a420995e7 ("xen-blkfront: handle Xen major numbers other than XENVBD")
Link: https://github.com/ClangBuiltLinux/linux/issues/791
Signed-off-by: Nathan Chancellor <natechancellor@gmail.com>
Reviewed-by: Juergen Gross <jgross@suse.com>
Acked-by: Roger Pau Monné <roger.pau@citrix.com>
Signed-off-by: Juergen Gross <jgross@suse.com>

authored by

Nathan Chancellor and committed by
Juergen Gross
589b7289 c673ec61

+2 -2
+2 -2
drivers/block/xen-blkfront.c
··· 1113 1113 if (!VDEV_IS_EXTENDED(info->vdevice)) { 1114 1114 err = xen_translate_vdev(info->vdevice, &minor, &offset); 1115 1115 if (err) 1116 - return err; 1117 - nr_parts = PARTS_PER_DISK; 1116 + return err; 1117 + nr_parts = PARTS_PER_DISK; 1118 1118 } else { 1119 1119 minor = BLKIF_MINOR_EXT(info->vdevice); 1120 1120 nr_parts = PARTS_PER_EXT_DISK;