Re: [Xen-devel] [PATCH] p2m: split mem_access into separate files

2016-12-13 Thread George Dunlap
> On Dec 9, 2016, at 6:57 AM, Tamas K Lengyel > wrote: > > This patch relocates mem_access components that are currently mixed with p2m > code into separate files. This better aligns the code with similar subsystems, > such as mem_sharing and mem_paging, which are already in separate files. The

Re: [Xen-devel] [PATCH] p2m: split mem_access into separate files

2016-12-11 Thread Tamas K Lengyel
On Dec 12, 2016 00:08, "Jan Beulich" wrote: >>> On 09.12.16 at 19:38, wrote: > On Fri, Dec 9, 2016 at 2:27 AM, Jan Beulich wrote: > On 08.12.16 at 23:57, wrote: >>> --- a/xen/arch/x86/mm/Makefile >>> +++ b/xen/arch/x86/mm/Makefile >>> @@ -9,6 +9,7 @@ obj-y += guest_walk_3.o >>> obj-y += g

Re: [Xen-devel] [PATCH] p2m: split mem_access into separate files

2016-12-11 Thread Jan Beulich
>>> On 09.12.16 at 19:38, wrote: > On Fri, Dec 9, 2016 at 2:27 AM, Jan Beulich wrote: > On 08.12.16 at 23:57, wrote: >>> --- a/xen/arch/x86/mm/Makefile >>> +++ b/xen/arch/x86/mm/Makefile >>> @@ -9,6 +9,7 @@ obj-y += guest_walk_3.o >>> obj-y += guest_walk_4.o >>> obj-y += mem_paging.o >>>

Re: [Xen-devel] [PATCH] p2m: split mem_access into separate files

2016-12-09 Thread Tamas K Lengyel
On Fri, Dec 9, 2016 at 2:27 AM, Jan Beulich wrote: On 08.12.16 at 23:57, wrote: >> --- a/xen/arch/x86/mm/Makefile >> +++ b/xen/arch/x86/mm/Makefile >> @@ -9,6 +9,7 @@ obj-y += guest_walk_3.o >> obj-y += guest_walk_4.o >> obj-y += mem_paging.o >> obj-y += mem_sharing.o >> +obj-y += mem_acc

Re: [Xen-devel] [PATCH] p2m: split mem_access into separate files

2016-12-09 Thread Julien Grall
Hi Tamas, On 08/12/16 22:57, Tamas K Lengyel wrote: This patch relocates mem_access components that are currently mixed with p2m code into separate files. This better aligns the code with similar subsystems, such as mem_sharing and mem_paging, which are already in separate files. There are no co

Re: [Xen-devel] [PATCH] p2m: split mem_access into separate files

2016-12-09 Thread Jan Beulich
>>> On 08.12.16 at 23:57, wrote: > --- a/xen/arch/x86/mm/Makefile > +++ b/xen/arch/x86/mm/Makefile > @@ -9,6 +9,7 @@ obj-y += guest_walk_3.o > obj-y += guest_walk_4.o > obj-y += mem_paging.o > obj-y += mem_sharing.o > +obj-y += mem_access.o Please honor prior (mostly?) alphabetical ordering.

Re: [Xen-devel] [PATCH] p2m: split mem_access into separate files

2016-12-09 Thread Razvan Cojocaru
On 12/09/2016 12:57 AM, Tamas K Lengyel wrote: > This patch relocates mem_access components that are currently mixed with p2m > code into separate files. This better aligns the code with similar subsystems, > such as mem_sharing and mem_paging, which are already in separate files. There > are no co

[Xen-devel] [PATCH] p2m: split mem_access into separate files

2016-12-08 Thread Tamas K Lengyel
This patch relocates mem_access components that are currently mixed with p2m code into separate files. This better aligns the code with similar subsystems, such as mem_sharing and mem_paging, which are already in separate files. There are no code-changes introduced, the patch is mechanical code mov