diff options
author | Eric W. Biederman <ebiederm@xmission.com> | 2013-01-31 17:49:26 -0800 |
---|---|---|
committer | Eric W. Biederman <ebiederm@xmission.com> | 2013-02-13 06:15:01 -0800 |
commit | f4108a607f75b073423eed229ee4f95e5fc10631 (patch) | |
tree | 3e950c8c7707b04e500d455950e3e57d292f7d1b /fs/gfs2/super.c | |
parent | 393551e9898136513007b1e88a25bd4dcdb0d759 (diff) | |
download | linux-f4108a607f75b073423eed229ee4f95e5fc10631.tar.gz linux-f4108a607f75b073423eed229ee4f95e5fc10631.tar.xz |
gfs2: Split NO_QUOTA_CHANGE inot NO_UID_QUTOA_CHANGE and NO_GID_QUTOA_CHANGE
Split NO_QUOTA_CHANGE into NO_UID_QUTOA_CHANGE and NO_GID_QUTOA_CHANGE
so the constants may be well typed.
Cc: Steven Whitehouse <swhiteho@redhat.com>
Signed-off-by: "Eric W. Biederman" <ebiederm@xmission.com>
Diffstat (limited to 'fs/gfs2/super.c')
-rw-r--r-- | fs/gfs2/super.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/gfs2/super.c b/fs/gfs2/super.c index d6488674d916..7cc5a6054547 100644 --- a/fs/gfs2/super.c +++ b/fs/gfs2/super.c @@ -1429,7 +1429,7 @@ static int gfs2_dinode_dealloc(struct gfs2_inode *ip) if (error) return error; - error = gfs2_quota_hold(ip, NO_QUOTA_CHANGE, NO_QUOTA_CHANGE); + error = gfs2_quota_hold(ip, NO_UID_QUOTA_CHANGE, NO_GID_QUOTA_CHANGE); if (error) return error; |