Re: [PATCH] modify acquire_domstatic_pages to take an unsigned int size parameter

2021-09-17 Thread Bertrand Marquis
Hi Stefano, > On 16 Sep 2021, at 21:47, Stefano Stabellini wrote: > > acquire_domstatic_pages currently takes an unsigned long nr_mfns > parameter, but actually it cannot handle anything larger than an > unsigned int nr_mfns. That's because acquire_domstatic_pages is based on > assign_pages whic

Re: [PATCH] modify acquire_domstatic_pages to take an unsigned int size parameter

2021-09-16 Thread Jan Beulich
On 16.09.2021 22:47, Stefano Stabellini wrote: > acquire_domstatic_pages currently takes an unsigned long nr_mfns > parameter, but actually it cannot handle anything larger than an > unsigned int nr_mfns. That's because acquire_domstatic_pages is based on > assign_pages which also takes an unsigned

[PATCH] modify acquire_domstatic_pages to take an unsigned int size parameter

2021-09-16 Thread Stefano Stabellini
acquire_domstatic_pages currently takes an unsigned long nr_mfns parameter, but actually it cannot handle anything larger than an unsigned int nr_mfns. That's because acquire_domstatic_pages is based on assign_pages which also takes an unsigned int nr parameter. So modify the nr_mfns parameter of