The patch titled Subject: befs: replace typedef befs_inode_info by structure has been added to the -mm tree. Its filename is befs-replace-typedef-befs_inode_info-by-structure.patch This patch should soon appear at http://ozlabs.org/~akpm/mmots/broken-out/befs-replace-typedef-befs_inode_info-by-structure.patch and later at http://ozlabs.org/~akpm/mmotm/broken-out/befs-replace-typedef-befs_inode_info-by-structure.patch Before you just go and hit "reply", please: a) Consider who else should be cc'ed b) Prefer to cc a suitable mailing list as well c) Ideally: find the original patch on the mailing list and do a reply-to-all to that, adding suitable additional cc's *** Remember to use Documentation/SubmitChecklist when testing your code *** The -mm tree is included into linux-next and is updated there every 3-4 working days ------------------------------------------------------ From: Fabian Frederick <fabf@xxxxxxxxx> Subject: befs: replace typedef befs_inode_info by structure See Documentation/CodingStyle Signed-off-by: Fabian Frederick <fabf@xxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- fs/befs/befs.h | 7 +++---- fs/befs/linuxvfs.c | 7 ++++--- 2 files changed, 7 insertions(+), 7 deletions(-) diff -puN fs/befs/befs.h~befs-replace-typedef-befs_inode_info-by-structure fs/befs/befs.h --- a/fs/befs/befs.h~befs-replace-typedef-befs_inode_info-by-structure +++ a/fs/befs/befs.h @@ -56,7 +56,7 @@ struct befs_sb_info { struct nls_table *nls; }; -typedef struct befs_inode_info { +struct befs_inode_info { u32 i_flags; u32 i_type; @@ -70,8 +70,7 @@ typedef struct befs_inode_info { } i_data; struct inode vfs_inode; - -} befs_inode_info; +}; enum befs_err { BEFS_OK, @@ -110,7 +109,7 @@ BEFS_SB(const struct super_block *super) return (struct befs_sb_info *) super->s_fs_info; } -static inline befs_inode_info * +static inline struct befs_inode_info * BEFS_I(const struct inode *inode) { return list_entry(inode, struct befs_inode_info, vfs_inode); diff -puN fs/befs/linuxvfs.c~befs-replace-typedef-befs_inode_info-by-structure fs/befs/linuxvfs.c --- a/fs/befs/linuxvfs.c~befs-replace-typedef-befs_inode_info-by-structure +++ a/fs/befs/linuxvfs.c @@ -305,7 +305,7 @@ static struct inode *befs_iget(struct su struct buffer_head *bh = NULL; befs_inode *raw_inode = NULL; struct befs_sb_info *befs_sb = BEFS_SB(sb); - befs_inode_info *befs_ino = NULL; + struct befs_inode_info *befs_ino = NULL; struct inode *inode; long ret = -EIO; @@ -471,7 +471,7 @@ static void * befs_follow_link(struct dentry *dentry, struct nameidata *nd) { struct super_block *sb = dentry->d_sb; - befs_inode_info *befs_ino = BEFS_I(dentry->d_inode); + struct befs_inode_info *befs_ino = BEFS_I(dentry->d_inode); befs_data_stream *data = &befs_ino->i_data.ds; befs_off_t len = data->size; char *link; @@ -501,7 +501,8 @@ befs_follow_link(struct dentry *dentry, static void * befs_fast_follow_link(struct dentry *dentry, struct nameidata *nd) { - befs_inode_info *befs_ino = BEFS_I(dentry->d_inode); + struct befs_inode_info *befs_ino = BEFS_I(dentry->d_inode); + nd_set_link(nd, befs_ino->i_data.symlink); return NULL; } _ Patches currently in -mm which might be from fabf@xxxxxxxxx are fs-ext4-fsyncc-generic_file_fsync-call-based-on-barrier-flag.patch mm-vmalloc-fix-possible-exhaustion-of-vmalloc-space-caused-by-vm_map_ram-allocator.patch mm-vmalloc-occupy-newly-allocated-vmap-block-just-after-allocation.patch mm-vmalloc-get-rid-of-dirty-bitmap-inside-vmap_block-structure.patch befs-replace-typedef-befs_mount_options-by-structure.patch befs-replace-typedef-befs_sb_info-by-structure.patch befs-replace-typedef-befs_inode_info-by-structure.patch fs-hfsplus-move-xattr_name-allocation-in-hfsplus_getxattr.patch fs-hfsplus-move-xattr_name-allocation-in-hfsplus_setxattr.patch fs-hfsplus-atomically-set-inode-i_flags.patch fs-hfsplus-use-bool-instead-of-int-for-is_known_namespace-return-value.patch fs-hfsplus-replace-if-bug-by-bug_on.patch adfs-returning-correct-return-values.patch fs-affs-use-affs_mount-prefix-for-mount-options.patch fs-affs-affsh-add-mount-option-manipulation-macros.patch fs-affs-superc-use-affs_set_opt.patch fs-affs-use-affs_test_opt.patch affs-kstrdup-memory-handling.patch affs-kstrdup-memory-handling-fix.patch linux-next.patch -- To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html