On Tue, Nov 14, 2023 at 07:39:40PM +0100, David Hildenbrand wrote: > On 14.11.23 19:02, Sumanth Korikkar wrote: > > Implement MEM_PHYS_ONLINE and MEM_PHYS_OFFLINE memory notifiers on s390 > > ... > > arch/s390/mm/init.c | 16 +++++++++++++++- > > drivers/s390/char/sclp_cmd.c | 33 ++++++++++++++++++++++++++++++--- > > 2 files changed, 45 insertions(+), 4 deletions(-) > > > > diff --git a/arch/s390/mm/init.c b/arch/s390/mm/init.c > > index 8d9a60ccb777..db505ed590b2 100644 > > --- a/arch/s390/mm/init.c > > +++ b/arch/s390/mm/init.c > > @@ -288,6 +288,12 @@ int arch_add_memory(int nid, u64 start, u64 size, > > rc = vmem_add_mapping(start, size); > > if (rc) > > return rc; > > + /* > > + * If MHP_MEMMAP_ON_MEMORY is enabled, perform __add_pages() during memory > > + * onlining phase > > + */ > > + if (params->altmap) > > + return 0; > > > So we'd have added memory blocks without a memmap? Sorry, but this seems to > further hack into the s390x direction. This new approach has the advantage that we do not need to allocate any additional memory during online phase, neither for direct mapping page tables nor struct pages, so that memory hotplug can never fail. The old approach (without altmap) is already a hack, because we add the memmap / struct pages, but for memory that is not really accessible. And with all the disadvantage of pre-allocating struct pages from system memory. The new approach allows to better integrate s390 to the existing interface, and also make use of altmap support, which would eliminate the major disadvantage of the old behaviour. So from s390 perspective, this new mechanism would be preferred, provided that there is no functional issue with the "added memory blocks without a memmap" approach. Do you see any functional issues, e.g. conflict with common code? > > Maybe s390x should just provide a dedicate interface to add these memory > blocks instead of adding them during boot and then relying on the old way of > using online/offline set them online/offline. Existing behavior: The current 'lsmem -a' command displays both online and standby memory. interface changes: If a new interface is introduced and standby memory is no longer listed, the following consequences might occur: 1. Running 'lsmem -a' would only show online memory, potentially leading to user complaints. 2. standby memory addition would need: * echo "standby memory addr" > /sys/devices/system/memory/probe As far as I understand, this interface is already deprecated. 3. To remove standby memory, a new interface probe_remove is needed * echo "standby memory addr" > /sys/devices/system/memory/probe_remove 4. Users may express a need to identify standby memory addresses, resulting in the creation of another interface to list these standby memory ranges. Hence, introducing new physical memory notifiers to platforms lacking dynamic ACPI events would be highly advantageous while maintaining existing user-friendly interface. Thanks