diff options
author | Trond Myklebust <Trond.Myklebust@netapp.com> | 2009-08-09 15:14:26 -0400 |
---|---|---|
committer | Trond Myklebust <Trond.Myklebust@netapp.com> | 2009-08-09 15:14:26 -0400 |
commit | 2da8ca26c6bfad685bfddf39728eac1c83906aa9 (patch) | |
tree | 77d0d4ed305009bd5bf82b1456d4ed5ab1db5002 /fs/nfsd/nfs4idmap.c | |
parent | e57aed77ad48d28ac617ba157ad2f665f5301b30 (diff) |
NFSD: Clean up the idmapper warning...
What part of 'internal use' is so hard to understand?
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>
Diffstat (limited to 'fs/nfsd/nfs4idmap.c')
-rw-r--r-- | fs/nfsd/nfs4idmap.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/nfsd/nfs4idmap.c b/fs/nfsd/nfs4idmap.c index 5b398421b051..e9012ad36ac0 100644 --- a/fs/nfsd/nfs4idmap.c +++ b/fs/nfsd/nfs4idmap.c | |||
@@ -175,10 +175,10 @@ idtoname_show(struct seq_file *m, struct cache_detail *cd, struct cache_head *h) | |||
175 | } | 175 | } |
176 | 176 | ||
177 | static void | 177 | static void |
178 | warn_no_idmapd(struct cache_detail *detail) | 178 | warn_no_idmapd(struct cache_detail *detail, int has_died) |
179 | { | 179 | { |
180 | printk("nfsd: nfsv4 idmapping failing: has idmapd %s?\n", | 180 | printk("nfsd: nfsv4 idmapping failing: has idmapd %s?\n", |
181 | detail->last_close? "died" : "not been started"); | 181 | has_died ? "died" : "not been started"); |
182 | } | 182 | } |
183 | 183 | ||
184 | 184 | ||