Make afs_zap_data() static as it's only used in the file in which it is defined. Signed-off-by: David Howells <dhowells@xxxxxxxxxx> --- fs/afs/inode.c | 2 +- fs/afs/internal.h | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/fs/afs/inode.c b/fs/afs/inode.c index 281470fe1183..67ccfbab683c 100644 --- a/fs/afs/inode.c +++ b/fs/afs/inode.c @@ -568,7 +568,7 @@ struct inode *afs_iget(struct super_block *sb, struct key *key, * mark the data attached to an inode as obsolete due to a write on the server * - might also want to ditch all the outstanding writes and dirty pages */ -void afs_zap_data(struct afs_vnode *vnode) +static void afs_zap_data(struct afs_vnode *vnode) { _enter("{%llx:%llu}", vnode->fid.vid, vnode->fid.vnode); diff --git a/fs/afs/internal.h b/fs/afs/internal.h index 80255513e230..03487f1bef07 100644 --- a/fs/afs/internal.h +++ b/fs/afs/internal.h @@ -1017,7 +1017,6 @@ extern struct inode *afs_iget(struct super_block *, struct key *, struct afs_iget_data *, struct afs_status_cb *, struct afs_cb_interest *, struct afs_vnode *); -extern void afs_zap_data(struct afs_vnode *); extern bool afs_check_validity(struct afs_vnode *); extern int afs_validate(struct afs_vnode *, struct key *); extern int afs_getattr(const struct path *, struct kstat *, u32, unsigned int);