kill unused invalidate_inode_pages helper
authorChristoph Hellwig <hch@lst.de>
Tue, 26 Jan 2010 16:27:20 +0000 (17:27 +0100)
committerAl Viro <viro@zeniv.linux.org.uk>
Wed, 3 Mar 2010 19:07:55 +0000 (14:07 -0500)
No one is calling this anymore as everyone has switched to
invalidate_mapping_pages long time ago.  Also update a few
references to it in comments.  nfs has two more, but I can't
easily figure what they are actually referring to, so I left
them as-is.

Signed-off-by: Christoph Hellwig <hch@lst.de>
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
drivers/usb/gadget/f_mass_storage.c
drivers/usb/gadget/file_storage.c
include/linux/fs.h
mm/filemap.c

index a37640eba4344b144cc6d5747d155f55ec6f8239..77fcd1b697e8d52d584de7872ac1423d03d7409c 100644 (file)
@@ -1041,7 +1041,7 @@ static void invalidate_sub(struct fsg_lun *curlun)
        unsigned long   rc;
 
        rc = invalidate_mapping_pages(inode->i_mapping, 0, -1);
-       VLDBG(curlun, "invalidate_inode_pages -> %ld\n", rc);
+       VLDBG(curlun, "invalidate_mapping_pages -> %ld\n", rc);
 }
 
 static int do_verify(struct fsg_common *common)
index 29dfb0277ffbf5c9d6adcd80d2b68b274401c17d..7dcdbda49cacf4f510e14ed3103e504bbe0f0b19 100644 (file)
@@ -1448,7 +1448,7 @@ static void invalidate_sub(struct fsg_lun *curlun)
        unsigned long   rc;
 
        rc = invalidate_mapping_pages(inode->i_mapping, 0, -1);
-       VLDBG(curlun, "invalidate_inode_pages -> %ld\n", rc);
+       VLDBG(curlun, "invalidate_mapping_pages -> %ld\n", rc);
 }
 
 static int do_verify(struct fsg_dev *fsg)
index aa76dae673eb34bc9786e0466dc6a4939b28de55..d443c9dd3caa6bbd2395e736457bd2f07817e3e8 100644 (file)
@@ -2058,12 +2058,6 @@ extern int invalidate_inodes(struct super_block *);
 unsigned long invalidate_mapping_pages(struct address_space *mapping,
                                        pgoff_t start, pgoff_t end);
 
-static inline unsigned long __deprecated
-invalidate_inode_pages(struct address_space *mapping)
-{
-       return invalidate_mapping_pages(mapping, 0, ~0UL);
-}
-
 static inline void invalidate_remote_inode(struct inode *inode)
 {
        if (S_ISREG(inode->i_mode) || S_ISDIR(inode->i_mode) ||
index 698ea80f21022bf709dacc1101c614327109d828..148b52a5bb7e79e81aa1a1126baa9bafa97e073b 100644 (file)
@@ -1117,7 +1117,7 @@ readpage:
                        if (!PageUptodate(page)) {
                                if (page->mapping == NULL) {
                                        /*
-                                        * invalidate_inode_pages got it
+                                        * invalidate_mapping_pages got it
                                         */
                                        unlock_page(page);
                                        page_cache_release(page);