Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 52d9f3b4 authored by Peter Zijlstra's avatar Peter Zijlstra Committed by Linus Torvalds
Browse files

lib: percpu_counter_sum_positive



 s/percpu_counter_sum/&_positive/

Because its consitent with percpu_counter_read*

Signed-off-by: default avatarPeter Zijlstra <a.p.zijlstra@chello.nl>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent 3a587f47
Loading
Loading
Loading
Loading
+2 −2
Original line number Original line Diff line number Diff line
@@ -2472,13 +2472,13 @@ static int ext3_statfs (struct dentry * dentry, struct kstatfs * buf)
	buf->f_type = EXT3_SUPER_MAGIC;
	buf->f_type = EXT3_SUPER_MAGIC;
	buf->f_bsize = sb->s_blocksize;
	buf->f_bsize = sb->s_blocksize;
	buf->f_blocks = le32_to_cpu(es->s_blocks_count) - sbi->s_overhead_last;
	buf->f_blocks = le32_to_cpu(es->s_blocks_count) - sbi->s_overhead_last;
	buf->f_bfree = percpu_counter_sum(&sbi->s_freeblocks_counter);
	buf->f_bfree = percpu_counter_sum_positive(&sbi->s_freeblocks_counter);
	es->s_free_blocks_count = cpu_to_le32(buf->f_bfree);
	es->s_free_blocks_count = cpu_to_le32(buf->f_bfree);
	buf->f_bavail = buf->f_bfree - le32_to_cpu(es->s_r_blocks_count);
	buf->f_bavail = buf->f_bfree - le32_to_cpu(es->s_r_blocks_count);
	if (buf->f_bfree < le32_to_cpu(es->s_r_blocks_count))
	if (buf->f_bfree < le32_to_cpu(es->s_r_blocks_count))
		buf->f_bavail = 0;
		buf->f_bavail = 0;
	buf->f_files = le32_to_cpu(es->s_inodes_count);
	buf->f_files = le32_to_cpu(es->s_inodes_count);
	buf->f_ffree = percpu_counter_sum(&sbi->s_freeinodes_counter);
	buf->f_ffree = percpu_counter_sum_positive(&sbi->s_freeinodes_counter);
	es->s_free_inodes_count = cpu_to_le32(buf->f_ffree);
	es->s_free_inodes_count = cpu_to_le32(buf->f_ffree);
	buf->f_namelen = EXT3_NAME_LEN;
	buf->f_namelen = EXT3_NAME_LEN;
	fsid = le64_to_cpup((void *)es->s_uuid) ^
	fsid = le64_to_cpup((void *)es->s_uuid) ^
+2 −2
Original line number Original line Diff line number Diff line
@@ -2592,13 +2592,13 @@ static int ext4_statfs (struct dentry * dentry, struct kstatfs * buf)
	buf->f_type = EXT4_SUPER_MAGIC;
	buf->f_type = EXT4_SUPER_MAGIC;
	buf->f_bsize = sb->s_blocksize;
	buf->f_bsize = sb->s_blocksize;
	buf->f_blocks = ext4_blocks_count(es) - sbi->s_overhead_last;
	buf->f_blocks = ext4_blocks_count(es) - sbi->s_overhead_last;
	buf->f_bfree = percpu_counter_sum(&sbi->s_freeblocks_counter);
	buf->f_bfree = percpu_counter_sum_positive(&sbi->s_freeblocks_counter);
	es->s_free_blocks_count = cpu_to_le32(buf->f_bfree);
	es->s_free_blocks_count = cpu_to_le32(buf->f_bfree);
	buf->f_bavail = buf->f_bfree - ext4_r_blocks_count(es);
	buf->f_bavail = buf->f_bfree - ext4_r_blocks_count(es);
	if (buf->f_bfree < ext4_r_blocks_count(es))
	if (buf->f_bfree < ext4_r_blocks_count(es))
		buf->f_bavail = 0;
		buf->f_bavail = 0;
	buf->f_files = le32_to_cpu(es->s_inodes_count);
	buf->f_files = le32_to_cpu(es->s_inodes_count);
	buf->f_ffree = percpu_counter_sum(&sbi->s_freeinodes_counter);
	buf->f_ffree = percpu_counter_sum_positive(&sbi->s_freeinodes_counter);
	es->s_free_inodes_count = cpu_to_le32(buf->f_ffree);
	es->s_free_inodes_count = cpu_to_le32(buf->f_ffree);
	buf->f_namelen = EXT4_NAME_LEN;
	buf->f_namelen = EXT4_NAME_LEN;
	fsid = le64_to_cpup((void *)es->s_uuid) ^
	fsid = le64_to_cpup((void *)es->s_uuid) ^
+1 −1
Original line number Original line Diff line number Diff line
@@ -98,7 +98,7 @@ struct file *get_empty_filp(void)
		 * percpu_counters are inaccurate.  Do an expensive check before
		 * percpu_counters are inaccurate.  Do an expensive check before
		 * we go and fail.
		 * we go and fail.
		 */
		 */
		if (percpu_counter_sum(&nr_files) >= files_stat.max_files)
		if (percpu_counter_sum_positive(&nr_files) >= files_stat.max_files)
			goto over;
			goto over;
	}
	}


+2 −2
Original line number Original line Diff line number Diff line
@@ -34,7 +34,7 @@ void percpu_counter_init(struct percpu_counter *fbc, s64 amount);
void percpu_counter_destroy(struct percpu_counter *fbc);
void percpu_counter_destroy(struct percpu_counter *fbc);
void percpu_counter_set(struct percpu_counter *fbc, s64 amount);
void percpu_counter_set(struct percpu_counter *fbc, s64 amount);
void __percpu_counter_add(struct percpu_counter *fbc, s64 amount, s32 batch);
void __percpu_counter_add(struct percpu_counter *fbc, s64 amount, s32 batch);
s64 percpu_counter_sum(struct percpu_counter *fbc);
s64 percpu_counter_sum_positive(struct percpu_counter *fbc);


static inline void percpu_counter_add(struct percpu_counter *fbc, s64 amount)
static inline void percpu_counter_add(struct percpu_counter *fbc, s64 amount)
{
{
@@ -102,7 +102,7 @@ static inline s64 percpu_counter_read_positive(struct percpu_counter *fbc)
	return fbc->count;
	return fbc->count;
}
}


static inline s64 percpu_counter_sum(struct percpu_counter *fbc)
static inline s64 percpu_counter_sum_positive(struct percpu_counter *fbc)
{
{
	return percpu_counter_read_positive(fbc);
	return percpu_counter_read_positive(fbc);
}
}
+2 −2
Original line number Original line Diff line number Diff line
@@ -52,7 +52,7 @@ EXPORT_SYMBOL(__percpu_counter_add);
 * Add up all the per-cpu counts, return the result.  This is a more accurate
 * Add up all the per-cpu counts, return the result.  This is a more accurate
 * but much slower version of percpu_counter_read_positive()
 * but much slower version of percpu_counter_read_positive()
 */
 */
s64 percpu_counter_sum(struct percpu_counter *fbc)
s64 percpu_counter_sum_positive(struct percpu_counter *fbc)
{
{
	s64 ret;
	s64 ret;
	int cpu;
	int cpu;
@@ -66,7 +66,7 @@ s64 percpu_counter_sum(struct percpu_counter *fbc)
	spin_unlock(&fbc->lock);
	spin_unlock(&fbc->lock);
	return ret < 0 ? 0 : ret;
	return ret < 0 ? 0 : ret;
}
}
EXPORT_SYMBOL(percpu_counter_sum);
EXPORT_SYMBOL(percpu_counter_sum_positive);


void percpu_counter_init(struct percpu_counter *fbc, s64 amount)
void percpu_counter_init(struct percpu_counter *fbc, s64 amount)
{
{