The patch titled revoke: support for ext2 and ext3 has been added to the -mm tree. Its filename is revoke-support-for-ext2-and-ext3.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: revoke: support for ext2 and ext3 From: Pekka Enberg <penberg@xxxxxxxxxxxxxx> Add revoke support to ext2 and ext3 by wiring f_ops->revoke with generic_file_revoke. Signed-off-by: Pekka Enberg <penberg@xxxxxxxxxxxxxx> Cc: Christoph Hellwig <hch@xxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- fs/ext2/file.c | 1 + fs/ext3/file.c | 1 + 2 files changed, 2 insertions(+) diff -puN fs/ext2/file.c~revoke-support-for-ext2-and-ext3 fs/ext2/file.c --- a/fs/ext2/file.c~revoke-support-for-ext2-and-ext3 +++ a/fs/ext2/file.c @@ -59,6 +59,7 @@ const struct file_operations ext2_file_o .sendfile = generic_file_sendfile, .splice_read = generic_file_splice_read, .splice_write = generic_file_splice_write, + .revoke = generic_file_revoke, }; #ifdef CONFIG_EXT2_FS_XIP diff -puN fs/ext3/file.c~revoke-support-for-ext2-and-ext3 fs/ext3/file.c --- a/fs/ext3/file.c~revoke-support-for-ext2-and-ext3 +++ a/fs/ext3/file.c @@ -123,6 +123,7 @@ const struct file_operations ext3_file_o .sendfile = generic_file_sendfile, .splice_read = generic_file_splice_read, .splice_write = generic_file_splice_write, + .revoke = generic_file_revoke, }; const struct inode_operations ext3_file_inode_operations = { _ Patches currently in -mm which might be from penberg@xxxxxxxxxxxxxx are slab-introduce-krealloc.patch slab-introduce-krealloc-fix.patch unionfs-fix-slab-abuses-with-krealloc.patch slab-ensure-cache_alloc_refill-terminates.patch module-use-krealloc.patch slab-use-cpu_lock_.patch revoke-special-mmap-handling.patch revoke-core-code.patch revoke-support-for-ext2-and-ext3.patch revoke-add-documentation.patch revoke-wire-up-i386-system-calls.patch slab-leaks3-default-y.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