fb13db080f
- Automatically online CPUs/Memory on CPU/Memory hotplug add events (bnc#703100, fate#311831). add: 1008-physical-hotplug-cpu-and-memory.patch 0002-journal-remember-last-direction-of-search-and-keep-o.patch fix possible infinite loops in the journal code, related to bnc #817778 - Automatically online CPUs/Memory on CPU/Memory hotplug add events (bnc#703100, fate#311831). add: 1008-physical-hotplug-cpu-and-memory.patch 0002-journal-remember-last-direction-of-search-and-keep-o.patch fix possible infinite loops in the journal code, related to bnc #817778 (forwarded request 180433 from rmilasan) OBS-URL: https://build.opensuse.org/request/show/180434 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/systemd?expand=0&rev=146
30 lines
1007 B
Diff
30 lines
1007 B
Diff
Index: systemd-204/Makefile.am
|
|
===================================================================
|
|
--- systemd-204.orig/Makefile.am
|
|
+++ systemd-204/Makefile.am
|
|
@@ -2242,6 +2242,10 @@ dist_udevrules_DATA += \
|
|
rules/61-msft.rules
|
|
|
|
# ------------------------------------------------------------------------------
|
|
+dist_udevrules_DATA += \
|
|
+ rules/80-hotplug-cpu-mem.rules
|
|
+
|
|
+# ------------------------------------------------------------------------------
|
|
if ENABLE_GUDEV
|
|
if ENABLE_GTK_DOC
|
|
SUBDIRS += \
|
|
Index: systemd-204/rules/80-hotplug-cpu-mem.rules
|
|
===================================================================
|
|
--- /dev/null
|
|
+++ systemd-204/rules/80-hotplug-cpu-mem.rules
|
|
@@ -0,0 +1,9 @@
|
|
+# do not edit this file, it will be overwritten on update
|
|
+
|
|
+# Hotplug physical CPU
|
|
+SUBSYSTEM=="cpu", ACTION=="add", TEST=="online", ATTR{online}=="0", \
|
|
+ ATTR{online}="1"
|
|
+
|
|
+# Hotplug physical memory
|
|
+SUBSYSTEM=="memory", ACTION=="add", TEST=="state", ATTR{state}=="offline", \
|
|
+ ATTR{state}="online"
|