Hi Brian, I’m sorry for delayed reply, detail explanation is in inline mail. > 在 2018年3月15日,下午10:25,Brian Foster <bfoster@xxxxxxxxxx> 写道: > > On Fri, Mar 09, 2018 at 09:15:55PM +0800, Chengguang Xu wrote: >> In order to more accurately reflect size/used/avail information >> for quota-df, slightly adjust related counting logic. >> >> Signed-off-by: Chengguang Xu <cgxu519@xxxxxxx> >> --- >> >> Hello folks, >> >> Recently I’m testing project quota for our container users and found >> sometimes the result of df command could not exactly represent >> block/inode usage amount. So I checked the logic in function xfs_qm_statvfs() >> and I think it might be better if slightly adjusting the counting logic. >> What do you think? >> >> Terms: >> # Size(F) - The size field in df result of filesystem >> # Size(Q) - The size field of in df result of pquota-dir >> # Used(F) - The used field in df result of filesystem >> # Used(Q) - The used field in df result of pquota-dir >> # Avail(F) - The avail field in df result of filesystem >> # Avail(Q) - The avail field in df result of pquota-dir >> # Used(A) - Actual used >> >> Problems that I found. >> 1) Avail(Q) can be higher than Avail(F) > > Does this refer to a quota limit that exceeds the size of the fs? I'm > not sure that's necessarily a problem. No, not really. Assume if we have 100GB xfs filesystem(/mnt/test2) and we have 3 directories(pq1, pq2, pq3) inside the fs, each directory sets project quota. (size limit up to 10GB) When avail space of total filesystem is only left 3.2MB, but when running df for pg1,pg2,pg3 then avail space is 9.5GB, this is much more than real filesystem. What do you think? Detail output [1]. (without this fix patch) $ df -h /mnt/test2 Filesystem Size Used Avail Use% Mounted on /dev/vdb2 100G 100G 3.2M 100% /mnt/test2 $ df -h /mnt/test2/pq1 Filesystem Size Used Avail Use% Mounted on /dev/vdb2 10G 570M 9.5G 6% /mnt/test2 $ df -h /mnt/test2/pq2 Filesystem Size Used Avail Use% Mounted on /dev/vdb2 10G 570M 9.5G 6% /mnt/test2 $ df -h /mnt/test2/pq3 Filesystem Size Used Avail Use% Mounted on /dev/vdb2 10G 570M 9.5G 6% /mnt/test2 Detail output [2]. (with this fix patch) $ df -h /mnt/test2 Filesystem Size Used Avail Use% Mounted on /dev/vdb2 100G 100G 3.2M 100% /mnt/test2 $ df -h /mnt/test2/pq1 Filesystem Size Used Avail Use% Mounted on /dev/vdb2 574M 570M 3.2M 100% /mnt/test2 $ df -h /mnt/test2/pq2 Filesystem Size Used Avail Use% Mounted on /dev/vdb2 574M 570M 3.2M 100% /mnt/test2 $ df -h /mnt/test2/pq3 Filesystem Size Used Avail Use% Mounted on /dev/vdb2 574M 570M 3.2M 100% /mnt/test2 > >> 2) Used(A) can be higher than Used(Q) >> > > I'm not quite sure what this means. > > As it is, the commit log doesn't clearly explain the problem you're > trying to solve. Perhaps you should provide some example commands and > output that demonstrate the problem and solution. > >> >> fs/xfs/xfs_qm_bhv.c | 40 ++++++++++++++++++++++++++++++---------- >> 1 file changed, 30 insertions(+), 10 deletions(-) >> >> diff --git a/fs/xfs/xfs_qm_bhv.c b/fs/xfs/xfs_qm_bhv.c >> index 2be6d27..cb2e6c9 100644 >> --- a/fs/xfs/xfs_qm_bhv.c >> +++ b/fs/xfs/xfs_qm_bhv.c >> @@ -38,21 +38,41 @@ >> limit = dqp->q_core.d_blk_softlimit ? >> be64_to_cpu(dqp->q_core.d_blk_softlimit) : >> be64_to_cpu(dqp->q_core.d_blk_hardlimit); >> - if (limit && statp->f_blocks > limit) { >> - statp->f_blocks = limit; >> - statp->f_bfree = statp->f_bavail = >> - (statp->f_blocks > dqp->q_res_bcount) ? >> - (statp->f_blocks - dqp->q_res_bcount) : 0; > > So the current logic is that if there's a quota limit and the limit is > more restrictive than the fs, we clamp the stat size/free info to the > pquota limit. Here, I think this logic has some problems. 1. Limit is set to soft limit if it exists, but soft limit can be exceeded by temporarily, so the usage output might not exactly represent actual usage. Especially, when soft limit and hard limit are much different, then the usage output might be more confusing. 2. When calculating free space, this logic does not consider the free space of real filesystem, so the output of free space sometimes much larger than free space of real filesystem. I have showed the detail in above explanation [1]. > >> + >> + if (limit) { >> + if (limit > dqp->q_res_bcount + statp->f_bavail) >> + statp->f_blocks = dqp->q_res_bcount + statp->f_bavail; >> + else >> + statp->f_blocks = limit; >> + } else { >> + statp->f_blocks = dqp->q_res_bcount + statp->f_bavail; >> + } >> + > > Now it looks like we fix up f_blocks regardless of whether there's a > limit set. IOW: > > if (limit && limit <= dqp->q_res_bcount + statp->f_bavail) > statp->f_blocks = limit; > else > statp->f_blocks = dqp->q_res_bcount + statp->f_bavail; > > The purpose of the original code was to make a subtree with a pquota > appear like a smaller fs to a subtenant, for example. What is the > additional purpose of the f_blocks adjustment? The additional purpose of the f_blocks adjustment is for keeping below counting rule. total = used + free(or avail) > >> + if (dqp->q_res_bcount >= statp->f_blocks) { >> + statp->f_blocks = dqp->q_res_bcount; >> + statp->f_bfree = statp->f_bavail = 0; >> + } else { >> + statp->f_bfree = statp->f_bavail = statp->f_blocks - dqp->q_res_bcount; >> } > > q_res_bcount is a component of f_blocks in the else case above, so I > think the first case here turns the logic into something like: > > if (limit && limit <= dqp->q_res_bcount + statp->f_bavail) { > if (dqp->q_res_bcount > limit) > limit = dqp->q_res_bcount; > statp->f_blocks = limit; > } else > statp->f_blocks = dqp->q_res_bcount + statp->f_bavail; > statp->f_bfree = statp->f_bavail = statp->f_blocks - dqp->q_res_bcount; > > Is the purpose here to deal with an over limit soft quota or something? Yes, exactly. Thanks, Chengguang. > > Brian > >> >> limit = dqp->q_core.d_ino_softlimit ? >> be64_to_cpu(dqp->q_core.d_ino_softlimit) : >> be64_to_cpu(dqp->q_core.d_ino_hardlimit); >> - if (limit && statp->f_files > limit) { >> - statp->f_files = limit; >> - statp->f_ffree = >> - (statp->f_files > dqp->q_res_icount) ? >> - (statp->f_ffree - dqp->q_res_icount) : 0; >> + >> + if (limit) { >> + if (limit > dqp->q_res_icount + statp->f_ffree) >> + statp->f_files = dqp->q_res_icount + statp->f_ffree; >> + else >> + statp->f_files = limit; >> + } else { >> + statp->f_files = dqp->q_res_icount + statp->f_ffree; >> + } >> + >> + if (dqp->q_res_icount >= statp->f_files) { >> + statp->f_files = dqp->q_res_icount; >> + statp->f_ffree = 0; >> + } else { >> + statp->f_ffree = statp->f_files - dqp->q_res_icount; >> } >> } >> >> -- >> 1.8.3.1 >> >> -- >> To unsubscribe from this list: send the line "unsubscribe linux-xfs" in >> the body of a message to majordomo@xxxxxxxxxxxxxxx >> More majordomo info at http://vger.kernel.org/majordomo-info.html > -- > To unsubscribe from this list: send the line "unsubscribe linux-xfs" in > the body of a message to majordomo@xxxxxxxxxxxxxxx > More majordomo info at http://vger.kernel.org/majordomo-info.html -- To unsubscribe from this list: send the line "unsubscribe linux-xfs" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html