lkml.org 
[lkml]   [2010]   [Jun]   [21]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
/
SubjectRe: [PATCH v3 2/2] tmpfs: Make tmpfs scalable with percpu_counter for used blocks
From
Date
On Mon, 2010-06-21 at 13:18 -0700, Andrew Morton wrote:
> On Thu, 17 Jun 2010 16:56:33 -0700
> Tim Chen <tim.c.chen@linux.intel.com> wrote:
>
> > The current implementation of tmpfs is not scalable.
> > We found that stat_lock is contended by multiple threads
> > when we need to get a new page, leading to useless spinning
> > inside this spin lock.
> >
> > This patch makes use of the percpu_counter library to maintain local
> > count of used blocks to speed up getting and returning
> > of pages. So the acquisition of stat_lock is unnecessary
> > for getting and returning blocks, improving the performance
> > of tmpfs on system with large number of cpus. On a 4 socket
> > 32 core NHM-EX system, we saw improvement of 270%.
>
> So it had exactly the same performance as the token-jar approach?
>

The performance numbers are almost identical, the difference is quite
small (within 1%).

> It'd be good if the changelog were to mention the inaccuracy issues.
> Describe their impact, if any.

You are talking about the small chance that we may overshoot the limit
a bit? There's a slight chance of race between threads when another
thread allocate the last block after we have read the block count,
thinking that the used blocks are still below limit. There's a small
chance that the same thing happen when we remount.
>
> Are you actually happy with this overall approach?
>
I think qtoken approach can eliminate the small inaccuracy mentioned
above. However, the inaccuracy will really be quite small and transient
(will go away once we return the used blocks) and will not cause any
problem to tmpfs. So I'm fine with it.

> >
> > ...
> >
> > @@ -2258,9 +2254,8 @@ static int shmem_remount_fs(struct super_block *sb, int *flags, char *data)
> > return error;
> >
> > spin_lock(&sbinfo->stat_lock);
> > - blocks = sbinfo->max_blocks - sbinfo->free_blocks;
> > inodes = sbinfo->max_inodes - sbinfo->free_inodes;
> > - if (config.max_blocks < blocks)
> > + if (config.max_blocks < percpu_counter_sum(&sbinfo->used_blocks))
>
> This could actually use percpu_counter_compare()?
>

Yeah, using percpu_counter_compare probably is cleaner.

Tim





\
 
 \ /
  Last update: 2010-06-22 04:59    [W:1.310 / U:0.656 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site