[PATCH] minor fixup of quota checking

From: Andreas Dilger (adilger@turbolinux.com)
Date: Wed Jul 11 2001 - 16:22:09 EST


The following patch fixes (I think) an error in the boolean logic for
checking if a filesystem can support quotas. Since quotas use both
read and write file operations, we need both functions available, but
the current test only fails if both read and write are NOT available.

Cheers, Andreas
==========================================================================
diff -ru linux-2.4.6.orig/fs/dquot.c linux-2.4.6-aed/fs/dquot.c
--- linux-2.4.6.orig/fs/dquot.c Thu Jun 28 14:28:23 2001
+++ linux-2.4.6-aed/fs/dquot.c Thu Jun 28 14:27:23 2001
@@ -1467,7 +1467,7 @@
         if (IS_ERR(f))
                 goto out_lock;
         error = -EIO;
- if (!f->f_op || (!f->f_op->read && !f->f_op->write))
+ if (!f->f_op || !f->f_op->read || !f->f_op->write)
                 goto out_f;
         inode = f->f_dentry->d_inode;
         error = -EACCES;

-- 
Andreas Dilger  \ "If a man ate a pound of pasta and a pound of antipasto,
                 \  would they cancel out, leaving him still hungry?"
http://www-mddsp.enel.ucalgary.ca/People/adilger/               -- Dogbert
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/



This archive was generated by hypermail 2b29 : Sun Jul 15 2001 - 21:00:15 EST