The patch titled fix warnings in revoked_inode.c has been added to the -mm tree. Its filename is fs-introduce-write_begin-write_end-and-perform_write-aops-revoke-fix.patch *** Remember to use Documentation/SubmitChecklist when testing your code *** See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find out what to do about this ------------------------------------------------------ Subject: fix warnings in revoked_inode.c From: Miklos Szeredi <mszeredi@xxxxxxx> Fix following warnings introduced by fs-introduce-write_begin-write_end-and-perform_write-aops-revoke.patch fs/revoked_inode.c:381: warning: â??revoked_write_beginâ?? defined but not used fs/revoked_inode.c:388: warning: â??revoked_write_endâ?? defined but not used Signed-off-by: Miklos Szeredi <mszeredi@xxxxxxx> Cc: Nick Piggin <npiggin@xxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- fs/revoked_inode.c | 16 ++-------------- 1 files changed, 2 insertions(+), 14 deletions(-) diff -puN fs/revoked_inode.c~fs-introduce-write_begin-write_end-and-perform_write-aops-revoke-fix fs/revoked_inode.c --- a/fs/revoked_inode.c~fs-introduce-write_begin-write_end-and-perform_write-aops-revoke-fix +++ a/fs/revoked_inode.c @@ -372,18 +372,6 @@ static int revoked_writepage(struct page return -EIO; } -static int revoked_prepare_write(struct file *file, struct page *page, - unsigned from, unsigned to) -{ - return -EIO; -} - -static int revoked_commit_write(struct file *file, struct page *page, - unsigned from, unsigned to) -{ - return -EIO; -} - static int revoked_write_begin(struct file *file, struct address_space *mapping, loff_t pos, unsigned len, unsigned flags, struct page **pagep, void **fsdata) @@ -408,8 +396,8 @@ static ssize_t revoked_direct_IO(int rw, static const struct address_space_operations revoked_aops = { .readpage = revoked_readpage, .writepage = revoked_writepage, - .prepare_write = revoked_prepare_write, - .commit_write = revoked_commit_write, + .write_begin = revoked_write_begin, + .write_end = revoked_write_end, .direct_IO = revoked_direct_IO, }; _ Patches currently in -mm which might be from mszeredi@xxxxxxx are fuse-convert-to-new-aops.patch uml-remove-unnecessary-hostfs_getattr.patch ext2-show-all-mount-options.patch ext3-show-all-mount-options.patch ext4-show-all-mount-options.patch vfs-check-nanoseconds-in-utimensat.patch fix-execute-checking-in-permission.patch exec-remove-unnecessary-check-for-mnt_noexec.patch clean-out-unused-code-in-dentry-pruning.patch unprivileged-mounts-add-user-mounts-to-the-kernel.patch unprivileged-mounts-allow-unprivileged-umount.patch unprivileged-mounts-account-user-mounts.patch unprivileged-mounts-propagate-error-values-from-clone_mnt.patch unprivileged-mounts-allow-unprivileged-bind-mounts.patch unprivileged-mounts-put-declaration-of-put_filesystem-in-fsh.patch unprivileged-mounts-allow-unprivileged-mounts.patch unprivileged-mounts-allow-unprivileged-mounts-fix-subtype-handling.patch unprivileged-mounts-allow-unprivileged-fuse-mounts.patch unprivileged-mounts-propagation-inherit-owner-from-parent.patch unprivileged-mounts-propagation-inherit-owner-from-parent-fix-for-git-audit.patch unprivileged-mounts-add-no-submounts-flag.patch fuse-update-backing_dev_info-congestion-state.patch fuse-fix-reserved-request-wake-up.patch fuse-add-reference-counting-to-fuse_file.patch fuse-truncate-on-spontaneous-size-change.patch fuse-fix-page-invalidation.patch fuse-set-i_nlink-to-sane-value-after-mount.patch fuse-refresh-stale-attributes-in-fuse_permission.patch fuse-fix-permission-checking-on-sticky-directories.patch fuse-fix-permission-checking-on-sticky-directories-fix.patch fuse-fix-permission-checking-on-sticky-directories-fix-setting-i_mode-bits.patch fuse-cleanup-in-release.patch fuse-no-abort-on-interrupt.patch fuse-no-enoent-from-fuse-device-read.patch fuse-clean-up-execute-permission-checking.patch fs-introduce-write_begin-write_end-and-perform_write-aops-revoke-fix.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