summaryrefslogtreecommitdiff
path: root/fs/proc/meminfo.c
diff options
context:
space:
mode:
authorAndré Fabian Silva Delgado <emulatorman@parabola.nu>2016-03-26 04:42:12 -0300
committerAndré Fabian Silva Delgado <emulatorman@parabola.nu>2016-03-26 05:27:59 -0300
commita156245300d5362a3b4c4afdace9e2b90169fe43 (patch)
tree392741d5ee3e05bc089c7af2db884b99899217d7 /fs/proc/meminfo.c
parent03dd4cb26d967f9588437b0fc9cc0e8353322bb7 (diff)
Remove UKSM support since the latest patch is very unstable and obsolete for the 4.5-gnu kernel version
Diffstat (limited to 'fs/proc/meminfo.c')
-rw-r--r--fs/proc/meminfo.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/fs/proc/meminfo.c b/fs/proc/meminfo.c
index 70b9f953b..df4661aba 100644
--- a/fs/proc/meminfo.c
+++ b/fs/proc/meminfo.c
@@ -118,9 +118,6 @@ static int meminfo_proc_show(struct seq_file *m, void *v)
"SUnreclaim: %8lu kB\n"
"KernelStack: %8lu kB\n"
"PageTables: %8lu kB\n"
-#ifdef CONFIG_UKSM
- "KsmZeroPages: %8lu kB\n"
-#endif
#ifdef CONFIG_QUICKLIST
"Quicklists: %8lu kB\n"
#endif
@@ -179,9 +176,6 @@ static int meminfo_proc_show(struct seq_file *m, void *v)
K(global_page_state(NR_SLAB_UNRECLAIMABLE)),
global_page_state(NR_KERNEL_STACK) * THREAD_SIZE / 1024,
K(global_page_state(NR_PAGETABLE)),
-#ifdef CONFIG_UKSM
- K(global_page_state(NR_UKSM_ZERO_PAGES)),
-#endif
#ifdef CONFIG_QUICKLIST
K(quicklist_total_size()),
#endif