aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLinus Torvalds <[email protected]>2017-05-06 10:27:13 -0700
committerLinus Torvalds <[email protected]>2017-05-06 10:27:13 -0700
commit394e4f5d5834b610ee032cceb20a1b1f45b01d28 (patch)
treefcd316bf688c9b47d7c5e02a03630494c32982e9
parent3ef2bc099d1cce09e2844467e2ced98e1a44609d (diff)
initramfs: avoid "label at end of compound statement" error
Commit 17a9be317475 ("initramfs: Always do fput() and load modules after rootfs populate") introduced an error for the CONFIG_BLK_DEV_RAM=y case, because even though the code looks fine, the compiler really wants a statement after a label, or you'll get complaints: init/initramfs.c: In function 'populate_rootfs': init/initramfs.c:644:2: error: label at end of compound statement That commit moved the subsequent statements to outside the compound statement, leaving the label without any associated statements. Reported-by: Jörg Otte <[email protected]> Fixes: 17a9be317475 ("initramfs: Always do fput() and load modules after rootfs populate") Cc: Al Viro <[email protected]> Cc: Stafford Horne <[email protected]> Cc: [email protected] # if 17a9be317475 gets backported Signed-off-by: Linus Torvalds <[email protected]>
-rw-r--r--init/initramfs.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/init/initramfs.c b/init/initramfs.c
index 3a6871597351..8daf7ac6c7e2 100644
--- a/init/initramfs.c
+++ b/init/initramfs.c
@@ -642,6 +642,7 @@ static int __init populate_rootfs(void)
free_initrd();
}
done:
+ /* empty statement */;
#else
printk(KERN_INFO "Unpacking initramfs...\n");
err = unpack_to_rootfs((char *)initrd_start,