From: Jaegeuk Kim <jaegeuk.kim@gmail.com>
To: NeilBrown <neilb@suse.de>
Cc: 김재극 <jaegeuk.kim@samsung.com>,
viro@zeniv.linux.org.uk, "'Theodore Ts'o'" <tytso@mit.edu>,
gregkh@linuxfoundation.org, linux-kernel@vger.kernel.org,
chur.lee@samsung.com, cm224.lee@samsung.com,
jooyoung.hwang@samsung.com
Subject: Re: [PATCH 03/16] f2fs: add superblock and major in-memory structures
Date: Fri, 12 Oct 2012 23:31:01 +0900 [thread overview]
Message-ID: <1350052261.2299.31.camel@kjgkr> (raw)
In-Reply-To: <20121011095044.6c88e3d4@notabene.brown>
2012-10-11 (목), 09:50 +1100, NeilBrown:
> On Fri, 05 Oct 2012 20:57:46 +0900 김재극 <jaegeuk.kim@samsung.com> wrote:
>
>
> > +static inline unsigned int curseg_segno(struct f2fs_sb_info *sbi,
> > + int type)
> > +{
> > + struct curseg_info *curseg = CURSEG_I(sbi, type);
> > + unsigned int segno;
> > + mutex_lock(&curseg->curseg_mutex);
> > + segno = curseg->segno;
> > + mutex_unlock(&curseg->curseg_mutex);
> > + return segno;
> > +}
> > +
> > +static inline unsigned char curseg_alloc_type(struct f2fs_sb_info *sbi,
> > + int type)
> > +{
> > + struct curseg_info *curseg = CURSEG_I(sbi, type);
> > + unsigned char a_type;
> > + mutex_lock(&curseg->curseg_mutex);
> > + a_type = curseg->alloc_type;
> > + mutex_unlock(&curseg->curseg_mutex);
> > + return a_type;
> > +}
> > +
> > +static inline unsigned short curseg_blkoff(struct f2fs_sb_info *sbi, int type)
> > +{
> > + struct curseg_info *curseg = CURSEG_I(sbi, type);
> > + unsigned short blkoff;
> > + mutex_lock(&curseg->curseg_mutex);
> > + blkoff = curseg->next_blkoff;
> > + mutex_unlock(&curseg->curseg_mutex);
> > + return blkoff;
> > +}
>
> Taking a mutex just to extract a small number from a structure is pointless.
> alloc_type, next_blkoff and segno are char, short, and int. All of these can
> be read atomically, so a lock gains you nothing.
>
> In checkpoint.c we have
> for (i = 0; i < 3; i++) {
> ckpt->cur_node_segno[i] =
> cpu_to_le32(curseg_segno(sbi, i + CURSEG_HOT_NODE));
> ckpt->cur_node_blkoff[i] =
> cpu_to_le16(curseg_blkoff(sbi, i + CURSEG_HOT_NODE));
> nat_upd_blkoff[i] = NM_I(sbi)->nat_upd_blkoff[i];
> ckpt->nat_upd_blkoff[i] = cpu_to_le16(nat_upd_blkoff[i]);
> ckpt->alloc_type[i + CURSEG_HOT_NODE] =
> curseg_alloc_type(sbi, i + CURSEG_HOT_NODE);
> }
>
> which will take and drop that same lock 3 times in quick succession, and then
> do it again for 3 other locks (And there is another loop which does it for
> the other 3 cursegs).
>
> If you do need some locking here, I think you need to take the lock once per
> loop iteration so the 3 values are consistent, not once for each value.
>
Definitely it's right.
Thank you.
>
> Regards,
> NeilBrown
>
>
[snip]
--
Jaegeuk Kim
Samsung
prev parent reply other threads:[~2012-10-12 14:31 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-10-05 11:57 김재극
2012-10-06 23:22 ` David Sterba
2012-10-09 5:13 ` Chul Lee
2012-10-09 12:02 ` David Sterba
2012-10-10 22:50 ` NeilBrown
2012-10-12 14:31 ` Jaegeuk Kim [this message]
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=1350052261.2299.31.camel@kjgkr \
--to=jaegeuk.kim@gmail.com \
--cc=chur.lee@samsung.com \
--cc=cm224.lee@samsung.com \
--cc=gregkh@linuxfoundation.org \
--cc=jaegeuk.kim@samsung.com \
--cc=jooyoung.hwang@samsung.com \
--cc=linux-kernel@vger.kernel.org \
--cc=neilb@suse.de \
--cc=tytso@mit.edu \
--cc=viro@zeniv.linux.org.uk \
/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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®