]> git.karo-electronics.de Git - linux-beck.git/commit
xfs: Initialize all quota inodes to be NULLFSINO
authorChandra Seetharaman <sekharan@us.ibm.com>
Fri, 19 Jul 2013 22:32:55 +0000 (17:32 -0500)
committerBen Myers <bpm@sgi.com>
Mon, 22 Jul 2013 19:10:53 +0000 (14:10 -0500)
commit0102629776a2f5c3bd9c5dc0ef77956c60255074
treec976f6d51f00c53047eb81d39d69b446b30d069c
parent297aa63769e6ae06b7db97eb76c9211beeb32c69
xfs: Initialize all quota inodes to be NULLFSINO

mkfs doesn't initialize the quota inodes to NULLFSINO as it does for the
other internal inodes. This leads to two in-core values (0 and NULLFSINO)
to be checked against, to make sure if a quota inode is valid.

Solve that problem by initializing the in-core values of all quotaino
values to NULLFSINO if they are 0 in the disk.

Note that these values are not written back to on-disk superblock unless
some quota is enabled on the filesystem. Even in that case sb_pquotino is
written to disk only if the on-disk superblock supports pquotino

Signed-off-by: Chandra Seetharaman <sekharan@us.ibm.com>
Reviewed-by: Ben Myers <bpm@sgi.com>
Signed-off-by: Ben Myers <bpm@sgi.com>
fs/xfs/xfs_mount.c