You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
1.5 KiB
33 lines
1.5 KiB
6 years ago
|
From 7431c551954ad63fe61cda18888e1e89419bd631 Mon Sep 17 00:00:00 2001
|
||
|
From: Michal Sekletar <msekleta@redhat.com>
|
||
|
Date: Fri, 20 Jul 2018 09:48:04 +0200
|
||
|
Subject: [PATCH] rules: mark hotplugged memory as movable
|
||
|
|
||
|
Otherwise the kernel is free to use to memory block also for storing
|
||
|
non-movable memory (any other memory except anonymous memory allocations
|
||
|
and page cache). If user later wants to hot unplug the memory the kernel
|
||
|
will return error in case that some non-movable memory has been place to
|
||
|
the memory block.
|
||
|
|
||
|
Marking hot plugged memory blocks as movable seems to be better
|
||
|
default. Users with specific needs are free to override this udev rule.
|
||
|
|
||
|
Resolves: #1563532
|
||
|
---
|
||
|
rules/40-redhat.rules | 2 +-
|
||
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
||
|
|
||
|
diff --git a/rules/40-redhat.rules b/rules/40-redhat.rules
|
||
|
index 34a1df9c4..26f726001 100644
|
||
|
--- a/rules/40-redhat.rules
|
||
|
+++ b/rules/40-redhat.rules
|
||
|
@@ -4,7 +4,7 @@
|
||
|
SUBSYSTEM=="cpu", ACTION=="add", TEST=="online", ATTR{online}=="0", ATTR{online}="1"
|
||
|
|
||
|
# Memory hotadd request
|
||
|
-SUBSYSTEM=="memory", ACTION=="add", PROGRAM="/bin/uname -p", RESULT!="s390*", ATTR{state}=="offline", ATTR{state}="online"
|
||
|
+SUBSYSTEM=="memory", ACTION=="add", PROGRAM="/bin/uname -p", RESULT!="s390*", ATTR{state}=="offline", ATTR{state}="online_movable"
|
||
|
|
||
|
# reload sysctl.conf / sysctl.conf.d settings when the bridge module is loaded
|
||
|
ACTION=="add", SUBSYSTEM=="module", KERNEL=="bridge", RUN+="/usr/lib/systemd/systemd-sysctl --prefix=/proc/sys/net/bridge"
|