From: NeilBrown These are both called from two places close together. I could rearrange that code so there is only one call site, but just removing the 'inline' is probably best. Signed-off-by: Neil Brown Signed-off-by: Andrew Morton --- fs/nfsd/vfs.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff -puN fs/nfsd/vfs.c~nfsd-remove-inline-from-a-couple-of-large-nfs-functions fs/nfsd/vfs.c --- devel/fs/nfsd/vfs.c~nfsd-remove-inline-from-a-couple-of-large-nfs-functions 2006-01-12 19:54:14.000000000 -0800 +++ devel-akpm/fs/nfsd/vfs.c 2006-01-12 19:54:14.000000000 -0800 @@ -815,7 +815,7 @@ nfsd_read_actor(read_descriptor_t *desc, return size; } -static inline int +static int nfsd_vfs_read(struct svc_rqst *rqstp, struct svc_fh *fhp, struct file *file, loff_t offset, struct kvec *vec, int vlen, unsigned long *count) { @@ -879,7 +879,7 @@ static void kill_suid(struct dentry *den mutex_unlock(&dentry->d_inode->i_mutex); } -static inline int +static int nfsd_vfs_write(struct svc_rqst *rqstp, struct svc_fh *fhp, struct file *file, loff_t offset, struct kvec *vec, int vlen, unsigned long cnt, int *stablep) _