Page MenuHomeFreeBSD

PVH: support whitespace cmdline splitting
ClosedPublic

Authored by cperciva on Aug 13 2022, 12:56 AM.
Tags
None
Referenced Files
Unknown Object (File)
Thu, Mar 28, 3:48 PM
Unknown Object (File)
Dec 23 2023, 1:26 AM
Unknown Object (File)
Dec 11 2023, 12:50 AM
Unknown Object (File)
Dec 7 2023, 4:26 PM
Unknown Object (File)
Nov 22 2023, 12:24 PM
Unknown Object (File)
Nov 22 2023, 12:24 PM
Unknown Object (File)
Nov 22 2023, 12:24 PM
Unknown Object (File)
Nov 22 2023, 10:50 AM
Subscribers

Details

Summary

For historical reasons, Xen kernel command lines have options
separated by commas. Every other FreeBSD platform uses whitespace;
this is also necessary in PVH in order to support the Firecracker
VMM. Allow options to be separated by any combination of commas
and whitespace.

Diff Detail

Repository
rG FreeBSD src repository
Lint
Lint Not Applicable
Unit
Tests Not Applicable

Event Timeline

Though some things are like "gee=woo foo=bar,baz,bing" will now be misparsed.

This revision is now accepted and ready to land.Aug 13 2022, 3:10 PM
In D36190#821461, @imp wrote:

Though some things are like "gee=woo foo=bar,baz,bing" will now be misparsed.

Yeah, that's an unavoidable consequence of wanting to support Xen's historical use of commas as argument separators. Maybe at some point we should switch to only using commas here if we're booting under Xen, but accepting both commas and whitespace is good enough for now, I think.

This revision was automatically updated to reflect the committed changes.