diff options
author | Trond Myklebust <trondmy@gmail.com> | 2018-10-05 10:27:20 -0400 |
---|---|---|
committer | J. Bruce Fields <bfields@redhat.com> | 2018-10-29 16:58:04 -0400 |
commit | a6482733bc98aa04b44c91e744bbcbfb29f8d3ee (patch) | |
tree | c66c2d0f57431d2b94daf4257c0fcd59eabe929d | |
parent | 437f91451349a94d581cb9a928fa3958153f0b71 (diff) |
NFS: Fix up a typo in nfs_dns_ent_put
call_rcu() needs to take a first argument of type (struct rcu_head *).
Fixes: fd497f1e40d9 ("NFS: Lockless DNS lookups")
Signed-off-by: Trond Myklebust <trond.myklebust@hammerspace.com>
Signed-off-by: J. Bruce Fields <bfields@redhat.com>
-rw-r--r-- | fs/nfs/dns_resolve.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/nfs/dns_resolve.c b/fs/nfs/dns_resolve.c index e93a5dc07c8c..a7d3df85736d 100644 --- a/fs/nfs/dns_resolve.c +++ b/fs/nfs/dns_resolve.c | |||
@@ -116,7 +116,7 @@ static void nfs_dns_ent_put(struct kref *ref) | |||
116 | struct nfs_dns_ent *item; | 116 | struct nfs_dns_ent *item; |
117 | 117 | ||
118 | item = container_of(ref, struct nfs_dns_ent, h.ref); | 118 | item = container_of(ref, struct nfs_dns_ent, h.ref); |
119 | call_rcu(item, nfs_dns_ent_free_rcu); | 119 | call_rcu(&item->rcu_head, nfs_dns_ent_free_rcu); |
120 | } | 120 | } |
121 | 121 | ||
122 | static struct cache_head *nfs_dns_ent_alloc(void) | 122 | static struct cache_head *nfs_dns_ent_alloc(void) |