diff options
author | Adrian Bunk <bunk@stusta.de> | 2007-05-08 00:27:22 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-05-08 11:15:05 -0700 |
commit | e5f00f42f35e6f4699f105a3bd56874847cbf72f (patch) | |
tree | ac4e5c0a9fbafceacf5e78281bab508ba03e5044 | |
parent | c6b40d16d1cfa1a01158049bb887a9bbe48ef7ba (diff) | |
download | op-kernel-dev-e5f00f42f35e6f4699f105a3bd56874847cbf72f.zip op-kernel-dev-e5f00f42f35e6f4699f105a3bd56874847cbf72f.tar.gz |
make remove_inode_dquot_ref() static
remove_inode_dquot_ref() can now become static.
Signed-off-by: Adrian Bunk <bunk@stusta.de>
Acked-by: Jan Kara <jack@suse.cz>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
-rw-r--r-- | fs/dquot.c | 3 | ||||
-rw-r--r-- | include/linux/quotaops.h | 3 |
2 files changed, 2 insertions, 4 deletions
@@ -721,7 +721,8 @@ static inline int dqput_blocks(struct dquot *dquot) /* Remove references to dquots from inode - add dquot to list for freeing if needed */ /* We can't race with anybody because we hold dqptr_sem for writing... */ -int remove_inode_dquot_ref(struct inode *inode, int type, struct list_head *tofree_head) +static int remove_inode_dquot_ref(struct inode *inode, int type, + struct list_head *tofree_head) { struct dquot *dquot = inode->i_dquot[type]; diff --git a/include/linux/quotaops.h b/include/linux/quotaops.h index 90c23f6..5110201 100644 --- a/include/linux/quotaops.h +++ b/include/linux/quotaops.h @@ -37,9 +37,6 @@ extern int dquot_release(struct dquot *dquot); extern int dquot_commit_info(struct super_block *sb, int type); extern int dquot_mark_dquot_dirty(struct dquot *dquot); -int remove_inode_dquot_ref(struct inode *inode, int type, - struct list_head *tofree_head); - extern int vfs_quota_on(struct super_block *sb, int type, int format_id, char *path); extern int vfs_quota_on_mount(struct super_block *sb, char *qf_name, int format_id, int type); |