From: Trond Myklebust <trond.myklebust@primarydata.com>
Date: Fri, 18 Apr 2014 18:43:58 +0000 (-0400)
Subject: NFSd: Remove 'inline' designation for free_client()
X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=4dd86e150f63a6c360783f163a979ec563e6d570;p=GitHub%2Fmoto-9609%2Fandroid_kernel_motorola_exynos9610.git

NFSd: Remove 'inline' designation for free_client()

It is large, it is used in more than one place, and it is not performance
critical. Let gcc figure out whether it should be inlined...

Signed-off-by: Trond Myklebust <trond.myklebust@primarydata.com>
Signed-off-by: J. Bruce Fields <bfields@redhat.com>
---

diff --git a/fs/nfsd/nfs4state.c b/fs/nfsd/nfs4state.c
index 32b699bebb9c..841495aa9170 100644
--- a/fs/nfsd/nfs4state.c
+++ b/fs/nfsd/nfs4state.c
@@ -1093,7 +1093,7 @@ static struct nfs4_client *alloc_client(struct xdr_netobj name)
 	return clp;
 }
 
-static inline void
+static void
 free_client(struct nfs4_client *clp)
 {
 	struct nfsd_net __maybe_unused *nn = net_generic(clp->net, nfsd_net_id);