Re: [PATCH v2 03/15] x86/boot: add cmdline to struct boot_domain

2025-01-30 Thread Jan Beulich
On 26.12.2024 17:57, Daniel P. Smith wrote: > @@ -759,9 +758,10 @@ static int __init pvh_load_kernel( > /* Free temporary buffers. */ > free_boot_modules(); > > -if ( cmdline != NULL ) > +if ( bd->cmdline != NULL ) > { > -rc = hvm_copy_to_guest_phys(last_addr, cmdli

Re: [PATCH v2 03/15] x86/boot: add cmdline to struct boot_domain

2025-01-15 Thread Jason Andryuk
On 2025-01-15 12:22, Daniel P. Smith wrote: On 1/10/25 14:52, Jason Andryuk wrote: On 2024-12-26 11:57, Daniel P. Smith wrote: Add a container for the "cooked" command line for a domain. This provides for the backing memory to be directly associated with the domain being constructed. This is d

Re: [PATCH v2 03/15] x86/boot: add cmdline to struct boot_domain

2025-01-15 Thread Daniel P. Smith
On 1/10/25 14:52, Jason Andryuk wrote: On 2024-12-26 11:57, Daniel P. Smith wrote: Add a container for the "cooked" command line for a domain. This provides for the backing memory to be directly associated with the domain being constructed. This is done in anticipation that the domain construct

Re: [PATCH v2 03/15] x86/boot: add cmdline to struct boot_domain

2025-01-10 Thread Jason Andryuk
On 2024-12-26 11:57, Daniel P. Smith wrote: Add a container for the "cooked" command line for a domain. This provides for the backing memory to be directly associated with the domain being constructed. This is done in anticipation that the domain construction path may need to be invoked multiple

[PATCH v2 03/15] x86/boot: add cmdline to struct boot_domain

2024-12-26 Thread Daniel P. Smith
Add a container for the "cooked" command line for a domain. This provides for the backing memory to be directly associated with the domain being constructed. This is done in anticipation that the domain construction path may need to be invoked multiple times, thus ensuring each instance had a disti