All of lore.kernel.org
 help / color / mirror / Atom feed
From: "Dilger, Andreas" <andreas.dilger@intel.com>
To: NeilBrown <neilb@suse.com>
Cc: "Drokin, Oleg" <oleg.drokin@intel.com>,
	Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
	James Simmons <jsimmons@infradead.org>,
	"Linux Kernel Mailing List" <linux-kernel@vger.kernel.org>,
	Lustre Development List <lustre-devel@lists.lustre.org>
Subject: Re: [PATCH 15/17] staging: lustre: ptlrpc: move thread creation out of module initialization
Date: Fri, 9 Mar 2018 00:31:44 +0000	[thread overview]
Message-ID: <E9EE2714-9E37-446D-9B74-D444A47A9B45@intel.com> (raw)
In-Reply-To: <151994708557.7628.14705551472003114360.stgit@noble>

On Mar 1, 2018, at 16:31, NeilBrown <neilb@suse.com> wrote:
> 
> When the ptlrpc module is loaded, it starts the pinger thread and
> calls LNetNIInit which starts various threads.
> 
> We don't need these threads until the module is actually being
> used, such as when a lustre filesystem is mounted.
> 
> So move the thread creation into new ptlrpc_inc_ref() (modeled on
> ptlrpcd_inc_ref()), and call that when needed, such as at mount time.

It looks like this is still done early enough in the mount sequence, so the
earlier "[06/17] get entropy from nid when nid set" action is still done
before the client UUID is generated in ll_init_sbi().

Reviewed-by: Andreas Dilger <andreas.dilger@intel.com>

> Signed-off-by: NeilBrown <neilb@suse.com>
> ---
> drivers/staging/lustre/lustre/include/lustre_net.h |    3 +
> drivers/staging/lustre/lustre/ldlm/ldlm_lockd.c    |   12 ++++
> drivers/staging/lustre/lustre/llite/llite_lib.c    |   18 +++++-
> .../staging/lustre/lustre/ptlrpc/ptlrpc_module.c   |   56 +++++++++++++-------
> 4 files changed, 65 insertions(+), 24 deletions(-)
> 
> diff --git a/drivers/staging/lustre/lustre/include/lustre_net.h b/drivers/staging/lustre/lustre/include/lustre_net.h
> index 108683c54127..d35ae0cda8d2 100644
> --- a/drivers/staging/lustre/lustre/include/lustre_net.h
> +++ b/drivers/staging/lustre/lustre/include/lustre_net.h
> @@ -1804,6 +1804,9 @@ int ptlrpc_register_rqbd(struct ptlrpc_request_buffer_desc *rqbd);
>  */
> void ptlrpc_request_committed(struct ptlrpc_request *req, int force);
> 
> +int ptlrpc_inc_ref(void);
> +void ptlrpc_dec_ref(void);
> +
> void ptlrpc_init_client(int req_portal, int rep_portal, char *name,
> 			struct ptlrpc_client *);
> struct ptlrpc_connection *ptlrpc_uuid_to_connection(struct obd_uuid *uuid);
> diff --git a/drivers/staging/lustre/lustre/ldlm/ldlm_lockd.c b/drivers/staging/lustre/lustre/ldlm/ldlm_lockd.c
> index 58913e628124..c772c68e5a49 100644
> --- a/drivers/staging/lustre/lustre/ldlm/ldlm_lockd.c
> +++ b/drivers/staging/lustre/lustre/ldlm/ldlm_lockd.c
> @@ -869,6 +869,10 @@ int ldlm_get_ref(void)
> {
> 	int rc = 0;
> 
> +	rc = ptlrpc_inc_ref();
> +	if (rc)
> +		return rc;
> +
> 	mutex_lock(&ldlm_ref_mutex);
> 	if (++ldlm_refcount == 1) {
> 		rc = ldlm_setup();
> @@ -877,14 +881,18 @@ int ldlm_get_ref(void)
> 	}
> 	mutex_unlock(&ldlm_ref_mutex);
> 
> +	if (rc)
> +		ptlrpc_dec_ref();
> +
> 	return rc;
> }
> 
> void ldlm_put_ref(void)
> {
> +	int rc = 0;
> 	mutex_lock(&ldlm_ref_mutex);
> 	if (ldlm_refcount == 1) {
> -		int rc = ldlm_cleanup();
> +		rc = ldlm_cleanup();
> 
> 		if (rc)
> 			CERROR("ldlm_cleanup failed: %d\n", rc);
> @@ -894,6 +902,8 @@ void ldlm_put_ref(void)
> 		ldlm_refcount--;
> 	}
> 	mutex_unlock(&ldlm_ref_mutex);
> +	if (!rc)
> +		ptlrpc_dec_ref();
> }
> 
> static ssize_t cancel_unused_locks_before_replay_show(struct kobject *kobj,
> diff --git a/drivers/staging/lustre/lustre/llite/llite_lib.c b/drivers/staging/lustre/lustre/llite/llite_lib.c
> index 844182ad7dd7..706b14bf8981 100644
> --- a/drivers/staging/lustre/lustre/llite/llite_lib.c
> +++ b/drivers/staging/lustre/lustre/llite/llite_lib.c
> @@ -879,9 +879,15 @@ int ll_fill_super(struct super_block *sb)
> 
> 	CDEBUG(D_VFSTRACE, "VFS Op: sb %p\n", sb);
> 
> +	err = ptlrpc_inc_ref();
> +	if (err)
> +		return err;
> +
> 	cfg = kzalloc(sizeof(*cfg), GFP_NOFS);
> -	if (!cfg)
> -		return -ENOMEM;
> +	if (!cfg) {
> +		err = -ENOMEM;
> +		goto out_put;
> +	}
> 
> 	try_module_get(THIS_MODULE);
> 
> @@ -891,7 +897,8 @@ int ll_fill_super(struct super_block *sb)
> 	if (!sbi) {
> 		module_put(THIS_MODULE);
> 		kfree(cfg);
> -		return -ENOMEM;
> +		err = -ENOMEM;
> +		goto out_put;
> 	}
> 
> 	err = ll_options(lsi->lsi_lmd->lmd_opts, &sbi->ll_flags);
> @@ -958,6 +965,9 @@ int ll_fill_super(struct super_block *sb)
> 		LCONSOLE_WARN("Mounted %s\n", profilenm);
> 
> 	kfree(cfg);
> +out_put:
> +	if (err)
> +		ptlrpc_dec_ref();
> 	return err;
> } /* ll_fill_super */
> 
> @@ -1028,6 +1038,8 @@ void ll_put_super(struct super_block *sb)
> 	cl_env_cache_purge(~0);
> 
> 	module_put(THIS_MODULE);
> +
> +	ptlrpc_dec_ref();
> } /* client_put_super */
> 
> struct inode *ll_inode_from_resource_lock(struct ldlm_lock *lock)
> diff --git a/drivers/staging/lustre/lustre/ptlrpc/ptlrpc_module.c b/drivers/staging/lustre/lustre/ptlrpc/ptlrpc_module.c
> index 131fc6d9646e..38923418669f 100644
> --- a/drivers/staging/lustre/lustre/ptlrpc/ptlrpc_module.c
> +++ b/drivers/staging/lustre/lustre/ptlrpc/ptlrpc_module.c
> @@ -45,6 +45,42 @@ extern spinlock_t ptlrpc_last_xid_lock;
> extern spinlock_t ptlrpc_rs_debug_lock;
> #endif
> 
> +DEFINE_MUTEX(ptlrpc_startup);
> +static int ptlrpc_active = 0;
> +
> +int ptlrpc_inc_ref(void)
> +{
> +	int rc = 0;
> +
> +	mutex_lock(&ptlrpc_startup);
> +	if (ptlrpc_active++ == 0) {
> +		ptlrpc_put_connection_superhack = ptlrpc_connection_put;
> +
> +		rc = ptlrpc_init_portals();
> +		if (!rc) {
> +			rc= ptlrpc_start_pinger();
> +			if (rc)
> +				ptlrpc_exit_portals();
> +		}
> +		if (rc)
> +			ptlrpc_active--;
> +	}
> +	mutex_unlock(&ptlrpc_startup);
> +	return rc;
> +}
> +EXPORT_SYMBOL(ptlrpc_inc_ref);
> +
> +void ptlrpc_dec_ref(void)
> +{
> +	mutex_lock(&ptlrpc_startup);
> +	if (--ptlrpc_active == 0) {
> +		ptlrpc_stop_pinger();
> +		ptlrpc_exit_portals();
> +	}
> +	mutex_unlock(&ptlrpc_startup);
> +}
> +EXPORT_SYMBOL(ptlrpc_dec_ref);
> +
> static int __init ptlrpc_init(void)
> {
> 	int rc, cleanup_phase = 0;
> @@ -71,24 +107,12 @@ static int __init ptlrpc_init(void)
> 	if (rc)
> 		goto cleanup;
> 
> -	cleanup_phase = 2;
> -	rc = ptlrpc_init_portals();
> -	if (rc)
> -		goto cleanup;
> -
> 	cleanup_phase = 3;
> 
> 	rc = ptlrpc_connection_init();
> 	if (rc)
> 		goto cleanup;
> 
> -	cleanup_phase = 4;
> -	ptlrpc_put_connection_superhack = ptlrpc_connection_put;
> -
> -	rc = ptlrpc_start_pinger();
> -	if (rc)
> -		goto cleanup;
> -
> 	cleanup_phase = 5;
> 	rc = ldlm_init();
> 	if (rc)
> @@ -122,15 +146,9 @@ static int __init ptlrpc_init(void)
> 		ldlm_exit();
> 		/* Fall through */
> 	case 5:
> -		ptlrpc_stop_pinger();
> -		/* Fall through */
> -	case 4:
> 		ptlrpc_connection_fini();
> 		/* Fall through */
> 	case 3:
> -		ptlrpc_exit_portals();
> -		/* Fall through */
> -	case 2:
> 		ptlrpc_request_cache_fini();
> 		/* Fall through */
> 	case 1:
> @@ -150,8 +168,6 @@ static void __exit ptlrpc_exit(void)
> 	ptlrpc_nrs_fini();
> 	sptlrpc_fini();
> 	ldlm_exit();
> -	ptlrpc_stop_pinger();
> -	ptlrpc_exit_portals();
> 	ptlrpc_request_cache_fini();
> 	ptlrpc_hr_fini();
> 	ptlrpc_connection_fini();
> 
> 

Cheers, Andreas
--
Andreas Dilger
Lustre Principal Architect
Intel Corporation

WARNING: multiple messages have this Message-ID (diff)
From: Dilger, Andreas <andreas.dilger@intel.com>
To: NeilBrown <neilb@suse.com>
Cc: "Drokin, Oleg" <oleg.drokin@intel.com>,
	Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
	James Simmons <jsimmons@infradead.org>,
	Linux Kernel Mailing List <linux-kernel@vger.kernel.org>,
	Lustre Development List <lustre-devel@lists.lustre.org>
Subject: [lustre-devel] [PATCH 15/17] staging: lustre: ptlrpc: move thread creation out of module initialization
Date: Fri, 9 Mar 2018 00:31:44 +0000	[thread overview]
Message-ID: <E9EE2714-9E37-446D-9B74-D444A47A9B45@intel.com> (raw)
In-Reply-To: <151994708557.7628.14705551472003114360.stgit@noble>

On Mar 1, 2018, at 16:31, NeilBrown <neilb@suse.com> wrote:
> 
> When the ptlrpc module is loaded, it starts the pinger thread and
> calls LNetNIInit which starts various threads.
> 
> We don't need these threads until the module is actually being
> used, such as when a lustre filesystem is mounted.
> 
> So move the thread creation into new ptlrpc_inc_ref() (modeled on
> ptlrpcd_inc_ref()), and call that when needed, such as at mount time.

It looks like this is still done early enough in the mount sequence, so the
earlier "[06/17] get entropy from nid when nid set" action is still done
before the client UUID is generated in ll_init_sbi().

Reviewed-by: Andreas Dilger <andreas.dilger@intel.com>

> Signed-off-by: NeilBrown <neilb@suse.com>
> ---
> drivers/staging/lustre/lustre/include/lustre_net.h |    3 +
> drivers/staging/lustre/lustre/ldlm/ldlm_lockd.c    |   12 ++++
> drivers/staging/lustre/lustre/llite/llite_lib.c    |   18 +++++-
> .../staging/lustre/lustre/ptlrpc/ptlrpc_module.c   |   56 +++++++++++++-------
> 4 files changed, 65 insertions(+), 24 deletions(-)
> 
> diff --git a/drivers/staging/lustre/lustre/include/lustre_net.h b/drivers/staging/lustre/lustre/include/lustre_net.h
> index 108683c54127..d35ae0cda8d2 100644
> --- a/drivers/staging/lustre/lustre/include/lustre_net.h
> +++ b/drivers/staging/lustre/lustre/include/lustre_net.h
> @@ -1804,6 +1804,9 @@ int ptlrpc_register_rqbd(struct ptlrpc_request_buffer_desc *rqbd);
>  */
> void ptlrpc_request_committed(struct ptlrpc_request *req, int force);
> 
> +int ptlrpc_inc_ref(void);
> +void ptlrpc_dec_ref(void);
> +
> void ptlrpc_init_client(int req_portal, int rep_portal, char *name,
> 			struct ptlrpc_client *);
> struct ptlrpc_connection *ptlrpc_uuid_to_connection(struct obd_uuid *uuid);
> diff --git a/drivers/staging/lustre/lustre/ldlm/ldlm_lockd.c b/drivers/staging/lustre/lustre/ldlm/ldlm_lockd.c
> index 58913e628124..c772c68e5a49 100644
> --- a/drivers/staging/lustre/lustre/ldlm/ldlm_lockd.c
> +++ b/drivers/staging/lustre/lustre/ldlm/ldlm_lockd.c
> @@ -869,6 +869,10 @@ int ldlm_get_ref(void)
> {
> 	int rc = 0;
> 
> +	rc = ptlrpc_inc_ref();
> +	if (rc)
> +		return rc;
> +
> 	mutex_lock(&ldlm_ref_mutex);
> 	if (++ldlm_refcount == 1) {
> 		rc = ldlm_setup();
> @@ -877,14 +881,18 @@ int ldlm_get_ref(void)
> 	}
> 	mutex_unlock(&ldlm_ref_mutex);
> 
> +	if (rc)
> +		ptlrpc_dec_ref();
> +
> 	return rc;
> }
> 
> void ldlm_put_ref(void)
> {
> +	int rc = 0;
> 	mutex_lock(&ldlm_ref_mutex);
> 	if (ldlm_refcount == 1) {
> -		int rc = ldlm_cleanup();
> +		rc = ldlm_cleanup();
> 
> 		if (rc)
> 			CERROR("ldlm_cleanup failed: %d\n", rc);
> @@ -894,6 +902,8 @@ void ldlm_put_ref(void)
> 		ldlm_refcount--;
> 	}
> 	mutex_unlock(&ldlm_ref_mutex);
> +	if (!rc)
> +		ptlrpc_dec_ref();
> }
> 
> static ssize_t cancel_unused_locks_before_replay_show(struct kobject *kobj,
> diff --git a/drivers/staging/lustre/lustre/llite/llite_lib.c b/drivers/staging/lustre/lustre/llite/llite_lib.c
> index 844182ad7dd7..706b14bf8981 100644
> --- a/drivers/staging/lustre/lustre/llite/llite_lib.c
> +++ b/drivers/staging/lustre/lustre/llite/llite_lib.c
> @@ -879,9 +879,15 @@ int ll_fill_super(struct super_block *sb)
> 
> 	CDEBUG(D_VFSTRACE, "VFS Op: sb %p\n", sb);
> 
> +	err = ptlrpc_inc_ref();
> +	if (err)
> +		return err;
> +
> 	cfg = kzalloc(sizeof(*cfg), GFP_NOFS);
> -	if (!cfg)
> -		return -ENOMEM;
> +	if (!cfg) {
> +		err = -ENOMEM;
> +		goto out_put;
> +	}
> 
> 	try_module_get(THIS_MODULE);
> 
> @@ -891,7 +897,8 @@ int ll_fill_super(struct super_block *sb)
> 	if (!sbi) {
> 		module_put(THIS_MODULE);
> 		kfree(cfg);
> -		return -ENOMEM;
> +		err = -ENOMEM;
> +		goto out_put;
> 	}
> 
> 	err = ll_options(lsi->lsi_lmd->lmd_opts, &sbi->ll_flags);
> @@ -958,6 +965,9 @@ int ll_fill_super(struct super_block *sb)
> 		LCONSOLE_WARN("Mounted %s\n", profilenm);
> 
> 	kfree(cfg);
> +out_put:
> +	if (err)
> +		ptlrpc_dec_ref();
> 	return err;
> } /* ll_fill_super */
> 
> @@ -1028,6 +1038,8 @@ void ll_put_super(struct super_block *sb)
> 	cl_env_cache_purge(~0);
> 
> 	module_put(THIS_MODULE);
> +
> +	ptlrpc_dec_ref();
> } /* client_put_super */
> 
> struct inode *ll_inode_from_resource_lock(struct ldlm_lock *lock)
> diff --git a/drivers/staging/lustre/lustre/ptlrpc/ptlrpc_module.c b/drivers/staging/lustre/lustre/ptlrpc/ptlrpc_module.c
> index 131fc6d9646e..38923418669f 100644
> --- a/drivers/staging/lustre/lustre/ptlrpc/ptlrpc_module.c
> +++ b/drivers/staging/lustre/lustre/ptlrpc/ptlrpc_module.c
> @@ -45,6 +45,42 @@ extern spinlock_t ptlrpc_last_xid_lock;
> extern spinlock_t ptlrpc_rs_debug_lock;
> #endif
> 
> +DEFINE_MUTEX(ptlrpc_startup);
> +static int ptlrpc_active = 0;
> +
> +int ptlrpc_inc_ref(void)
> +{
> +	int rc = 0;
> +
> +	mutex_lock(&ptlrpc_startup);
> +	if (ptlrpc_active++ == 0) {
> +		ptlrpc_put_connection_superhack = ptlrpc_connection_put;
> +
> +		rc = ptlrpc_init_portals();
> +		if (!rc) {
> +			rc= ptlrpc_start_pinger();
> +			if (rc)
> +				ptlrpc_exit_portals();
> +		}
> +		if (rc)
> +			ptlrpc_active--;
> +	}
> +	mutex_unlock(&ptlrpc_startup);
> +	return rc;
> +}
> +EXPORT_SYMBOL(ptlrpc_inc_ref);
> +
> +void ptlrpc_dec_ref(void)
> +{
> +	mutex_lock(&ptlrpc_startup);
> +	if (--ptlrpc_active == 0) {
> +		ptlrpc_stop_pinger();
> +		ptlrpc_exit_portals();
> +	}
> +	mutex_unlock(&ptlrpc_startup);
> +}
> +EXPORT_SYMBOL(ptlrpc_dec_ref);
> +
> static int __init ptlrpc_init(void)
> {
> 	int rc, cleanup_phase = 0;
> @@ -71,24 +107,12 @@ static int __init ptlrpc_init(void)
> 	if (rc)
> 		goto cleanup;
> 
> -	cleanup_phase = 2;
> -	rc = ptlrpc_init_portals();
> -	if (rc)
> -		goto cleanup;
> -
> 	cleanup_phase = 3;
> 
> 	rc = ptlrpc_connection_init();
> 	if (rc)
> 		goto cleanup;
> 
> -	cleanup_phase = 4;
> -	ptlrpc_put_connection_superhack = ptlrpc_connection_put;
> -
> -	rc = ptlrpc_start_pinger();
> -	if (rc)
> -		goto cleanup;
> -
> 	cleanup_phase = 5;
> 	rc = ldlm_init();
> 	if (rc)
> @@ -122,15 +146,9 @@ static int __init ptlrpc_init(void)
> 		ldlm_exit();
> 		/* Fall through */
> 	case 5:
> -		ptlrpc_stop_pinger();
> -		/* Fall through */
> -	case 4:
> 		ptlrpc_connection_fini();
> 		/* Fall through */
> 	case 3:
> -		ptlrpc_exit_portals();
> -		/* Fall through */
> -	case 2:
> 		ptlrpc_request_cache_fini();
> 		/* Fall through */
> 	case 1:
> @@ -150,8 +168,6 @@ static void __exit ptlrpc_exit(void)
> 	ptlrpc_nrs_fini();
> 	sptlrpc_fini();
> 	ldlm_exit();
> -	ptlrpc_stop_pinger();
> -	ptlrpc_exit_portals();
> 	ptlrpc_request_cache_fini();
> 	ptlrpc_hr_fini();
> 	ptlrpc_connection_fini();
> 
> 

Cheers, Andreas
--
Andreas Dilger
Lustre Principal Architect
Intel Corporation

  reply	other threads:[~2018-03-09  0:31 UTC|newest]

Thread overview: 72+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-03-01 23:31 [PATCH 00/17] staging: remove requirement that lustre be built as module NeilBrown
2018-03-01 23:31 ` [lustre-devel] " NeilBrown
2018-03-01 23:31 ` [PATCH 06/17] staging: lustre: get entropy from nid when nid set NeilBrown
2018-03-01 23:31   ` [lustre-devel] " NeilBrown
2018-03-08  0:19   ` Dilger, Andreas
2018-03-08  0:19     ` [lustre-devel] " Dilger, Andreas
2018-03-01 23:31 ` [PATCH 02/17] staging: lustre: fix bug in osc_enter_cache_try NeilBrown
2018-03-01 23:31   ` [lustre-devel] " NeilBrown
2018-03-07 20:51   ` Dilger, Andreas
2018-03-07 20:51     ` [lustre-devel] " Dilger, Andreas
2018-03-01 23:31 ` [PATCH 03/17] staging: lustre: statahead: remove incorrect test on agl_list_empty() NeilBrown
2018-03-01 23:31   ` [lustre-devel] " NeilBrown
2018-03-07 21:08   ` Dilger, Andreas
2018-03-07 21:08     ` [lustre-devel] " Dilger, Andreas
2018-03-01 23:31 ` [PATCH 07/17] staging: lustre: ptlrpc: change GFP_NOFS to GFP_KERNEL NeilBrown
2018-03-01 23:31   ` [lustre-devel] " NeilBrown
2018-03-08  0:20   ` Dilger, Andreas
2018-03-08  0:20     ` [lustre-devel] " Dilger, Andreas
2018-03-01 23:31 ` [PATCH 17/17] Revert "staging: Disable lustre file system for MIPS, SH, and XTENSA" NeilBrown
2018-03-01 23:31   ` [lustre-devel] " NeilBrown
2018-03-09  0:37   ` Dilger, Andreas
2018-03-09  0:37     ` [lustre-devel] " Dilger, Andreas
2018-03-01 23:31 ` [PATCH 13/17] staging: lustre: remove 'ptlrpc_thread usage' for sai_agl_thread NeilBrown
2018-03-01 23:31   ` [lustre-devel] " NeilBrown
2018-03-09  0:12   ` Dilger, Andreas
2018-03-09  0:12     ` [lustre-devel] " Dilger, Andreas
2018-03-01 23:31 ` [PATCH 14/17] staging: lustre: change sai_thread to sai_task NeilBrown
2018-03-01 23:31   ` [lustre-devel] " NeilBrown
2018-03-09  0:20   ` Dilger, Andreas
2018-03-09  0:20     ` [lustre-devel] " Dilger, Andreas
2018-03-01 23:31 ` [PATCH 05/17] staging: lustre: lnet: keep ln_nportals consistent NeilBrown
2018-03-01 23:31   ` [lustre-devel] " NeilBrown
2018-03-07 21:24   ` Dilger, Andreas
2018-03-07 21:24     ` [lustre-devel] " Dilger, Andreas
2018-03-01 23:31 ` [PATCH 08/17] staging: lustre: obdclass: use workqueue for zombie management NeilBrown
2018-03-01 23:31   ` [lustre-devel] " NeilBrown
2018-03-08  0:27   ` Dilger, Andreas
2018-03-08  0:27     ` [lustre-devel] " Dilger, Andreas
2018-03-01 23:31 ` [PATCH 12/17] staging: lustre: remove unused flag from ptlrpc_thread NeilBrown
2018-03-01 23:31   ` [lustre-devel] " NeilBrown
2018-03-08 23:54   ` Dilger, Andreas
2018-03-08 23:54     ` [lustre-devel] " Dilger, Andreas
2018-03-01 23:31 ` [PATCH 01/17] staging: lustre: obd_mount: use correct niduuid suffix NeilBrown
2018-03-01 23:31   ` [lustre-devel] " NeilBrown
2018-03-07 20:49   ` Dilger, Andreas
2018-03-07 20:49     ` [lustre-devel] " Dilger, Andreas
2018-03-01 23:31 ` [PATCH 16/17] staging: lustre: allow monolithic builds NeilBrown
2018-03-01 23:31   ` [lustre-devel] " NeilBrown
2018-03-09  0:32   ` Dilger, Andreas
2018-03-09  0:32     ` [lustre-devel] " Dilger, Andreas
2018-03-01 23:31 ` [PATCH 09/17] staging: lustre: ldlm: use delayed_work for pools_recalc NeilBrown
2018-03-01 23:31   ` [lustre-devel] " NeilBrown
2018-03-08 19:22   ` Dilger, Andreas
2018-03-08 19:22     ` [lustre-devel] " Dilger, Andreas
2018-03-01 23:31 ` [PATCH 04/17] staging: lustre: obdclass: don't require lct_owner to be non-NULL NeilBrown
2018-03-01 23:31   ` [lustre-devel] " NeilBrown
2018-03-07 21:10   ` Dilger, Andreas
2018-03-07 21:10     ` [lustre-devel] " Dilger, Andreas
2018-03-01 23:31 ` [PATCH 11/17] staging: lustre: ptlrpc: use workqueue for pinger NeilBrown
2018-03-01 23:31   ` [lustre-devel] " NeilBrown
2018-03-08 23:53   ` Dilger, Andreas
2018-03-08 23:53     ` [lustre-devel] " Dilger, Andreas
2018-03-11 21:37     ` NeilBrown
2018-03-11 21:37       ` [lustre-devel] " NeilBrown
2018-03-01 23:31 ` [PATCH 15/17] staging: lustre: ptlrpc: move thread creation out of module initialization NeilBrown
2018-03-01 23:31   ` [lustre-devel] " NeilBrown
2018-03-09  0:31   ` Dilger, Andreas [this message]
2018-03-09  0:31     ` Dilger, Andreas
2018-03-01 23:31 ` [PATCH 10/17] staging: lustre: ptlrpc: use delayed_work in sec_gc NeilBrown
2018-03-01 23:31   ` [lustre-devel] " NeilBrown
2018-03-08 19:23   ` Dilger, Andreas
2018-03-08 19:23     ` [lustre-devel] " Dilger, Andreas

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=E9EE2714-9E37-446D-9B74-D444A47A9B45@intel.com \
    --to=andreas.dilger@intel.com \
    --cc=gregkh@linuxfoundation.org \
    --cc=jsimmons@infradead.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=lustre-devel@lists.lustre.org \
    --cc=neilb@suse.com \
    --cc=oleg.drokin@intel.com \
    /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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.