pagemap.h: move dir_pages() over there
authorFabian Frederick <fabf@skynet.be>
Sun, 24 May 2015 15:19:41 +0000 (17:19 +0200)
committerAl Viro <viro@zeniv.linux.org.uk>
Tue, 23 Jun 2015 22:02:00 +0000 (18:02 -0400)
That function was declared in a lot of filesystems to calculate
directory pages.

Signed-off-by: Fabian Frederick <fabf@skynet.be>
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
fs/exofs/dir.c
fs/ext2/dir.c
fs/freevxfs/vxfs_lookup.c
fs/minix/dir.c
fs/nilfs2/dir.c
fs/qnx6/dir.c
fs/sysv/dir.c
include/linux/pagemap.h

index 4deb0b05b011266f344d7647a9cd004e085e4266..e5bb2abf77f9adb1e11508cec2a8fea65934bac4 100644 (file)
@@ -44,12 +44,6 @@ static inline void exofs_put_page(struct page *page)
        page_cache_release(page);
 }
 
-/* Accesses dir's inode->i_size must be called under inode lock */
-static inline unsigned long dir_pages(struct inode *inode)
-{
-       return (inode->i_size + PAGE_CACHE_SIZE - 1) >> PAGE_CACHE_SHIFT;
-}
-
 static unsigned exofs_last_byte(struct inode *inode, unsigned long page_nr)
 {
        loff_t last_byte = inode->i_size;
index 796b491e69785e4b703b7c3a0cbc7e97d3510a40..0c6638b40f2176b602f70ef465968b3a0dddc292 100644 (file)
@@ -70,11 +70,6 @@ static inline void ext2_put_page(struct page *page)
        page_cache_release(page);
 }
 
-static inline unsigned long dir_pages(struct inode *inode)
-{
-       return (inode->i_size+PAGE_CACHE_SIZE-1)>>PAGE_CACHE_SHIFT;
-}
-
 /*
  * Return the offset into page `page_nr' of the last valid
  * byte in that page, plus one.
index 99c7f0a37af4435105064b1b1a1f82d6618130bb..484b32d3234ad9823394f55064e8b8e2ca237b02 100644 (file)
@@ -61,13 +61,6 @@ const struct file_operations vxfs_dir_operations = {
        .iterate =              vxfs_readdir,
 };
 
-static inline u_long
-dir_pages(struct inode *inode)
-{
-       return (inode->i_size + PAGE_CACHE_SIZE - 1) >> PAGE_CACHE_SHIFT;
-}
 static inline u_long
 dir_blocks(struct inode *ip)
 {
index 118e4e7bc9351cb3563a0ce85798301c83f0213e..d19ac258105aadb44382650de7b50504b6eaf237 100644 (file)
@@ -45,11 +45,6 @@ minix_last_byte(struct inode *inode, unsigned long page_nr)
        return last_byte;
 }
 
-static inline unsigned long dir_pages(struct inode *inode)
-{
-       return (inode->i_size+PAGE_CACHE_SIZE-1)>>PAGE_CACHE_SHIFT;
-}
-
 static int dir_commit_chunk(struct page *page, loff_t pos, unsigned len)
 {
        struct address_space *mapping = page->mapping;
index 0ee0bed3649baf1f8974c15e42916294ab55ff6c..6b8b92b19cec9c868992fd089a00fc74f669fbdc 100644 (file)
@@ -61,11 +61,6 @@ static inline void nilfs_put_page(struct page *page)
        page_cache_release(page);
 }
 
-static inline unsigned long dir_pages(struct inode *inode)
-{
-       return (inode->i_size+PAGE_CACHE_SIZE-1)>>PAGE_CACHE_SHIFT;
-}
-
 /*
  * Return the offset into page `page_nr' of the last valid
  * byte in that page, plus one.
index 8d64bb5366bf0721bcde9416d5ff3d356c8a0d9b..e1f37278cf97bfc0e7973c2f860062cc02c70cbe 100644 (file)
@@ -32,11 +32,6 @@ static struct page *qnx6_get_page(struct inode *dir, unsigned long n)
        return page;
 }
 
-static inline unsigned long dir_pages(struct inode *inode)
-{
-       return (inode->i_size+PAGE_CACHE_SIZE-1)>>PAGE_CACHE_SHIFT;
-}
-
 static unsigned last_entry(struct inode *inode, unsigned long page_nr)
 {
        unsigned long last_byte = inode->i_size;
index 8f3555f00c54276aa1f0e1d443b7dd375850bf23..63c1bcb224ee886e5261b5b3a9867a581f872f01 100644 (file)
@@ -33,11 +33,6 @@ static inline void dir_put_page(struct page *page)
        page_cache_release(page);
 }
 
-static inline unsigned long dir_pages(struct inode *inode)
-{
-       return (inode->i_size+PAGE_CACHE_SIZE-1)>>PAGE_CACHE_SHIFT;
-}
-
 static int dir_commit_chunk(struct page *page, loff_t pos, unsigned len)
 {
        struct address_space *mapping = page->mapping;
index 4b3736f7065c496601011b9474368238f9af923a..808942d3106260231b5d4d870c4be9eab52e5429 100644 (file)
@@ -670,4 +670,10 @@ static inline int add_to_page_cache(struct page *page,
        return error;
 }
 
+static inline unsigned long dir_pages(struct inode *inode)
+{
+       return (unsigned long)(inode->i_size + PAGE_CACHE_SIZE - 1) >>
+                              PAGE_CACHE_SHIFT;
+}
+
 #endif /* _LINUX_PAGEMAP_H */