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 | |
| parent | e57aed77ad48d28ac617ba157ad2f665f5301b30 (diff) | |
| download | olio-linux-3.10-2da8ca26c6bfad685bfddf39728eac1c83906aa9.tar.xz olio-linux-3.10-2da8ca26c6bfad685bfddf39728eac1c83906aa9.zip  | |
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>
| -rw-r--r-- | fs/nfsd/nfs4idmap.c | 4 | ||||
| -rw-r--r-- | include/linux/sunrpc/cache.h | 3 | ||||
| -rw-r--r-- | net/sunrpc/cache.c | 2 | 
3 files changed, 5 insertions, 4 deletions
diff --git a/fs/nfsd/nfs4idmap.c b/fs/nfsd/nfs4idmap.c index 5b398421b05..e9012ad36ac 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)  }  static void -warn_no_idmapd(struct cache_detail *detail) +warn_no_idmapd(struct cache_detail *detail, int has_died)  {  	printk("nfsd: nfsv4 idmapping failing: has idmapd %s?\n", -			detail->last_close? "died" : "not been started"); +			has_died ? "died" : "not been started");  } diff --git a/include/linux/sunrpc/cache.h b/include/linux/sunrpc/cache.h index 2d8b211b932..3d1fad22185 100644 --- a/include/linux/sunrpc/cache.h +++ b/include/linux/sunrpc/cache.h @@ -79,6 +79,8 @@ struct cache_detail {  	int			(*cache_show)(struct seq_file *m,  					      struct cache_detail *cd,  					      struct cache_head *h); +	void			(*warn_no_listener)(struct cache_detail *cd, +					      int has_died);  	struct cache_head *	(*alloc)(void);  	int			(*match)(struct cache_head *orig, struct cache_head *new); @@ -102,7 +104,6 @@ struct cache_detail {  	atomic_t		readers;		/* how many time is /chennel open */  	time_t			last_close;		/* if no readers, when did last close */  	time_t			last_warn;		/* when we last warned about no readers */ -	void			(*warn_no_listener)(struct cache_detail *cd);  }; diff --git a/net/sunrpc/cache.c b/net/sunrpc/cache.c index ff0c23053d2..8ede4a6f384 100644 --- a/net/sunrpc/cache.c +++ b/net/sunrpc/cache.c @@ -1020,7 +1020,7 @@ static void warn_no_listener(struct cache_detail *detail)  	if (detail->last_warn != detail->last_close) {  		detail->last_warn = detail->last_close;  		if (detail->warn_no_listener) -			detail->warn_no_listener(detail); +			detail->warn_no_listener(detail, detail->last_close != 0);  	}  }  |