linux-nfs.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: "J. Bruce Fields" <bfields@fieldses.org>
To: bjschuma@netapp.com
Cc: linux-nfs@vger.kernel.org
Subject: Re: [PATCH] NFSD: Call nfsd4_init_slabs() from init_nfsd()
Date: Tue, 1 Nov 2011 15:05:23 -0400	[thread overview]
Message-ID: <20111101190523.GA1891@fieldses.org> (raw)
In-Reply-To: <1320171487-13966-1-git-send-email-bjschuma@netapp.com>

On Tue, Nov 01, 2011 at 02:18:07PM -0400, bjschuma@netapp.com wrote:
> From: Bryan Schumaker <bjschuma@netapp.com>
> 
> init_nfsd() was calling free_slabs() during cleanup code, but the call
> to init_slabs() was hidden in nfsd4_state_init().  This could be
> confusing to people unfamiliar with the code.

Good idea.  But: while you're at it, since you just removed the only
possible error return from nfs4_state_init(), how about going ahead and
making that a void return.  Probably in the same patch.--b.

> 
> Signed-off-by: Bryan Schumaker <bjschuma@netapp.com>
> ---
>  fs/nfsd/nfs4state.c |    5 +----
>  fs/nfsd/nfsctl.c    |    6 +++++-
>  fs/nfsd/nfsd.h      |    2 ++
>  3 files changed, 8 insertions(+), 5 deletions(-)
> 
> diff --git a/fs/nfsd/nfs4state.c b/fs/nfsd/nfs4state.c
> index 47e94e3..765b292 100644
> --- a/fs/nfsd/nfs4state.c
> +++ b/fs/nfsd/nfs4state.c
> @@ -2301,7 +2301,7 @@ nfsd4_free_slabs(void)
>  	nfsd4_free_slab(&deleg_slab);
>  }
>  
> -static int
> +int
>  nfsd4_init_slabs(void)
>  {
>  	openowner_slab = kmem_cache_create("nfsd4_openowners",
> @@ -4401,9 +4401,6 @@ nfs4_state_init(void)
>  {
>  	int i, status;
>  
> -	status = nfsd4_init_slabs();
> -	if (status)
> -		return status;
>  	for (i = 0; i < CLIENT_HASH_SIZE; i++) {
>  		INIT_LIST_HEAD(&conf_id_hashtbl[i]);
>  		INIT_LIST_HEAD(&conf_str_hashtbl[i]);
> diff --git a/fs/nfsd/nfsctl.c b/fs/nfsd/nfsctl.c
> index db34a58..883ea54 100644
> --- a/fs/nfsd/nfsctl.c
> +++ b/fs/nfsd/nfsctl.c
> @@ -1127,9 +1127,12 @@ static int __init init_nfsd(void)
>  	int retval;
>  	printk(KERN_INFO "Installing knfsd (copyright (C) 1996 okir@monad.swb.de).\n");
>  
> -	retval = nfs4_state_init(); /* nfs4 locking state */
> +	retval = nfsd4_init_slabs();
>  	if (retval)
>  		return retval;
> +	retval = nfs4_state_init(); /* nfs4 locking state */
> +	if (retval)
> +		goto out_free_slabs;
>  	nfsd_stat_init();	/* Statistics */
>  	retval = nfsd_reply_cache_init();
>  	if (retval)
> @@ -1160,6 +1163,7 @@ out_free_cache:
>  	nfsd_reply_cache_shutdown();
>  out_free_stat:
>  	nfsd_stat_shutdown();
> +out_free_slabs:
>  	nfsd4_free_slabs();
>  	return retval;
>  }
> diff --git a/fs/nfsd/nfsd.h b/fs/nfsd/nfsd.h
> index 58134a2..46f97ba 100644
> --- a/fs/nfsd/nfsd.h
> +++ b/fs/nfsd/nfsd.h
> @@ -105,6 +105,7 @@ static inline int nfsd_v4client(struct svc_rqst *rq)
>  #ifdef CONFIG_NFSD_V4
>  extern unsigned int max_delegations;
>  int nfs4_state_init(void);
> +int nfsd4_init_slabs(void);
>  void nfsd4_free_slabs(void);
>  int nfs4_state_start(void);
>  void nfs4_state_shutdown(void);
> @@ -112,6 +113,7 @@ void nfs4_reset_lease(time_t leasetime);
>  int nfs4_reset_recoverydir(char *recdir);
>  #else
>  static inline int nfs4_state_init(void) { return 0; }
> +static inline int nfsd4_init_slabs(void) { return 0; }
>  static inline void nfsd4_free_slabs(void) { }
>  static inline int nfs4_state_start(void) { return 0; }
>  static inline void nfs4_state_shutdown(void) { }
> -- 
> 1.7.7
> 

  reply	other threads:[~2011-11-01 19:05 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2011-11-01 18:18 [PATCH] NFSD: Call nfsd4_init_slabs() from init_nfsd() bjschuma
2011-11-01 19:05 ` J. Bruce Fields [this message]
2011-11-01 19:24   ` Bryan Schumaker
2011-11-04 21:36     ` J. Bruce Fields

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20111101190523.GA1891@fieldses.org \
    --to=bfields@fieldses.org \
    --cc=bjschuma@netapp.com \
    --cc=linux-nfs@vger.kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).