From: Andrew Morton Cc: Phillip Hellewell Cc: Michael Halcrow Cc: Christoph Hellwig Signed-off-by: Andrew Morton --- fs/ecryptfs/mmap.c | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff -puN fs/ecryptfs/mmap.c~mark-address_space_operations-const-vs-ecryptfs-mmap-operations fs/ecryptfs/mmap.c --- devel/fs/ecryptfs/mmap.c~mark-address_space_operations-const-vs-ecryptfs-mmap-operations 2006-05-14 05:55:22.000000000 -0700 +++ devel-akpm/fs/ecryptfs/mmap.c 2006-05-14 05:55:22.000000000 -0700 @@ -216,7 +216,7 @@ int ecryptfs_do_readpage(struct file *fi char *page_data; struct page *lower_page = NULL; char *lower_page_data; - struct address_space_operations *lower_a_ops; + const struct address_space_operations *lower_a_ops; dentry = file->f_dentry; if (!ecryptfs_file_to_private(file)) { @@ -420,7 +420,7 @@ ecryptfs_write_inode_size_to_header(stru int rc = 0; struct page *header_page; char *header_virt; - struct address_space_operations *lower_a_ops; + const struct address_space_operations *lower_a_ops; u64 file_size; rc = ecryptfs_grab_and_map_lower_page(&header_page, &header_virt, @@ -538,7 +538,7 @@ process_new_file(struct ecryptfs_crypt_s struct file *file, struct inode *inode) { struct page *header_page; - struct address_space_operations *lower_a_ops; + const struct address_space_operations *lower_a_ops; struct inode *lower_inode; struct file *lower_file; char *header_virt; _