f2fs: remove unused inline_dentry_addr
authorChao Yu <chao2.yu@samsung.com>
Mon, 16 Feb 2015 08:15:44 +0000 (16:15 +0800)
committerJaegeuk Kim <jaegeuk@kernel.org>
Tue, 3 Mar 2015 17:58:44 +0000 (09:58 -0800)
inline_dentry_addr is introduced with inline dentry feature without being used,
now we do not need to keep it for any reason, so remove it.

Signed-off-by: Chao Yu <chao2.yu@samsung.com>
Signed-off-by: Jaegeuk Kim <jaegeuk@kernel.org>
fs/f2fs/f2fs.h

index 7fa3313ab0e27381b95d48b22da8315e605ef567..a978b655bacd3cad6b11061659d2854cfdd1d30c 100644 (file)
@@ -1290,12 +1290,6 @@ static inline int f2fs_has_inline_dentry(struct inode *inode)
        return is_inode_flag_set(F2FS_I(inode), FI_INLINE_DENTRY);
 }
 
-static inline void *inline_dentry_addr(struct page *page)
-{
-       struct f2fs_inode *ri = F2FS_INODE(page);
-       return (void *)&(ri->i_addr[1]);
-}
-
 static inline void f2fs_dentry_kunmap(struct inode *dir, struct page *page)
 {
        if (!f2fs_has_inline_dentry(dir))
This page took 0.025497 seconds and 5 git commands to generate.