[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [PATCH 01/22] xen/common: page_alloc: Re-order includes
From: Julien Grall <jgrall@xxxxxxxxxx> Order the includes with the xen headers first, then asm headers and last public headers. Within each category, they are sorted alphabetically. Note that the includes in protected by CONFIG_X86 hasn't been sorted to avoid adding multiple #ifdef. Signed-off-by: Julien Grall <jgrall@xxxxxxxxxx> ---- I am open to add sort the includes protected by CONFIG_X86 and add multiple #ifdef if this is preferred. --- xen/common/page_alloc.c | 29 ++++++++++++++++------------- 1 file changed, 16 insertions(+), 13 deletions(-) diff --git a/xen/common/page_alloc.c b/xen/common/page_alloc.c index 0c93a1078702..0a950288e241 100644 --- a/xen/common/page_alloc.c +++ b/xen/common/page_alloc.c @@ -120,27 +120,30 @@ * regions within it. */ +#include <xen/domain_page.h> +#include <xen/event.h> #include <xen/init.h> -#include <xen/types.h> +#include <xen/irq.h> +#include <xen/keyhandler.h> #include <xen/lib.h> -#include <xen/sched.h> -#include <xen/spinlock.h> #include <xen/mm.h> +#include <xen/nodemask.h> +#include <xen/numa.h> #include <xen/param.h> -#include <xen/irq.h> -#include <xen/softirq.h> -#include <xen/domain_page.h> -#include <xen/keyhandler.h> #include <xen/perfc.h> #include <xen/pfn.h> -#include <xen/numa.h> -#include <xen/nodemask.h> -#include <xen/event.h> +#include <xen/types.h> +#include <xen/sched.h> +#include <xen/softirq.h> +#include <xen/spinlock.h> + +#include <asm/flushtlb.h> +#include <asm/numa.h> +#include <asm/page.h> + #include <public/sysctl.h> #include <public/sched.h> -#include <asm/page.h> -#include <asm/numa.h> -#include <asm/flushtlb.h> + #ifdef CONFIG_X86 #include <asm/guest.h> #include <asm/p2m.h> -- 2.38.1
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |