summaryrefslogtreecommitdiff
path: root/quotaio.c
diff options
context:
space:
mode:
authorjkar8572 <jkar8572>2002-03-01 10:59:54 +0000
committerjkar8572 <jkar8572>2002-03-01 10:59:54 +0000
commitf8cc5d8896dc5f069d1bc0376fee6b732568bb59 (patch)
tree30641899124452d63c77d3fdd7940fcc3efe9b55 /quotaio.c
parent9f04804a8da0547a6d6d18bbd83501a5db164e1a (diff)
Small formatting change in quotactl.2 (Nathan Scott)
Make init_io() more paranoid about quota turned on in kernel (Jan Kara)
Diffstat (limited to 'quotaio.c')
-rw-r--r--quotaio.c18
1 files changed, 13 insertions, 5 deletions
diff --git a/quotaio.c b/quotaio.c
index 6478ad9..3efda67 100644
--- a/quotaio.c
+++ b/quotaio.c
@@ -108,11 +108,19 @@ struct quota_handle *init_io(struct mntent *mnt, int type, int fmt, int flags)
return h;
}
kernfmt = kern_quota_format(); /* Check kernel quota format */
- if (kernfmt > 0 && (fmt == -1 || (1 << fmt) & kernfmt) && /* Quota compiled and desired format available? */
- /* Quota turned on? */
- (kernfmt = kern_quota_on(h->qh_quotadev, type, fmt == -1 ? kernfmt : (1 << fmt))) != -1) {
- h->qh_io_flags |= IOFL_QUOTAON;
- fmt = kernfmt; /* Default is kernel used format */
+ if (kernfmt == QF_TOONEW || kernfmt > 0) {
+ /* Try whether some quota isn't turned on */
+ if (fmt != -1) {
+ if (kern_quota_on(h->qh_quotadev, type, 1 << fmt) != -1)
+ h->qh_io_flags |= IOFL_QUOTAON;
+ }
+ else if (kernfmt == QF_TOONEW) {
+ if ((fmt = kern_quota_on(h->qh_quotadev, type, (1 << QF_VFSOLD) | (1 << QF_VFSV0))) != -1)
+ h->qh_io_flags |= IOFL_QUOTAON;
+ }
+ else
+ if ((fmt = kern_quota_on(h->qh_quotadev, type, kernfmt)) != -1)
+ h->qh_io_flags |= IOFL_QUOTAON;
}
if (!(qfname = get_qf_name(mnt, type, fmt))) {
errstr(_("Can't get quotafile name.\n"));