Re: [PATCH] tools/xenstore: set maximum number of grants needed

2020-09-30 Thread Wei Liu
On Wed, Sep 30, 2020 at 04:30:16PM +0100, Andrew Cooper wrote: > On 30/09/2020 16:28, Wei Liu wrote: > > On Wed, Sep 30, 2020 at 05:23:58PM +0200, Jürgen Groß wrote: > >> On 30.09.20 17:14, Wei Liu wrote: > >>> On Thu, Sep 24, 2020 at 04:36:48PM +0200, Juergen Gross wrote: > When running as a

Re: [PATCH] tools/xenstore: set maximum number of grants needed

2020-09-30 Thread Andrew Cooper
On 30/09/2020 16:28, Wei Liu wrote: > On Wed, Sep 30, 2020 at 05:23:58PM +0200, Jürgen Groß wrote: >> On 30.09.20 17:14, Wei Liu wrote: >>> On Thu, Sep 24, 2020 at 04:36:48PM +0200, Juergen Gross wrote: When running as a stubdom Xenstore should set the maximum number of grants needed via

Re: [PATCH] tools/xenstore: set maximum number of grants needed

2020-09-30 Thread Wei Liu
On Wed, Sep 30, 2020 at 05:23:58PM +0200, Jürgen Groß wrote: > On 30.09.20 17:14, Wei Liu wrote: > > On Thu, Sep 24, 2020 at 04:36:48PM +0200, Juergen Gross wrote: > > > When running as a stubdom Xenstore should set the maximum number of > > > grants needed via a call of xengnttab_set_max_grants(),

Re: [PATCH] tools/xenstore: set maximum number of grants needed

2020-09-30 Thread Jürgen Groß
On 30.09.20 17:14, Wei Liu wrote: On Thu, Sep 24, 2020 at 04:36:48PM +0200, Juergen Gross wrote: When running as a stubdom Xenstore should set the maximum number of grants needed via a call of xengnttab_set_max_grants(), as otherwise the number of domains which can be supported will be 128 only

Re: [PATCH] tools/xenstore: set maximum number of grants needed

2020-09-30 Thread Wei Liu
On Thu, Sep 24, 2020 at 04:36:48PM +0200, Juergen Gross wrote: > When running as a stubdom Xenstore should set the maximum number of > grants needed via a call of xengnttab_set_max_grants(), as otherwise > the number of domains which can be supported will be 128 only (the > default number of grants

[PATCH] tools/xenstore: set maximum number of grants needed

2020-09-24 Thread Juergen Gross
When running as a stubdom Xenstore should set the maximum number of grants needed via a call of xengnttab_set_max_grants(), as otherwise the number of domains which can be supported will be 128 only (the default number of grants supported by Mini-OS). Signed-off-by: Juergen Gross --- This is a ba