Re: [Xen-devel] [PATCH v2 47/52] xen: add basic support for runtime parameter changing

2017-08-15 Thread Juergen Gross
On 15/08/17 17:31, Jan Beulich wrote: On 14.08.17 at 09:08, wrote: >> --- a/xen/arch/x86/xen.lds.S >> +++ b/xen/arch/x86/xen.lds.S >> @@ -226,6 +226,10 @@ SECTIONS >> __start_schedulers_array = .; >> *(.data.schedulers) >> __end_schedulers_array = .;

Re: [Xen-devel] [PATCH v2 47/52] xen: add basic support for runtime parameter changing

2017-08-15 Thread Jan Beulich
>>> On 14.08.17 at 09:08, wrote: > --- a/xen/arch/x86/xen.lds.S > +++ b/xen/arch/x86/xen.lds.S > @@ -226,6 +226,10 @@ SECTIONS > __start_schedulers_array = .; > *(.data.schedulers) > __end_schedulers_array = .; > + . = ALIGN(POINTER_ALIGN); > +

Re: [Xen-devel] [PATCH v2 47/52] xen: add basic support for runtime parameter changing

2017-08-15 Thread Wei Liu
On Mon, Aug 14, 2017 at 09:08:44AM +0200, Juergen Gross wrote: > Add the needed infrastructure for runtime parameter changing similar > to that used at boot time via cmdline. We are using the same parsing > functions as for cmdline parsing, but with a different array of > parameter definitions. >

[Xen-devel] [PATCH v2 47/52] xen: add basic support for runtime parameter changing

2017-08-14 Thread Juergen Gross
Add the needed infrastructure for runtime parameter changing similar to that used at boot time via cmdline. We are using the same parsing functions as for cmdline parsing, but with a different array of parameter definitions. Cc: Andrew Cooper Cc: George Dunlap