On 06/12/2018 05:28 AM, Balbir Singh wrote: > > > On 11/06/18 17:41, vrbagal1 wrote: >> On 2018-06-08 17:45, Oscar Salvador wrote: >>> On Fri, Jun 08, 2018 at 05:11:24PM +0530, vrbagal1 wrote: >>>> On 2018-06-08 16:58, Oscar Salvador wrote: >>>>> On Fri, Jun 08, 2018 at 04:44:24PM +0530, vrbagal1 wrote: >>>>>> Greetings!!! >>>>>> >>>>>> I am seeing kernel bug followed by oops message and system reboots, >>>>>> while >>>>>> running dlpar memory hotplug test. >>>>>> >>>>>> Machine Details: Power6 PowerVM Platform >>>>>> GCC version: (gcc version 4.8.3 20140911 (Red Hat 4.8.3-7) (GCC)) >>>>>> Test case: dlpar memory hotplug test (https://github.com/avocado-framework-tests/avocado-misc-tests/blob/master/memory/memhotplug.py) >>>>>> Kernel Version: Linux version 4.17.0-autotest >>>>>> >>>>>> I am seeing this bug on rc7 as well. >> >> Observing similar traces on linux next kernel: 4.17.0-next-20180608-autotest >> >> Block size [0x4000000] unaligned hotplug range: start 0x220000000, size 0x1000000 > > size < block_size in this case, why? how? Could you confirm that the block size is 64MB and your trying to remove 16MB > I was not able to re-create this failure exactly ( I don't have a Power6 system) but was able to get a similar re-create on a Power 9 with a few modifications. I think the issue you're seeing is due to a change in the validation of memory done in remove_memory to ensure the amount of memory being removed spans entire memory block. The pseries memory remove code, see pseries_remove_memblock, tries to remove each section of a memory block instead of the entire memory block. Could you try the patch below that updates the pseries code to remove the entire memory block instead of doing it one section at a time. -Nathan --- arch/powerpc/platforms/pseries/hotplug-memory.c | 18 ++++++------------ 1 file changed, 6 insertions(+), 12 deletions(-) diff --git a/arch/powerpc/platforms/pseries/hotplug-memory.c b/arch/powerpc/platforms/pseries/hotplug-memory.c index c1578f54c626..6072efc793e1 100644 --- a/arch/powerpc/platforms/pseries/hotplug-memory.c +++ b/arch/powerpc/platforms/pseries/hotplug-memory.c @@ -316,11 +316,11 @@ static int dlpar_offline_lmb(struct drmem_lmb *lmb) return dlpar_change_lmb_state(lmb, false); } -static int pseries_remove_memblock(unsigned long base, unsigned int memblock_size) +static int pseries_remove_memblock(unsigned long base, + unsigned int memblock_sz) { - unsigned long block_sz, start_pfn; - int sections_per_block; - int i, nid; + unsigned long start_pfn; + int nid; start_pfn = base >> PAGE_SHIFT; @@ -329,18 +329,12 @@ static int pseries_remove_memblock(unsigned long base, unsigned int memblock_siz if (!pfn_valid(start_pfn)) goto out; - block_sz = pseries_memory_block_size(); - sections_per_block = block_sz / MIN_MEMORY_BLOCK_SIZE; nid = memory_add_physaddr_to_nid(base); - - for (i = 0; i < sections_per_block; i++) { - remove_memory(nid, base, MIN_MEMORY_BLOCK_SIZE); - base += MIN_MEMORY_BLOCK_SIZE; - } + remove_memory(nid, base, memblock_sz); out: /* Update memory regions for memory remove */ - memblock_remove(base, memblock_size); + memblock_remove(base, memblock_sz); unlock_device_hotplug(); return 0; } -- To unsubscribe from this list: send the line "unsubscribe linux-next" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html