diff options
author | Jan Kara <jack@suse.cz> | 2012-10-09 23:30:17 +0200 |
---|---|---|
committer | Jan Kara <jack@suse.cz> | 2012-10-09 23:37:38 +0200 |
commit | 6c29c50fda25c2ac2ce45a9b042ff7e424aa8eac (patch) | |
tree | bff50cb3672c496c8ed1e1891c96c3dc696efae4 /fs/quota | |
parent | 66415f6b50f5bcbc56c78df54aacee73f3d03a3d (diff) | |
download | op-kernel-dev-6c29c50fda25c2ac2ce45a9b042ff7e424aa8eac.zip op-kernel-dev-6c29c50fda25c2ac2ce45a9b042ff7e424aa8eac.tar.gz |
quota: Silence warning about PRJQUOTA not being handled in need_print_warning()
PRJQUOTA value of quota type should never reach need_print_warning() since XFS
(which is the only fs which uses that type) doesn't use generic functions
calling this function. Anyway, add PRJQUOTA case to the switch to make gcc
happy.
Signed-off-by: Jan Kara <jack@suse.cz>
Diffstat (limited to 'fs/quota')
-rw-r--r-- | fs/quota/dquot.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/fs/quota/dquot.c b/fs/quota/dquot.c index 557a9c20..05ae3c9 100644 --- a/fs/quota/dquot.c +++ b/fs/quota/dquot.c @@ -1160,6 +1160,8 @@ static int need_print_warning(struct dquot_warn *warn) return uid_eq(current_fsuid(), warn->w_dq_id.uid); case GRPQUOTA: return in_group_p(warn->w_dq_id.gid); + case PRJQUOTA: /* Never taken... Just make gcc happy */ + return 0; } return 0; } |