提交 3876732c 编写于 作者: T Thomas Klein 提交者: David S. Miller

ehea: Fix memory hotplug handling

Added missing set_bit() to disable data transfer when a memchange
notification is handled
Signed-off-by: NThomas Klein <tklein@de.ibm.com>
Signed-off-by: NDavid S. Miller <davem@davemloft.net>
上级 37680117
...@@ -40,7 +40,7 @@ ...@@ -40,7 +40,7 @@
#include <asm/io.h> #include <asm/io.h>
#define DRV_NAME "ehea" #define DRV_NAME "ehea"
#define DRV_VERSION "EHEA_0098" #define DRV_VERSION "EHEA_0099"
/* eHEA capability flags */ /* eHEA capability flags */
#define DLPAR_PORT_ADD_REM 1 #define DLPAR_PORT_ADD_REM 1
......
...@@ -3517,12 +3517,14 @@ static int ehea_mem_notifier(struct notifier_block *nb, ...@@ -3517,12 +3517,14 @@ static int ehea_mem_notifier(struct notifier_block *nb,
/* Readd canceled memory block */ /* Readd canceled memory block */
case MEM_ONLINE: case MEM_ONLINE:
ehea_info("memory is going online"); ehea_info("memory is going online");
set_bit(__EHEA_STOP_XFER, &ehea_driver_flags);
if (ehea_add_sect_bmap(arg->start_pfn, arg->nr_pages)) if (ehea_add_sect_bmap(arg->start_pfn, arg->nr_pages))
return NOTIFY_BAD; return NOTIFY_BAD;
ehea_rereg_mrs(NULL); ehea_rereg_mrs(NULL);
break; break;
case MEM_GOING_OFFLINE: case MEM_GOING_OFFLINE:
ehea_info("memory is going offline"); ehea_info("memory is going offline");
set_bit(__EHEA_STOP_XFER, &ehea_driver_flags);
if (ehea_rem_sect_bmap(arg->start_pfn, arg->nr_pages)) if (ehea_rem_sect_bmap(arg->start_pfn, arg->nr_pages))
return NOTIFY_BAD; return NOTIFY_BAD;
ehea_rereg_mrs(NULL); ehea_rereg_mrs(NULL);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册