Re: [PATCH v3 1/3] mm: replace memmap_context by meminit_context

2020-09-17 Thread Laurent Dufour
Le 17/09/2020 à 01:37, Andrew Morton a écrit : On Wed, 16 Sep 2020 18:09:55 +0200 Laurent Dufour wrote: It's up to the maintainer what they want, but as it is, this patch is not going to end up in stable kernel release (which it looks like is the right thing to do...) Thanks a lot Greg.

Re: [PATCH v3 1/3] mm: replace memmap_context by meminit_context

2020-09-16 Thread Andrew Morton
On Wed, 16 Sep 2020 18:09:55 +0200 Laurent Dufour wrote: > >>> It's up to the maintainer what they want, but as it is, this patch is > >>> not going to end up in stable kernel release (which it looks like is the > >>> right thing to do...) > >> > >> Thanks a lot Greg. > >> > >> I'll send that

Re: [PATCH v3 1/3] mm: replace memmap_context by meminit_context

2020-09-16 Thread Laurent Dufour
Le 16/09/2020 à 09:52, David Hildenbrand a écrit : On 16.09.20 09:47, Laurent Dufour wrote: Le 16/09/2020 à 09:40, Greg Kroah-Hartman a écrit : On Wed, Sep 16, 2020 at 09:29:22AM +0200, Laurent Dufour wrote: Le 16/09/2020 à 08:33, Greg Kroah-Hartman a écrit : On Tue, Sep 15, 2020 at

Re: [PATCH v3 1/3] mm: replace memmap_context by meminit_context

2020-09-16 Thread David Hildenbrand
On 16.09.20 09:47, Laurent Dufour wrote: > Le 16/09/2020 à 09:40, Greg Kroah-Hartman a écrit : >> On Wed, Sep 16, 2020 at 09:29:22AM +0200, Laurent Dufour wrote: >>> Le 16/09/2020 à 08:33, Greg Kroah-Hartman a écrit : On Tue, Sep 15, 2020 at 03:26:24PM +0200, Laurent Dufour wrote: > The

Re: [PATCH v3 1/3] mm: replace memmap_context by meminit_context

2020-09-16 Thread Laurent Dufour
Le 16/09/2020 à 09:40, Greg Kroah-Hartman a écrit : On Wed, Sep 16, 2020 at 09:29:22AM +0200, Laurent Dufour wrote: Le 16/09/2020 à 08:33, Greg Kroah-Hartman a écrit : On Tue, Sep 15, 2020 at 03:26:24PM +0200, Laurent Dufour wrote: The memmap_context enum is used to detect whether a memory

Re: [PATCH v3 1/3] mm: replace memmap_context by meminit_context

2020-09-16 Thread Greg Kroah-Hartman
On Wed, Sep 16, 2020 at 09:29:22AM +0200, Laurent Dufour wrote: > Le 16/09/2020 à 08:33, Greg Kroah-Hartman a écrit : > > On Tue, Sep 15, 2020 at 03:26:24PM +0200, Laurent Dufour wrote: > > > The memmap_context enum is used to detect whether a memory operation is > > > due > > > to a hot-add

Re: [PATCH v3 1/3] mm: replace memmap_context by meminit_context

2020-09-16 Thread Laurent Dufour
Le 16/09/2020 à 08:33, Greg Kroah-Hartman a écrit : On Tue, Sep 15, 2020 at 03:26:24PM +0200, Laurent Dufour wrote: The memmap_context enum is used to detect whether a memory operation is due to a hot-add operation or happening at boot time. Make it general to the hotplug operation and rename

Re: [PATCH v3 1/3] mm: replace memmap_context by meminit_context

2020-09-16 Thread Greg Kroah-Hartman
On Tue, Sep 15, 2020 at 03:26:24PM +0200, Laurent Dufour wrote: > The memmap_context enum is used to detect whether a memory operation is due > to a hot-add operation or happening at boot time. > > Make it general to the hotplug operation and rename it as meminit_context. > > There is no

Re: [PATCH v3 1/3] mm: replace memmap_context by meminit_context

2020-09-15 Thread Michal Hocko
On Tue 15-09-20 15:26:24, Laurent Dufour wrote: > The memmap_context enum is used to detect whether a memory operation is due > to a hot-add operation or happening at boot time. > > Make it general to the hotplug operation and rename it as meminit_context. > > There is no functional change