diff options
author | Fabian Frederick <fabf@skynet.be> | 2015-05-24 15:19:41 (GMT) |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2015-06-23 22:02:00 (GMT) |
commit | b57c2cb9ea1a02c2ae08e16de8c20cc13ffbf85a (patch) | |
tree | 22dd8d727b5797964bd0fdd7bc06218802a517d3 /fs/ext2/dir.c | |
parent | e5e6e97fe0f63b374e44a22f5a5c2d151c7fa8c5 (diff) | |
download | linux-b57c2cb9ea1a02c2ae08e16de8c20cc13ffbf85a.tar.xz |
pagemap.h: move dir_pages() over there
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>
Diffstat (limited to 'fs/ext2/dir.c')
-rw-r--r-- | fs/ext2/dir.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/fs/ext2/dir.c b/fs/ext2/dir.c index 796b491..0c6638b 100644 --- a/fs/ext2/dir.c +++ b/fs/ext2/dir.c @@ -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. |