Comment 3 for bug 649591

Revision history for this message
Scott Moser (smoser) wrote : Re: mountall spins eating cpu when 'nobootwait' option exists in fstab

Also working around the problem is reodering options:
The following fs_mntops fields do not cause a problem:
- comment=cloudconfig,defaults,nobootwait
- defaults,nobootwait
Where the original does:
- defaults,nobootwait,comment=cloudconfig

I think this is an issue with '=' occuring after an option passed to cut_options. Ie, the call to cut_options looks like:
        opts = cut_options (NULL, mnt, "showthrough", "optional",
                            "bootwait", "nobootwait",
                            NULL);