[PATCH] vfs_read/vfs_write small bug fix (2.5.29)

From: Badari Pulavarty (pbadari@us.ibm.com)
Date: Mon Jul 29 2002 - 13:25:45 EST


Hi,

Here is a patch to fix small bug in for vfs_read/vfs_write.

Please apply.

Thanks,
Badari

--- linux-2.5.29/fs/read_write.c Mon Jul 29 11:07:32 2002
+++ linux.new/fs/read_write.c Mon Jul 29 11:07:57 2002
@@ -184,7 +184,7 @@
                 return -EBADF;
         if (!file->f_op || !file->f_op->read)
                 return -EINVAL;
- if (pos < 0)
+ if (*pos < 0)
                 return -EINVAL;
 
         ret = locks_verify_area(FLOCK_VERIFY_READ, inode, file, *pos, count);
@@ -209,7 +209,7 @@
                 return -EBADF;
         if (!file->f_op || !file->f_op->write)
                 return -EINVAL;
- if (pos < 0)
+ if (*pos < 0)
                 return -EINVAL;
 
         ret = locks_verify_area(FLOCK_VERIFY_WRITE, inode, file, *pos, count);
-
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 : Tue Jul 30 2002 - 14:00:33 EST