Skip to content
Snippets Groups Projects
Commit 9f36ea85 authored by Ma Wupeng's avatar Ma Wupeng Committed by Yongqiang Liu
Browse files

mm: Show correct reliable pagecache size

hulk inclusion
category: bugfix
bugzilla: https://gitee.com/openeuler/kernel/issues/I4SK3S


CVE: NA

--------------------------------

Show corrent reliable pagecache size if /proc/meminfo if
memory reliable and pagecache use reliable memory is enabled.

Fixes: 9f07eb30 ("mm: Add space after ReliableFileCache")
Signed-off-by: default avatarMa Wupeng <mawupeng1@huawei.com>
Reviewed-by: default avatarKefeng Wang <wangkefeng.wang@huawei.com>
Signed-off-by: default avatarYongqiang Liu <liuyongqiang13@huawei.com>
parent c46a8e33
No related branches found
No related tags found
No related merge requests found
......@@ -231,7 +231,7 @@ void reliable_report_meminfo(struct seq_file *m)
num += global_node_page_state(NR_LRU_BASE + LRU_INACTIVE_FILE);
show_val_kb(m, "FileCache: ", num);
seq_printf(m, "ReliableFileCache: %8llu kB\n",
nr_pagecache_pages);
nr_pagecache_pages << (PAGE_SHIFT - 10));
}
}
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment