> > quicklist_total_size() is racy against cpu hotplug. That's OK for
OK.
I ran cpu hotplug/unplug coutinuous workload over 12H.
then, system crash doesn't happend.
So, I believe my patch is cpu unplug safe.
test method
--------------------------------------------------------------
1. open 7 terminal and following script run on each console.
CPU=cpuXXX; while true; do echo 0 > /sys/devices/system/cpu/$CPU/online; echo 1 > /sys/devi
ces/system/cpu/$CPU/online;done
2. open another console, following command run.
watch -n 1 cat /proc/meminfo
--