diff options
author | Christoph Hellwig <hch@lst.de> | 2025-05-05 11:11:26 +0300 |
---|---|---|
committer | Jens Axboe <axboe@kernel.dk> | 2025-05-05 22:22:39 +0300 |
commit | 194df9f66db8d6f74f03c78c2ad47b74a5a8b886 (patch) | |
tree | 7311a433f10862d5dbbef091eef3e1f2614e9136 /fs/proc | |
parent | eeadd68e2a5f6bfe0bf1038ec49e3a8d99eb5fe8 (diff) | |
download | linux-194df9f66db8d6f74f03c78c2ad47b74a5a8b886.tar.xz |
mm: remove NR_BOUNCE zone stat
The stat is always 0 now, so remove it and hardwire the user visible
output to 0.
Signed-off-by: Christoph Hellwig <hch@lst.de>
Reviewed-by: Hannes Reinecke <hare@suse.de>
Reviewed-by: Johannes Thumshirn <johannes.thumshirn@wdc.com>
Link: https://lore.kernel.org/r/20250505081138.3435992-8-hch@lst.de
Signed-off-by: Jens Axboe <axboe@kernel.dk>
Diffstat (limited to 'fs/proc')
-rw-r--r-- | fs/proc/meminfo.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/fs/proc/meminfo.c b/fs/proc/meminfo.c index 83be312159c9..bc2bc60c36cc 100644 --- a/fs/proc/meminfo.c +++ b/fs/proc/meminfo.c @@ -120,8 +120,7 @@ static int meminfo_proc_show(struct seq_file *m, void *v) global_node_page_state(NR_SECONDARY_PAGETABLE)); show_val_kb(m, "NFS_Unstable: ", 0); - show_val_kb(m, "Bounce: ", - global_zone_page_state(NR_BOUNCE)); + show_val_kb(m, "Bounce: ", 0); show_val_kb(m, "WritebackTmp: ", global_node_page_state(NR_WRITEBACK_TEMP)); show_val_kb(m, "CommitLimit: ", vm_commit_limit()); |