The patch titled reiserfs: use generic_file_open for open() checks has been added to the -mm tree. Its filename is reiserfs-use-generic_file_open-for-open-checks.patch See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find out what to do about this ------------------------------------------------------ Subject: reiserfs: use generic_file_open for open() checks From: Jeff Mahoney <jeffm@xxxxxxxx> The other common disk-based file systems (I checked ext[23], xfs, jfs) check to ensure that opens of files > 2 GB fail unless O_LARGEFILE is specified. They check via generic_file_open or their own open routine. ReiserFS doesn't have an f_op->open defined, and as such, it's possible to open files > 2 GB without O_LARGEFILE. This patch adds the f_op->open member to conform with the expected behavior. Signed-off-by: Jeff Mahoney <jeffm@xxxxxxxx> Cc: <reiserfs-dev@xxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- fs/reiserfs/file.c | 1 + 1 files changed, 1 insertion(+) diff -puN fs/reiserfs/file.c~reiserfs-use-generic_file_open-for-open-checks fs/reiserfs/file.c --- 25/fs/reiserfs/file.c~reiserfs-use-generic_file_open-for-open-checks Tue Jun 20 17:03:18 2006 +++ 25-akpm/fs/reiserfs/file.c Tue Jun 20 17:03:19 2006 @@ -1565,6 +1565,7 @@ const struct file_operations reiserfs_fi .write = reiserfs_file_write, .ioctl = reiserfs_ioctl, .mmap = generic_file_mmap, + .open = generic_file_open, .release = reiserfs_file_release, .fsync = reiserfs_sync_file, .sendfile = generic_file_sendfile, _ Patches currently in -mm which might be from jeffm@xxxxxxxx are reiserfs-fix-is_reusable-bitmap-check-to-not-traverse-the-bitmap-info-array.patch reiserfs-clean-up-bitmap-block-buffer-head-references.patch reiserfs-reorganize-bitmap-loading-functions.patch reiserfs-on-demand-bitmap-loading.patch reiserfs-use-generic_file_open-for-open-checks.patch lib-add-idr_replace.patch lib-add-idr_replace-tidy.patch dm-fix-idr-minor-allocation.patch dm-move-idr_pre_get.patch dm-change-minor_lock-to-spinlock.patch dm-add-dmf_freeing.patch dm-fix-mapped-device-ref-counting.patch dm-add-module-ref-counting.patch dm-fix-block-device-initialisation.patch - To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html