init: fix sysfs mount arguments

It is not good idea to pass empty 'source' argument to  mount(2) because
libmount complains about incorrect /proc/self/mountinfo structure. This
affects many applications such as findmnt, umount and etc.

Let's add fake source argument to sysfs mount command as we do with all other
filesystems.

Reviewed-by: Andre Przywara <andre.przywara@arm.com>
Signed-off-by: Dmitry Monakhov <dmtrmonakhov@yandex-team.ru>
Signed-off-by: Will Deacon <will.deacon@arm.com>
diff --git a/guest/init.c b/guest/init.c
index 46e3fa4..1f9cd04 100644
--- a/guest/init.c
+++ b/guest/init.c
@@ -33,7 +33,7 @@
 #ifndef CONFIG_GUEST_PRE_INIT
 	mount("hostfs", "/host", "9p", MS_RDONLY, "trans=virtio,version=9p2000.L");
 #endif
-	mount("", "/sys", "sysfs", 0, NULL);
+	mount("sysfs", "/sys", "sysfs", 0, NULL);
 	mount("proc", "/proc", "proc", 0, NULL);
 	mount("devtmpfs", "/dev", "devtmpfs", 0, NULL);
 	mkdir("/dev/pts", 0755);