]> git.proxmox.com Git - mirror_zfs.git/commit
Fix free memory calculation on v3.14+
authorchrisrd <chris@onthe.net.au>
Fri, 23 Feb 2018 16:50:06 +0000 (03:50 +1100)
committerTony Hutter <hutter2@llnl.gov>
Wed, 14 Mar 2018 23:10:37 +0000 (16:10 -0700)
commit338523dd6ec641cc4d552c3f67e1becfb9e22b0a
treef68d1b01ee49068723a3bf424b7723d63b69b6b6
parent2644784f49a6b6be063d54ca0e1662ee6bef7ebd
Fix free memory calculation on v3.14+

Provide infrastructure to auto-configure to enum and API changes in the
global page stats used for our free memory calculations.

arc_free_memory has been broken since an API change in Linux v3.14:

2016-07-28 v4.8 599d0c95 mm, vmscan: move LRU lists to node
2016-07-28 v4.8 75ef7184 mm, vmstat: add infrastructure for per-node
  vmstats

These commits moved some of global_page_state() into
global_node_page_state(). The API change was particularly egregious as,
instead of breaking the old code, it silently did the wrong thing and we
continued using global_page_state() where we should have been using
global_node_page_state(), thus indexing into the wrong array via
NR_SLAB_RECLAIMABLE et al.

There have been further API changes along the way:

2017-07-06 v4.13 385386cf mm: vmstat: move slab statistics from zone to
  node counters
2017-09-06 v4.14 c41f012a mm: rename global_page_state to
  global_zone_page_state

...and various (incomplete, as it turns out) attempts to accomodate
these changes in ZoL:

2017-08-24 2209e409 Linux 4.8+ compatibility fix for vm stats
2017-09-16 787acae0 Linux 3.14 compat: IO acct, global_page_state, etc
2017-09-19 661907e6 Linux 4.14 compat: IO acct, global_page_state, etc

The config infrastructure provided here resolves these issues going back
to the original API change in v3.14 and is robust against further Linux
changes in this area.

Reviewed-by: Giuseppe Di Natale <dinatale2@llnl.gov>
Reviewed-by: Brian Behlendorf <behlendorf1@llnl.gov>
Reviewed-by: George Melikov <mail@gmelikov.ru>
Signed-off-by: Chris Dunlop <chris@onthe.net.au>
Closes #7170
config/kernel-global_page_state.m4 [new file with mode: 0644]
config/kernel-vm_node_stat.m4 [deleted file]
config/kernel.m4
include/linux/Makefile.am
include/linux/page_compat.h [new file with mode: 0644]
module/zfs/arc.c
scripts/Makefile.am
scripts/enum-extract.pl [new file with mode: 0755]