From: John Hawkes Date: Wed, 19 Apr 2006 17:06:20 +0000 (-0400) Subject: NFS: nfs_show_stats; for_each_possible_cpu(), not NR_CPUS X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=b9d9506d944865876e67281a4e4269d823ce5381;p=GitHub%2FLineageOS%2Fandroid_kernel_motorola_exynos9610.git NFS: nfs_show_stats; for_each_possible_cpu(), not NR_CPUS Convert a for-loop that explicitly references "NR_CPUS" into the potentially more efficient for_each_possible_cpu() construct. Signed-off-by: John Hawkes Signed-off-by: Andrew Morton Signed-off-by: Trond Myklebust --- diff --git a/fs/nfs/inode.c b/fs/nfs/inode.c index 2f7656b911b6..d0b991a92327 100644 --- a/fs/nfs/inode.c +++ b/fs/nfs/inode.c @@ -700,12 +700,9 @@ static int nfs_show_stats(struct seq_file *m, struct vfsmount *mnt) /* * Display superblock I/O counters */ - for (cpu = 0; cpu < NR_CPUS; cpu++) { + for_each_possible_cpu(cpu) { struct nfs_iostats *stats; - if (!cpu_possible(cpu)) - continue; - preempt_disable(); stats = per_cpu_ptr(nfss->io_stats, cpu);