Re: [PATCH 2/5] mm/page_alloc.c: Pull out init code from build_all_zonelists

2015-02-03 Thread Rasmus Villemoes
On Tue, Feb 03 2015, David Rientjes wrote: > On Tue, 3 Feb 2015, Rasmus Villemoes wrote: > >> Pulling the code protected by if (system_state == SYSTEM_BOOTING) into >> its own helper allows us to shrink .text a little. This relies on >> build_all_zonelists already having a __ref annotation. Add

Re: [PATCH 2/5] mm/page_alloc.c: Pull out init code from build_all_zonelists

2015-02-03 Thread Rasmus Villemoes
On Tue, Feb 03 2015, David Rientjes rient...@google.com wrote: On Tue, 3 Feb 2015, Rasmus Villemoes wrote: Pulling the code protected by if (system_state == SYSTEM_BOOTING) into its own helper allows us to shrink .text a little. This relies on build_all_zonelists already having a __ref

Re: [PATCH 2/5] mm/page_alloc.c: Pull out init code from build_all_zonelists

2015-02-02 Thread David Rientjes
On Tue, 3 Feb 2015, Rasmus Villemoes wrote: > Pulling the code protected by if (system_state == SYSTEM_BOOTING) into > its own helper allows us to shrink .text a little. This relies on > build_all_zonelists already having a __ref annotation. Add a comment > explaining why so one doesn't have to

[PATCH 2/5] mm/page_alloc.c: Pull out init code from build_all_zonelists

2015-02-02 Thread Rasmus Villemoes
Pulling the code protected by if (system_state == SYSTEM_BOOTING) into its own helper allows us to shrink .text a little. This relies on build_all_zonelists already having a __ref annotation. Add a comment explaining why so one doesn't have to track it down through git log. Signed-off-by: Rasmus

[PATCH 2/5] mm/page_alloc.c: Pull out init code from build_all_zonelists

2015-02-02 Thread Rasmus Villemoes
Pulling the code protected by if (system_state == SYSTEM_BOOTING) into its own helper allows us to shrink .text a little. This relies on build_all_zonelists already having a __ref annotation. Add a comment explaining why so one doesn't have to track it down through git log. Signed-off-by: Rasmus

Re: [PATCH 2/5] mm/page_alloc.c: Pull out init code from build_all_zonelists

2015-02-02 Thread David Rientjes
On Tue, 3 Feb 2015, Rasmus Villemoes wrote: Pulling the code protected by if (system_state == SYSTEM_BOOTING) into its own helper allows us to shrink .text a little. This relies on build_all_zonelists already having a __ref annotation. Add a comment explaining why so one doesn't have to track