From: Matthew Wilcox <matthew@wil.cx>
To: Liuweni <qingshenlwy@gmail.com>
Cc: viro <viro@zeniv.linux.org.uk>, akpm <akpm@linux-foundation.org>,
jack <jack@suse.cz>, npiggin <npiggin@suse.de>,
linux-fsdevel <linux-fsdevel@vger.kernel.org>,
linux-kernel <linux-kernel@vger.kernel.org>,
strongzgy <strongzgy@gmail.com>, xgr178 <xgr178@163.com>,
Liu Hui <onlyflyer@gmail.com>
Subject: Re: [PATCH 1/3]fs/inode: iunique() Optimize Performance
Date: Wed, 25 Nov 2009 07:54:11 -0700 [thread overview]
Message-ID: <20091125145410.GJ9482@parisc-linux.org> (raw)
In-Reply-To: <200911252251305001347@gmail.com>
On Wed, Nov 25, 2009 at 10:51:33PM +0800, Liuweni wrote:
> Hi Matthew Wilcox ,
> The code means set counter's value to the max max_reserved and counter.
> Then, the if condition will choose a large one, and in the function, the counter
> is increased. so this code won't change the function of iunique().
>
> > + if (counter <= max_reserved)
> > + counter = max_reserved + 1;
If 'counter' has the value 0xffffffff, and the loop increments 'counter'
to zero, this check needs to be inside the loop.
>
> -----------
> Best Regards,
> Liuweni
> 2009-11-25
>
>
>
>
>
>
>
> ???????? Matthew Wilcox
> ?????????? 2009-11-25 22:15:09
> ???????? Liuweni
> ?????? linux-kernel; strongzgy; xgr178; Liu Hui; viro; akpm; jack; npiggin; linux-fsdevel
> ?????? Re: [PATCH 1/3]fs/inode: iunique() Optimize Performance
>
> On Wed, Nov 25, 2009 at 10:09:45PM +0800, Liuweni wrote:
> > ---
> > move the if condition out the while{}.
> > While the function executing, the if
> > condition won't check again and again.
> > And this code won't change the function
> > of iunique().
> That's not true.
> > @@ -838,9 +838,10 @@ ino_t iunique(struct super_block *sb, ino_t max_reserved)
> > ino_t res;
> >
> > spin_lock(&inode_lock);
> > +
> > + if (counter <= max_reserved)
> > + counter = max_reserved + 1;
> > do {
> > - if (counter <= max_reserved)
> > - counter = max_reserved + 1;
> > res = counter++;
> 'counter' is incremented here, so if it wraps around, we'll blunder into
> the reserved space again.
> > head = inode_hashtable + hash(sb, res);
> > inode = find_inode_fast(sb, head, res);
> >
> >
> > --------------
> > Best Regards,
> > Liuweni
> > 2009-11-25
> >
> > --
> > To unsubscribe from this list: send the line "unsubscribe linux-fsdevel" in
> > the body of a message to majordomo@vger.kernel.org
> > More majordomo info at http://vger.kernel.org/majordomo-info.html
> --
> Matthew Wilcox Intel Open Source Technology Centre
> "Bill, look, we understand that you're interested in selling us this
> operating system, but compare it to ours. We can't possibly take such
> a retrograde step."
--
Matthew Wilcox Intel Open Source Technology Centre
"Bill, look, we understand that you're interested in selling us this
operating system, but compare it to ours. We can't possibly take such
a retrograde step."
next prev parent reply other threads:[~2009-11-25 14:54 UTC|newest]
Thread overview: 15+ messages / expand[flat|nested] mbox.gz Atom feed top
2009-11-25 14:09 [PATCH 1/3]fs/inode: iunique() Optimize Performance Liuweni
2009-11-25 14:15 ` Matthew Wilcox
2009-11-25 19:20 ` Jérémy Cochoy
2009-11-25 19:52 ` Matthew Wilcox
2009-12-01 5:01 ` liu weni
2009-12-01 5:01 ` liu weni
2009-12-01 12:03 ` Matthew Wilcox
2009-12-01 13:21 ` Liuweni
2009-12-01 13:21 ` Liuweni
2009-12-01 14:00 ` Matthew Wilcox
2009-12-02 9:42 ` Nick Piggin
2009-11-25 14:51 ` Liuweni
2009-11-25 14:51 ` Liuweni
2009-11-25 14:54 ` Matthew Wilcox [this message]
2009-11-25 15:06 ` Andi Kleen
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20091125145410.GJ9482@parisc-linux.org \
--to=matthew@wil.cx \
--cc=akpm@linux-foundation.org \
--cc=jack@suse.cz \
--cc=linux-fsdevel@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=npiggin@suse.de \
--cc=onlyflyer@gmail.com \
--cc=qingshenlwy@gmail.com \
--cc=strongzgy@gmail.com \
--cc=viro@zeniv.linux.org.uk \
--cc=xgr178@163.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.