Message ID | 1547183577-20309-3-git-send-email-kernelfans@gmail.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Series | x86_64/mm: remove bottom-up allocation style by pushing forward the parsing of mem hotplug info | expand |
On Fri, Jan 11, 2019 at 01:12:52PM +0800, Pingfan Liu wrote: >The current acpi_table_upgrade() relies on initrd_start, but this var is >only valid after relocate_initrd(). There is requirement to extract the >acpi info from initrd before memblock-allocator can work(see [2/4]), hence >acpi_table_upgrade() need to accept the input param directly. > >Signed-off-by: Pingfan Liu <kernelfans@gmail.com> >Acked-by: "Rafael J. Wysocki" <rjw@rjwysocki.net> >Cc: Thomas Gleixner <tglx@linutronix.de> >Cc: Ingo Molnar <mingo@redhat.com> >Cc: Borislav Petkov <bp@alien8.de> >Cc: "H. Peter Anvin" <hpa@zytor.com> >Cc: Dave Hansen <dave.hansen@linux.intel.com> >Cc: Andy Lutomirski <luto@kernel.org> >Cc: Peter Zijlstra <peterz@infradead.org> >Cc: "Rafael J. Wysocki" <rjw@rjwysocki.net> >Cc: Len Brown <lenb@kernel.org> >Cc: Yinghai Lu <yinghai@kernel.org> >Cc: Tejun Heo <tj@kernel.org> >Cc: Chao Fan <fanc.fnst@cn.fujitsu.com> >Cc: Baoquan He <bhe@redhat.com> >Cc: Juergen Gross <jgross@suse.com> >Cc: Andrew Morton <akpm@linux-foundation.org> >Cc: Mike Rapoport <rppt@linux.vnet.ibm.com> >Cc: Vlastimil Babka <vbabka@suse.cz> >Cc: Michal Hocko <mhocko@suse.com> >Cc: x86@kernel.org >Cc: linux-acpi@vger.kernel.org >Cc: linux-mm@kvack.org >--- > arch/arm64/kernel/setup.c | 2 +- > arch/x86/kernel/setup.c | 2 +- > drivers/acpi/tables.c | 4 +--- > include/linux/acpi.h | 4 ++-- > 4 files changed, 5 insertions(+), 7 deletions(-) > >diff --git a/arch/arm64/kernel/setup.c b/arch/arm64/kernel/setup.c >index f4fc1e0..bc4b47d 100644 >--- a/arch/arm64/kernel/setup.c >+++ b/arch/arm64/kernel/setup.c >@@ -315,7 +315,7 @@ void __init setup_arch(char **cmdline_p) > paging_init(); > efi_apply_persistent_mem_reservations(); > >- acpi_table_upgrade(); >+ acpi_table_upgrade((void *)initrd_start, initrd_end - initrd_start); > > /* Parse the ACPI tables for possible boot-time configuration */ > acpi_boot_table_init(); >diff --git a/arch/x86/kernel/setup.c b/arch/x86/kernel/setup.c >index ac432ae..dc8fc5d 100644 >--- a/arch/x86/kernel/setup.c >+++ b/arch/x86/kernel/setup.c >@@ -1172,8 +1172,8 @@ void __init setup_arch(char **cmdline_p) > > reserve_initrd(); > >- acpi_table_upgrade(); > I wonder whether this will cause two blank lines together. Thanks, Chao Fan >+ acpi_table_upgrade((void *)initrd_start, initrd_end - initrd_start); > vsmp_init(); > > io_delay_init(); >diff --git a/drivers/acpi/tables.c b/drivers/acpi/tables.c >index 61203ee..84e0a79 100644 >--- a/drivers/acpi/tables.c >+++ b/drivers/acpi/tables.c >@@ -471,10 +471,8 @@ static DECLARE_BITMAP(acpi_initrd_installed, NR_ACPI_INITRD_TABLES); > > #define MAP_CHUNK_SIZE (NR_FIX_BTMAPS << PAGE_SHIFT) > >-void __init acpi_table_upgrade(void) >+void __init acpi_table_upgrade(void *data, size_t size) > { >- void *data = (void *)initrd_start; >- size_t size = initrd_end - initrd_start; > int sig, no, table_nr = 0, total_offset = 0; > long offset = 0; > struct acpi_table_header *table; >diff --git a/include/linux/acpi.h b/include/linux/acpi.h >index ed80f14..0b6e0b6 100644 >--- a/include/linux/acpi.h >+++ b/include/linux/acpi.h >@@ -1254,9 +1254,9 @@ acpi_graph_get_remote_endpoint(const struct fwnode_handle *fwnode, > #endif > > #ifdef CONFIG_ACPI_TABLE_UPGRADE >-void acpi_table_upgrade(void); >+void acpi_table_upgrade(void *data, size_t size); > #else >-static inline void acpi_table_upgrade(void) { } >+static inline void acpi_table_upgrade(void *data, size_t size) { } > #endif > > #if defined(CONFIG_ACPI) && defined(CONFIG_ACPI_WATCHDOG) >-- >2.7.4 > > >
On Fri, Jan 11, 2019 at 1:31 PM Chao Fan <fanc.fnst@cn.fujitsu.com> wrote: > > On Fri, Jan 11, 2019 at 01:12:52PM +0800, Pingfan Liu wrote: > >The current acpi_table_upgrade() relies on initrd_start, but this var is > >only valid after relocate_initrd(). There is requirement to extract the > >acpi info from initrd before memblock-allocator can work(see [2/4]), hence > >acpi_table_upgrade() need to accept the input param directly. > > > >Signed-off-by: Pingfan Liu <kernelfans@gmail.com> > >Acked-by: "Rafael J. Wysocki" <rjw@rjwysocki.net> > >Cc: Thomas Gleixner <tglx@linutronix.de> > >Cc: Ingo Molnar <mingo@redhat.com> > >Cc: Borislav Petkov <bp@alien8.de> > >Cc: "H. Peter Anvin" <hpa@zytor.com> > >Cc: Dave Hansen <dave.hansen@linux.intel.com> > >Cc: Andy Lutomirski <luto@kernel.org> > >Cc: Peter Zijlstra <peterz@infradead.org> > >Cc: "Rafael J. Wysocki" <rjw@rjwysocki.net> > >Cc: Len Brown <lenb@kernel.org> > >Cc: Yinghai Lu <yinghai@kernel.org> > >Cc: Tejun Heo <tj@kernel.org> > >Cc: Chao Fan <fanc.fnst@cn.fujitsu.com> > >Cc: Baoquan He <bhe@redhat.com> > >Cc: Juergen Gross <jgross@suse.com> > >Cc: Andrew Morton <akpm@linux-foundation.org> > >Cc: Mike Rapoport <rppt@linux.vnet.ibm.com> > >Cc: Vlastimil Babka <vbabka@suse.cz> > >Cc: Michal Hocko <mhocko@suse.com> > >Cc: x86@kernel.org > >Cc: linux-acpi@vger.kernel.org > >Cc: linux-mm@kvack.org > >--- > > arch/arm64/kernel/setup.c | 2 +- > > arch/x86/kernel/setup.c | 2 +- > > drivers/acpi/tables.c | 4 +--- > > include/linux/acpi.h | 4 ++-- > > 4 files changed, 5 insertions(+), 7 deletions(-) > > > >diff --git a/arch/arm64/kernel/setup.c b/arch/arm64/kernel/setup.c > >index f4fc1e0..bc4b47d 100644 > >--- a/arch/arm64/kernel/setup.c > >+++ b/arch/arm64/kernel/setup.c > >@@ -315,7 +315,7 @@ void __init setup_arch(char **cmdline_p) > > paging_init(); > > efi_apply_persistent_mem_reservations(); > > > >- acpi_table_upgrade(); > >+ acpi_table_upgrade((void *)initrd_start, initrd_end - initrd_start); > > > > /* Parse the ACPI tables for possible boot-time configuration */ > > acpi_boot_table_init(); > >diff --git a/arch/x86/kernel/setup.c b/arch/x86/kernel/setup.c > >index ac432ae..dc8fc5d 100644 > >--- a/arch/x86/kernel/setup.c > >+++ b/arch/x86/kernel/setup.c > >@@ -1172,8 +1172,8 @@ void __init setup_arch(char **cmdline_p) > > > > reserve_initrd(); > > > >- acpi_table_upgrade(); > > > I wonder whether this will cause two blank lines together. > Yes, will fix it in next version. Thanks, Pingfan > Thanks, > Chao Fan > > >+ acpi_table_upgrade((void *)initrd_start, initrd_end - initrd_start); > > vsmp_init(); > > > > io_delay_init(); > >diff --git a/drivers/acpi/tables.c b/drivers/acpi/tables.c > >index 61203ee..84e0a79 100644 > >--- a/drivers/acpi/tables.c > >+++ b/drivers/acpi/tables.c > >@@ -471,10 +471,8 @@ static DECLARE_BITMAP(acpi_initrd_installed, NR_ACPI_INITRD_TABLES); > > > > #define MAP_CHUNK_SIZE (NR_FIX_BTMAPS << PAGE_SHIFT) > > > >-void __init acpi_table_upgrade(void) > >+void __init acpi_table_upgrade(void *data, size_t size) > > { > >- void *data = (void *)initrd_start; > >- size_t size = initrd_end - initrd_start; > > int sig, no, table_nr = 0, total_offset = 0; > > long offset = 0; > > struct acpi_table_header *table; > >diff --git a/include/linux/acpi.h b/include/linux/acpi.h > >index ed80f14..0b6e0b6 100644 > >--- a/include/linux/acpi.h > >+++ b/include/linux/acpi.h > >@@ -1254,9 +1254,9 @@ acpi_graph_get_remote_endpoint(const struct fwnode_handle *fwnode, > > #endif > > > > #ifdef CONFIG_ACPI_TABLE_UPGRADE > >-void acpi_table_upgrade(void); > >+void acpi_table_upgrade(void *data, size_t size); > > #else > >-static inline void acpi_table_upgrade(void) { } > >+static inline void acpi_table_upgrade(void *data, size_t size) { } > > #endif > > > > #if defined(CONFIG_ACPI) && defined(CONFIG_ACPI_WATCHDOG) > >-- > >2.7.4 > > > > > > > >
On 1/10/19 9:12 PM, Pingfan Liu wrote: > The current acpi_table_upgrade() relies on initrd_start, but this var is "var" meaning variable? Could you please go back and try to ensure you spell out all the words you are intending to write? I think "topo" probably means "topology", but it's a really odd word to use for changing the arguments of a function, so I'm not sure. There are a couple more of these in this set. > only valid after relocate_initrd(). There is requirement to extract the > acpi info from initrd before memblock-allocator can work(see [2/4]), hence > acpi_table_upgrade() need to accept the input param directly. "[2/4]" It looks like you quickly resent this set without updating the patch descriptions. > diff --git a/drivers/acpi/tables.c b/drivers/acpi/tables.c > index 61203ee..84e0a79 100644 > --- a/drivers/acpi/tables.c > +++ b/drivers/acpi/tables.c > @@ -471,10 +471,8 @@ static DECLARE_BITMAP(acpi_initrd_installed, NR_ACPI_INITRD_TABLES); > > #define MAP_CHUNK_SIZE (NR_FIX_BTMAPS << PAGE_SHIFT) > > -void __init acpi_table_upgrade(void) > +void __init acpi_table_upgrade(void *data, size_t size) > { > - void *data = (void *)initrd_start; > - size_t size = initrd_end - initrd_start; > int sig, no, table_nr = 0, total_offset = 0; > long offset = 0; > struct acpi_table_header *table; I know you are just replacing some existing variables, but we have a slightly higher standard for naming when you actually have to specify arguments to a function. Can you please give these proper names?
On Tue, Jan 15, 2019 at 7:12 AM Dave Hansen <dave.hansen@intel.com> wrote: > > On 1/10/19 9:12 PM, Pingfan Liu wrote: > > The current acpi_table_upgrade() relies on initrd_start, but this var is > > "var" meaning variable? > > Could you please go back and try to ensure you spell out all the words > you are intending to write? I think "topo" probably means "topology", > but it's a really odd word to use for changing the arguments of a > function, so I'm not sure. > > There are a couple more of these in this set. > Yes. I will do it and fix them in next version. > > only valid after relocate_initrd(). There is requirement to extract the > > acpi info from initrd before memblock-allocator can work(see [2/4]), hence > > acpi_table_upgrade() need to accept the input param directly. > > "[2/4]" > > It looks like you quickly resent this set without updating the patch > descriptions. > > > diff --git a/drivers/acpi/tables.c b/drivers/acpi/tables.c > > index 61203ee..84e0a79 100644 > > --- a/drivers/acpi/tables.c > > +++ b/drivers/acpi/tables.c > > @@ -471,10 +471,8 @@ static DECLARE_BITMAP(acpi_initrd_installed, NR_ACPI_INITRD_TABLES); > > > > #define MAP_CHUNK_SIZE (NR_FIX_BTMAPS << PAGE_SHIFT) > > > > -void __init acpi_table_upgrade(void) > > +void __init acpi_table_upgrade(void *data, size_t size) > > { > > - void *data = (void *)initrd_start; > > - size_t size = initrd_end - initrd_start; > > int sig, no, table_nr = 0, total_offset = 0; > > long offset = 0; > > struct acpi_table_header *table; > > I know you are just replacing some existing variables, but we have a > slightly higher standard for naming when you actually have to specify > arguments to a function. Can you please give these proper names? > OK, I will change it to acpi_table_upgrade(void *initrd, size_t size). Thanks, Pingfan
diff --git a/arch/arm64/kernel/setup.c b/arch/arm64/kernel/setup.c index f4fc1e0..bc4b47d 100644 --- a/arch/arm64/kernel/setup.c +++ b/arch/arm64/kernel/setup.c @@ -315,7 +315,7 @@ void __init setup_arch(char **cmdline_p) paging_init(); efi_apply_persistent_mem_reservations(); - acpi_table_upgrade(); + acpi_table_upgrade((void *)initrd_start, initrd_end - initrd_start); /* Parse the ACPI tables for possible boot-time configuration */ acpi_boot_table_init(); diff --git a/arch/x86/kernel/setup.c b/arch/x86/kernel/setup.c index ac432ae..dc8fc5d 100644 --- a/arch/x86/kernel/setup.c +++ b/arch/x86/kernel/setup.c @@ -1172,8 +1172,8 @@ void __init setup_arch(char **cmdline_p) reserve_initrd(); - acpi_table_upgrade(); + acpi_table_upgrade((void *)initrd_start, initrd_end - initrd_start); vsmp_init(); io_delay_init(); diff --git a/drivers/acpi/tables.c b/drivers/acpi/tables.c index 61203ee..84e0a79 100644 --- a/drivers/acpi/tables.c +++ b/drivers/acpi/tables.c @@ -471,10 +471,8 @@ static DECLARE_BITMAP(acpi_initrd_installed, NR_ACPI_INITRD_TABLES); #define MAP_CHUNK_SIZE (NR_FIX_BTMAPS << PAGE_SHIFT) -void __init acpi_table_upgrade(void) +void __init acpi_table_upgrade(void *data, size_t size) { - void *data = (void *)initrd_start; - size_t size = initrd_end - initrd_start; int sig, no, table_nr = 0, total_offset = 0; long offset = 0; struct acpi_table_header *table; diff --git a/include/linux/acpi.h b/include/linux/acpi.h index ed80f14..0b6e0b6 100644 --- a/include/linux/acpi.h +++ b/include/linux/acpi.h @@ -1254,9 +1254,9 @@ acpi_graph_get_remote_endpoint(const struct fwnode_handle *fwnode, #endif #ifdef CONFIG_ACPI_TABLE_UPGRADE -void acpi_table_upgrade(void); +void acpi_table_upgrade(void *data, size_t size); #else -static inline void acpi_table_upgrade(void) { } +static inline void acpi_table_upgrade(void *data, size_t size) { } #endif #if defined(CONFIG_ACPI) && defined(CONFIG_ACPI_WATCHDOG)