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 --- 25/fs/ecryptfs/mmap.c~mark-address_space_operations-const-vs-ecryptfs-mmap-operations Fri May 26 13:48:07 2006 +++ 25-akpm/fs/ecryptfs/mmap.c Fri May 26 13:48:07 2006 @@ -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; _