FreeBSD 10.3/head on Azure may fail to boot for the failure of "mount root". The reason is vfs's mounting starts early than storage driver attaching (included in VMBUS). If it happened, the error looks like: VMBUS: Total online cpus 8, assign perf channel 2 to vcpu 7, cpu 7 VMBUS get multi-channel offer, rel=18,sub=1 VMBUS: new multi-channel offer <0xfffff80011719c00>, its primary channel is <0xfffff80011766c00>. VMBUS: channel <0xfffff80011719c00> open success. Trying to mount root from ufs:/dev/da0p2 [rw]... mountroot: waiting for device /dev/da0p2 ... Mounting from ufs:/dev/da0p2 failed with error 19. Loader variables: vfs.root.mountfrom=ufs:/dev/da0p2 vfs.root.mountfrom.options=rw Manual root filesystem specification: <fstype>:<device> [options] Mount <device> using filesystem <fstype> and with the specified (optional) option list. eg. ufs:/dev/da0s1a zfs:tank cd9660:/dev/acd0 ro (which is equivalent to: mount -t cd9660 -o ro /dev/acd0 /) ? List valid disk boot devices . Yield 1 second (for background tasks) <empty line> Abort manual input mountroot>
Created attachment 172546 [details] boot error log
Created attachment 182594 [details] fix mountroot hyper-v in 11-stable
I had the same problem in 11-stable. The issue is that storvsc root_mount_hold() happens after ZFS tried to mount root. Adding it to the bus fixed it (see patch). I found this a little more satisfying than the busy wait suggested in https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=208882
Well an update to Windows 10 workstation and simple patch fails now too. ZFS doesn't wait. I suspect I'm hitting cleanup for some Hyper-V service like kvpair or something. At any rate the patch I added no longer works for me (with no upgrade to my kernel) so at the very least it is not reliable.
(In reply to David Marker from comment #4) If you do not use ZFS, the mount failure should not occur on 11-stable if you set a relative long waiting time: "vfs.mountroot.timeout=30". On Azure, I used "vfs.mountroot.timeout=300" and this error never happen. If you want to use ZFS, the current workable solution is https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=208882.
^Triage: close as OBE. I'm sorry that this PR never got looked at, but by now, 11.X is long out of support.