linux-nfs.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Benny Halevy <bhalevy@tonian.com>
To: fanchaoting <fanchaoting@cn.fujitsu.com>
Cc: linux-nfs <linux-nfs@vger.kernel.org>
Subject: Re: [PATCH v1 2/2] pnfsd-block: block layout should cleanup when register nfsd filesystem error
Date: Thu, 11 Apr 2013 13:22:28 +0300	[thread overview]
Message-ID: <51668EE4.20901@tonian.com> (raw)
In-Reply-To: <5152D277.2040103@cn.fujitsu.com>

On 2013-03-27 13:05, fanchaoting wrote:
> this patch can fix:
> 
> 1. remove /proc/fs/pnfs_block when create /proc/fs/pnfs_block/ctl
>    error.
> 
> 2. cleanup /proc/fs/pnfs_block and /proc/fs/pnfs_block/ctl when
>    register nfsd filesystem error.
> 3. we can't use proc file when CONFIG_PROC_FS is not set.
>  
>  Signed-off-by: fanchaoting <fanchaoting@cn.fujitsu.com>
>  Reviewed-by: chendt.fnst <chendt.fnst@cn.fujitsu.com>

Merged into the pnfsd-block branch.
One question though: why do you need the #if defined(CONFIG_PNFSD_BLOCK)
in bl_com.c?
The file is compiled conditionally on that same config variable in
fs/nfsd/Makefile.

Thanks,

Benny

> 
> ---
> 
> ---
>  fs/nfsd/bl_com.c      |   21 ++++++++++++++++++---
>  fs/nfsd/bl_ops.c      |    5 +++--
>  fs/nfsd/nfsctl.c      |    7 +++++--
>  fs/nfsd/nfsd4_block.h |   12 ++++++++++--
>  4 files changed, 36 insertions(+), 9 deletions(-)
> 
> diff --git a/fs/nfsd/bl_com.c b/fs/nfsd/bl_com.c
> index 39aac40..2fc74d6 100644
> --- a/fs/nfsd/bl_com.c
> +++ b/fs/nfsd/bl_com.c
> @@ -1,3 +1,4 @@
> +#if defined(CONFIG_PNFSD_BLOCK)

Why?

Benny

>  #include <linux/module.h>
>  #include <linux/mutex.h>
>  #include <linux/init.h>
> @@ -271,19 +272,33 @@ static struct file_operations ctl_ops = {
>   * more nodes doesn't present itself shortly this code should revert
>   * to a single top level node. McNeal 11-Aug-2008.
>   */
> +#if defined(CONFIG_PROC_FS)
> +
>  int
>  bl_init_proc(void)
>  {
>  	struct proc_dir_entry *e;
>  
> -	e = proc_mkdir("fs/pnfs_block", NULL);
> -	if (!e)
> +	pnfs_block_entry = proc_mkdir("fs/pnfs_block", NULL);
> +	if (!pnfs_block_entry)
>  		return -ENOMEM;
>  
>  	e = create_proc_entry("fs/pnfs_block/ctl", 0, NULL);
> -	if (!e)
> +	if (!e) {
> +		remove_proc_entry("fs/pnfs_block", NULL);
>  		return -ENOMEM;
> +	}
>  	e->proc_fops = &ctl_ops;
>  
>  	return 0;
>  }
> +
> +void
> +bl_cleanup_proc(void)
> +{
> +	remove_proc_entry("fs/pnfs_block/ctl", NULL);
> +	remove_proc_entry("fs/pnfs_block", NULL);
> +}
> +
> +#endif /*CONFIG_PROC_FS*/
> +#endif /*CONFIG_PNFSD_BLOCK*/
> diff --git a/fs/nfsd/bl_ops.c b/fs/nfsd/bl_ops.c
> index a7046c6..74a5f6b 100644
> --- a/fs/nfsd/bl_ops.c
> +++ b/fs/nfsd/bl_ops.c
> @@ -120,17 +120,18 @@ static boolean_t extents_process(struct fiemap_extent_info *fei,
>      u64 sbid, dev_t dev, pnfs_blocklayout_layout_t *b);
>  static void extents_cleanup(struct fiemap_extent_info *fei);
>  
> -void
> +int
>  nfsd_bl_init(void)
>  {
>  	int	i;
> +
>  	dprintk("%s loaded\n", __func__);
>  
>  	spin_lock_init(&layout_hashtbl_lock);
>  	INIT_LIST_HEAD(&layout_hash);
>  	for (i = 0; i < BL_LAYOUT_HASH_SIZE; i++)
>  		INIT_LIST_HEAD(&layout_hashtbl[i]);
> -	bl_init_proc();
> +	return bl_init_proc();
>  }
>  
>  /*
> diff --git a/fs/nfsd/nfsctl.c b/fs/nfsd/nfsctl.c
> index 61a61e7..5fe7f52 100644
> --- a/fs/nfsd/nfsctl.c
> +++ b/fs/nfsd/nfsctl.c
> @@ -1204,8 +1204,9 @@ static int create_proc_exports_entry(void)
>  static int __init init_nfsd(void)
>  {
>  	int retval;
> -	printk(KERN_INFO "Installing knfsd (copyright (C) 1996 okir@monad.swb.de).\n");
> +	int bl_retval;
>  
> +	printk(KERN_INFO "Installing knfsd (copyright (C) 1996 okir@monad.swb.de).\n");
>  	retval = nfsd4_init_slabs();
>  	if (retval)
>  		return retval;
> @@ -1227,7 +1228,7 @@ static int __init init_nfsd(void)
>  	retval = create_proc_exports_entry();
>  	if (retval)
>  		goto out_free_idmap;
> -	nfsd_bl_init();
> +	bl_retval = nfsd_bl_init();
>  
>  	retval = register_filesystem(&nfsd_fs_type);
>  	if (retval)
> @@ -1236,6 +1237,8 @@ static int __init init_nfsd(void)
>  out_free_all:
>  	remove_proc_entry("fs/nfs/exports", NULL);
>  	remove_proc_entry("fs/nfs", NULL);
> +	if (!bl_retval)
> +		bl_cleanup_proc();
>  out_free_idmap:
>  	nfsd_idmap_shutdown();
>  out_free_lockd:
> diff --git a/fs/nfsd/nfsd4_block.h b/fs/nfsd/nfsd4_block.h
> index f79c779..5872b4d 100644
> --- a/fs/nfsd/nfsd4_block.h
> +++ b/fs/nfsd/nfsd4_block.h
> @@ -78,7 +78,7 @@ typedef struct bl_comm {
>  #ifdef CONFIG_PNFSD_BLOCK
>  
>  bool pnfs_block_enabled(struct inode *, int ex_flags);
> -void nfsd_bl_init(void);
> +int nfsd_bl_init(void);
>  int bl_layout_type(struct super_block *sb);
>  int bl_getdeviceiter(struct super_block *, u32 layout_type,
>  		     struct nfsd4_pnfs_dev_iter_res *);
> @@ -94,7 +94,13 @@ int bl_layoutcommit(struct inode *,
>  int bl_layoutreturn(struct inode *,
>  		    const struct nfsd4_pnfs_layoutreturn_arg *);
>  int bl_layoutrecall(struct inode *inode, int type, u64 offset, u64 len, bool with_nfs4_state_lock);
> +#ifdef CONFIG_PROC_FS
> +
>  int bl_init_proc(void);
> +void bl_cleanup_proc(void);
> +
> +#endif
> +
>  int bl_upcall(bl_comm_t *, bl_comm_msg_t *, bl_comm_res_t **);
>  
>  
> @@ -112,7 +118,9 @@ extern bl_comm_t	*bl_comm_global;	// Ugly...
>  #else
>  
>  static inline bool pnfs_block_enabled(struct inode *i, int ex_flags) { return false; }
> -static inline void nfsd_bl_init(void) {}
> +static inline int nfsd_bl_init(void) {return false; }
> +static inline int bl_init_proc(void) {return false; }
> +static inline void bl_cleanup_proc(void) {}
>  
>  static inline int bl_recall_layout(struct inode *inode, int type, u64 offset,
>  				   u64 len, bool with_nfs4_state_lock)
> 

      reply	other threads:[~2013-04-11 10:22 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2013-03-27  8:33 [PATCH 2/2] pnfsd-block: block layout should cleanup when register nfsd filesystem error fanchaoting
2013-03-27 11:05 ` [PATCH v1 " fanchaoting
2013-04-11 10:22   ` Benny Halevy [this message]

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=51668EE4.20901@tonian.com \
    --to=bhalevy@tonian.com \
    --cc=fanchaoting@cn.fujitsu.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).