]> git.baikalelectronics.ru Git - kernel.git/commit
xfs: Fix quota type in quota structures when reusing quota file
authorJan Kara <jack@suse.cz>
Mon, 23 Feb 2015 11:34:17 +0000 (22:34 +1100)
committerDave Chinner <david@fromorbit.com>
Mon, 23 Feb 2015 11:34:17 +0000 (22:34 +1100)
commitcb4bf74e9c88af0cc3d46a0a11081615acccca82
treef8497e48b51eea39ac3e86e3c8dae5974fb3c159
parentb7d65746744b343701de14ca433982a3229390be
xfs: Fix quota type in quota structures when reusing quota file

For filesystems without separate project quota inode field in the
superblock we just reuse project quota file for group quotas (and vice
versa) if project quota file is allocated and we need group quota file.
When we reuse the file, quota structures on disk suddenly have wrong
type stored in d_flags though. Nobody really cares about this (although
structure type reported to userspace was wrong as well) except
that after commit 759351284c64 (quota: Switch ->get_dqblk() and
->set_dqblk() to use bytes as space units) assertion in
xfs_qm_scall_getquota() started to trigger on xfs/106 test (apparently I
was testing without XFS_DEBUG so I didn't notice when submitting the
above commit).

Fix the problem by properly resetting ddq->d_flags when running quotacheck
for a quota file.

CC: stable@vger.kernel.org
Reported-by: Al Viro <viro@ZenIV.linux.org.uk>
Signed-off-by: Jan Kara <jack@suse.cz>
Reviewed-by: Dave Chinner <dchinner@redhat.com>
Signed-off-by: Dave Chinner <david@fromorbit.com>
fs/xfs/xfs_qm.c