* [PATCH] fs/inode.c cleanup: make destroy_inode static
@ 2010-10-12 13:47 Lin Ming
0 siblings, 0 replies; only message in thread
From: Lin Ming @ 2010-10-12 13:47 UTC (permalink / raw)
To: Al Viro; +Cc: linux-fsdevel, linux-kernel
destroy_inode is only used in fs/inode.c
Signed-off-by: Lin Ming <lin@ming.vg>
---
fs/inode.c | 2 +-
include/linux/fs.h | 1 -
2 files changed, 1 insertions(+), 2 deletions(-)
diff --git a/fs/inode.c b/fs/inode.c
index 8646433..3368abd 100644
--- a/fs/inode.c
+++ b/fs/inode.c
@@ -235,7 +235,7 @@ void __destroy_inode(struct inode *inode)
}
EXPORT_SYMBOL(__destroy_inode);
-void destroy_inode(struct inode *inode)
+static void destroy_inode(struct inode *inode)
{
__destroy_inode(inode);
if (inode->i_sb->s_op->destroy_inode)
diff --git a/include/linux/fs.h b/include/linux/fs.h
index 63d069b..2343eaf 100644
--- a/include/linux/fs.h
+++ b/include/linux/fs.h
@@ -2184,7 +2184,6 @@ extern void unlock_new_inode(struct inode *);
extern void __iget(struct inode * inode);
extern void iget_failed(struct inode *);
extern void end_writeback(struct inode *);
-extern void destroy_inode(struct inode *);
extern void __destroy_inode(struct inode *);
extern struct inode *new_inode(struct super_block *);
extern int should_remove_suid(struct dentry *);
--
1.7.2.3
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2010-10-12 13:47 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-10-12 13:47 [PATCH] fs/inode.c cleanup: make destroy_inode static Lin Ming
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).