From mboxrd@z Thu Jan 1 00:00:00 1970 From: "Josef 'Jeff' Sipek" Subject: [PATCH 02/35] fsstack: Remove unneeded wrapper Date: Mon, 4 Dec 2006 07:30:35 -0500 Message-ID: <11652354682199-git-send-email-jsipek@cs.sunysb.edu> References: <1165235468365-git-send-email-jsipek@cs.sunysb.edu> Cc: torvalds@osdl.org, akpm@osdl.org, hch@infradead.org, viro@ftp.linux.org.uk, linux-fsdevel@vger.kernel.org, mhalcrow@us.ibm.com Return-path: Received: from filer.fsl.cs.sunysb.edu ([130.245.126.2]:19679 "EHLO filer.fsl.cs.sunysb.edu") by vger.kernel.org with ESMTP id S936313AbWLDMgR (ORCPT ); Mon, 4 Dec 2006 07:36:17 -0500 To: linux-kernel@vger.kernel.org In-Reply-To: <1165235468365-git-send-email-jsipek@cs.sunysb.edu> Sender: linux-fsdevel-owner@vger.kernel.org List-Id: linux-fsdevel.vger.kernel.org From: Andrew Morton Remove unneeded wrapper. Cc: Josef "Jeff" Sipek Cc: Michael Halcrow Signed-off-by: Andrew Morton --- fs/stack.c | 10 ++++------ include/linux/fs_stack.h | 12 ++---------- 2 files changed, 6 insertions(+), 16 deletions(-) diff --git a/fs/stack.c b/fs/stack.c index 5f6f12d..03987f2 100644 --- a/fs/stack.c +++ b/fs/stack.c @@ -11,13 +11,13 @@ void fsstack_copy_inode_size(struct inod i_size_write(dst, i_size_read((struct inode *)src)); dst->i_blocks = src->i_blocks; } +EXPORT_SYMBOL_GPL(fsstack_copy_inode_size); /* copy all attributes; get_nlinks is optional way to override the i_nlink * copying */ -void __fsstack_copy_attr_all(struct inode *dest, - const struct inode *src, - int (*get_nlinks)(struct inode *)) +void fsstack_copy_attr_all(struct inode *dest, const struct inode *src, + int (*get_nlinks)(struct inode *)) { if (!get_nlinks) dest->i_nlink = src->i_nlink; @@ -34,6 +34,4 @@ void __fsstack_copy_attr_all(struct inod dest->i_blkbits = src->i_blkbits; dest->i_flags = src->i_flags; } - -EXPORT_SYMBOL_GPL(fsstack_copy_inode_size); -EXPORT_SYMBOL_GPL(__fsstack_copy_attr_all); +EXPORT_SYMBOL_GPL(fsstack_copy_attr_all); diff --git a/include/linux/fs_stack.h b/include/linux/fs_stack.h index 56b3e09..bb516ce 100644 --- a/include/linux/fs_stack.h +++ b/include/linux/fs_stack.h @@ -8,9 +8,8 @@ #include /* externs for fs/stack.c */ -extern void __fsstack_copy_attr_all(struct inode *dest, - const struct inode *src, - int (*get_nlinks)(struct inode *)); +extern void fsstack_copy_attr_all(struct inode *dest, const struct inode *src, + int (*get_nlinks)(struct inode *)); extern void fsstack_copy_inode_size(struct inode *dst, const struct inode *src); @@ -29,11 +28,4 @@ static inline void fsstack_copy_attr_tim dest->i_ctime = src->i_ctime; } -static inline void fsstack_copy_attr_all(struct inode *dest, - const struct inode *src) -{ - __fsstack_copy_attr_all(dest, src, NULL); -} - #endif /* _LINUX_FS_STACK_H */ - -- 1.4.3.3