From: Arkadiusz Miskiewicz <arekm@maven.pl>
To: Christoph Hellwig <hch@infradead.org>
Cc: xfs@oss.sgi.com
Subject: Re: [PATCH VER 4] Extend project quotas to support 32bit project identificators.
Date: Wed, 22 Sep 2010 21:01:13 +0200 [thread overview]
Message-ID: <201009222101.13985.arekm@maven.pl> (raw)
In-Reply-To: <20100922184242.GA9911@infradead.org>
On Wednesday 22 of September 2010, Christoph Hellwig wrote:
> On Wed, Sep 22, 2010 at 07:42:23PM +0200, Arkadiusz Mi??kiewicz wrote:
> > if (mask & FSX_PROJID) {
> >
> > + /*
> > + * Switch on the PROJID32BIT superblock bit when needed
> > + * (implies also FEATURES2)
> > + */
> > + if (!xfs_sb_version_hasprojid32bit(&ip->i_mount->m_sb) &&
> > + fa->fsx_projid > (__uint16_t)-1)
> > + xfs_addprojid32bit(tp, ip);
>
> Didn't we agree that we want to enable this feature explicitly via
> xfs_admin (or mkfs.xfs)?
Actually there was no agreement on this. Some think that it's good to do that
automaticly (so user doesn't have to do anything and has everything working)
and others think that it should be turned on explictly by xfs_admin/mkfs.xfs.
For me both methods are fine, both have some advantages and disadvantages.
(There was an agreement that separate projid (from group) quota should be
turned on manually but was no such agreement on projid32bit)
> > - __u16 bs_projid; /* project id */
> > + __u16 bs_projid_lo; /* lower part of project id */
> >
> > __u16 bs_forkoff; /* inode fork offset in bytes */
> >
> > - unsigned char bs_pad[12]; /* pad space, unused */
> > + __u16 bs_projid_hi; /* higher part of project id */
> > + unsigned char bs_pad[10]; /* pad space, unused */
>
> Unlike in the inode we can't just rename the lo field here - that would
> break the compilation of existing applications.
Ok but maybe breaking these is good? So these can be extended to support 32bit
projid. Otherwise these will get crap if 32bit projid is enabled (actually
already built binaries will still get crap for > 16bit values with projid32bit
patch).
> > +{
> > + spin_lock(&ip->i_mount->m_sb_lock);
> > + if (!xfs_sb_version_hasprojid32bit(&ip->i_mount->m_sb)) {
>
> Wedon't need the lock around the check, it's enough if it's inside the
> conditional.
Hm, xfs_bump_ino_vers2 does that exactly that way (for addnlink) thus I
thought there is a reason for that.
> > + xfs_sb_version_addprojid32bit(&ip->i_mount->m_sb);
> > + spin_unlock(&ip->i_mount->m_sb_lock);
> > + xfs_mod_sb(tp,
> > + XFS_SB_VERSIONNUM | XFS_SB_FEATURES2);
--
Arkadiusz Miśkiewicz PLD/Linux Team
arekm / maven.pl http://ftp.pld-linux.org/
_______________________________________________
xfs mailing list
xfs@oss.sgi.com
http://oss.sgi.com/mailman/listinfo/xfs
next prev parent reply other threads:[~2010-09-22 19:00 UTC|newest]
Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top
2010-09-22 17:42 [PATCH VER 4] Extend project quotas to support 32bit project identificators Arkadiusz Miśkiewicz
2010-09-22 17:45 ` [PATCH VER 4] xfsprogs: projid32bit handling Arkadiusz Miśkiewicz
2010-09-22 17:45 ` [PATCH VER 4] xfstests: Quota project id setting overflow Arkadiusz Miśkiewicz
2010-09-22 18:44 ` [PATCH VER 4] xfsprogs: projid32bit handling Christoph Hellwig
2010-09-23 22:57 ` Alex Elder
2010-09-22 18:42 ` [PATCH VER 4] Extend project quotas to support 32bit project identificators Christoph Hellwig
2010-09-22 19:01 ` Arkadiusz Miskiewicz [this message]
2010-09-24 0:37 ` Dave Chinner
2010-09-23 22:51 ` Alex Elder
2010-09-24 0:55 ` Dave Chinner
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=201009222101.13985.arekm@maven.pl \
--to=arekm@maven.pl \
--cc=hch@infradead.org \
--cc=xfs@oss.sgi.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox