Re: [Xen-devel] [PATCH v5 1/7] x86: move some xen mm function declarations

2020-01-07 Thread Wei Liu
On Tue, Jan 07, 2020 at 01:48:41PM +, Xia, Hongyan wrote: > On Tue, 2020-01-07 at 14:09 +0100, Jan Beulich wrote: > > ... > > > > Looks like I simply forgot every time I went through my list of > > pending (for the various stages of processing) patches. I guess > > patches 3 and 4 are also

Re: [Xen-devel] [PATCH v5 1/7] x86: move some xen mm function declarations

2020-01-07 Thread Xia, Hongyan
On Tue, 2020-01-07 at 14:09 +0100, Jan Beulich wrote: > ... > > Looks like I simply forgot every time I went through my list of > pending (for the various stages of processing) patches. I guess > patches 3 and 4 are also independent of patch 2 and hence could > go in as well. If so, looks like

Re: [Xen-devel] [PATCH v5 1/7] x86: move some xen mm function declarations

2020-01-07 Thread Wei Liu
On Tue, Jan 07, 2020 at 02:09:05PM +0100, Jan Beulich wrote: > On 07.01.2020 13:13, Wei Liu wrote: > > On Tue, Jan 07, 2020 at 12:06:43PM +, Hongyan Xia wrote: > >> From: Wei Liu > >> > >> They were put into page.h but mm.h is more appropriate. > >> > >> The real reason is that I will be

Re: [Xen-devel] [PATCH v5 1/7] x86: move some xen mm function declarations

2020-01-07 Thread Jan Beulich
On 07.01.2020 13:13, Wei Liu wrote: > On Tue, Jan 07, 2020 at 12:06:43PM +, Hongyan Xia wrote: >> From: Wei Liu >> >> They were put into page.h but mm.h is more appropriate. >> >> The real reason is that I will be adding some new functions which >> takes mfn_t. It turns out it is a bit

Re: [Xen-devel] [PATCH v5 1/7] x86: move some xen mm function declarations

2020-01-07 Thread Wei Liu
On Tue, Jan 07, 2020 at 12:06:43PM +, Hongyan Xia wrote: > From: Wei Liu > > They were put into page.h but mm.h is more appropriate. > > The real reason is that I will be adding some new functions which > takes mfn_t. It turns out it is a bit difficult to do in page.h. > > No functional

[Xen-devel] [PATCH v5 1/7] x86: move some xen mm function declarations

2020-01-07 Thread Hongyan Xia
From: Wei Liu They were put into page.h but mm.h is more appropriate. The real reason is that I will be adding some new functions which takes mfn_t. It turns out it is a bit difficult to do in page.h. No functional change. Signed-off-by: Wei Liu Acked-by: Jan Beulich --- Changed since v3: