瀏覽代碼

s390/kdump: Return NOTIFY_OK for all actions other than MEM_GOING_OFFLINE

We only have to check kdump memory for the MEM_GOING_OFFLINE action.
Therefore skip the test and return NOTIFY_OK for all other memory
hotplug actions.

Signed-off-by: Michael Holzheu <holzheu@linux.vnet.ibm.com>
Signed-off-by: Martin Schwidefsky <schwidefsky@de.ibm.com>
Michael Holzheu 11 年之前
父節點
當前提交
bd858e84d4
共有 1 個文件被更改,包括 2 次插入0 次删除
  1. 2 0
      arch/s390/kernel/setup.c

+ 2 - 0
arch/s390/kernel/setup.c

@@ -501,6 +501,8 @@ static int kdump_mem_notifier(struct notifier_block *nb,
 {
 	struct memory_notify *arg = data;
 
+	if (action != MEM_GOING_OFFLINE)
+		return NOTIFY_OK;
 	if (arg->start_pfn < PFN_DOWN(resource_size(&crashk_res)))
 		return NOTIFY_BAD;
 	if (arg->start_pfn > PFN_DOWN(crashk_res.end))