From: Eric Sandeen Date: Mon, 21 Feb 2011 18:12:50 +0000 (-0600) Subject: xfs_quota: don't try to report quotas which aren't there. X-Git-Tag: v3.1.5~26 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=e127d47bf2b816d1d9b8583d6f429b351e41176f;p=thirdparty%2Fxfsprogs-dev.git xfs_quota: don't try to report quotas which aren't there. Red Hat bug #669333 - xfs_quota generates "XFS_GETQUOTA: No such process" errors shows that if you do this for a filesystem w/o group quota enabled: # xfs_quota -x -c ' report -h ' /xfsquota" You'll get this output: User quota on /xfsquota (/dev/vdb) Blocks User ID Used Soft Hard Warn/Grace --- diff --git a/quota/report.c b/quota/report.c index 0e005c361..865359042 100644 --- a/quota/report.c +++ b/quota/report.c @@ -82,7 +82,7 @@ dump_file( fs_disk_quota_t d; if (xfsquotactl(XFS_GETQUOTA, dev, type, id, (void *)&d) < 0) { - if (errno != ENOENT && errno != ENOSYS) + if (errno != ENOENT && errno != ENOSYS && errno != ESRCH) perror("XFS_GETQUOTA"); return; } @@ -302,7 +302,7 @@ report_mount( int count; if (xfsquotactl(XFS_GETQUOTA, dev, type, id, (void *)&d) < 0) { - if (errno != ENOENT && errno != ENOSYS) + if (errno != ENOENT && errno != ENOSYS && errno != ESRCH) perror("XFS_GETQUOTA"); return 0; }