linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 1/3] jffs2: use to_delayed_work
@ 2016-01-01 14:06 Geliang Tang
  2016-01-01 14:06 ` [PATCH 2/3] nfsd: " Geliang Tang
                   ` (2 more replies)
  0 siblings, 3 replies; 5+ messages in thread
From: Geliang Tang @ 2016-01-01 14:06 UTC (permalink / raw)
  To: David Woodhouse; +Cc: Geliang Tang, linux-mtd, linux-kernel

Use to_delayed_work() instead of open-coding it.

Signed-off-by: Geliang Tang <geliangtang@163.com>
---
 fs/jffs2/wbuf.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/fs/jffs2/wbuf.c b/fs/jffs2/wbuf.c
index f3a4857..5a3da3f 100644
--- a/fs/jffs2/wbuf.c
+++ b/fs/jffs2/wbuf.c
@@ -1153,7 +1153,7 @@ static struct jffs2_sb_info *work_to_sb(struct work_struct *work)
 {
 	struct delayed_work *dwork;
 
-	dwork = container_of(work, struct delayed_work, work);
+	dwork = to_delayed_work(work);
 	return container_of(dwork, struct jffs2_sb_info, wbuf_dwork);
 }
 
-- 
2.5.0



^ permalink raw reply related	[flat|nested] 5+ messages in thread

* [PATCH 2/3] nfsd: use to_delayed_work
  2016-01-01 14:06 [PATCH 1/3] jffs2: use to_delayed_work Geliang Tang
@ 2016-01-01 14:06 ` Geliang Tang
  2016-01-01 14:06 ` [PATCH 3/3] lockd: " Geliang Tang
  2016-01-06 23:17 ` [PATCH 1/3] jffs2: " Brian Norris
  2 siblings, 0 replies; 5+ messages in thread
From: Geliang Tang @ 2016-01-01 14:06 UTC (permalink / raw)
  To: J. Bruce Fields, Jeff Layton; +Cc: Geliang Tang, linux-nfs, linux-kernel

Use to_delayed_work() instead of open-coding it.

Signed-off-by: Geliang Tang <geliangtang@163.com>
---
 fs/nfsd/nfs4state.c | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/fs/nfsd/nfs4state.c b/fs/nfsd/nfs4state.c
index 6ef240c..c484a2b 100644
--- a/fs/nfsd/nfs4state.c
+++ b/fs/nfsd/nfs4state.c
@@ -4571,8 +4571,7 @@ static void
 laundromat_main(struct work_struct *laundry)
 {
 	time_t t;
-	struct delayed_work *dwork = container_of(laundry, struct delayed_work,
-						  work);
+	struct delayed_work *dwork = to_delayed_work(laundry);
 	struct nfsd_net *nn = container_of(dwork, struct nfsd_net,
 					   laundromat_work);
 
-- 
2.5.0



^ permalink raw reply related	[flat|nested] 5+ messages in thread

* [PATCH 3/3] lockd: use to_delayed_work
  2016-01-01 14:06 [PATCH 1/3] jffs2: use to_delayed_work Geliang Tang
  2016-01-01 14:06 ` [PATCH 2/3] nfsd: " Geliang Tang
@ 2016-01-01 14:06 ` Geliang Tang
  2016-01-04 22:44   ` J. Bruce Fields
  2016-01-06 23:17 ` [PATCH 1/3] jffs2: " Brian Norris
  2 siblings, 1 reply; 5+ messages in thread
From: Geliang Tang @ 2016-01-01 14:06 UTC (permalink / raw)
  To: Trond Myklebust, Anna Schumaker, J. Bruce Fields, Jeff Layton
  Cc: Geliang Tang, linux-nfs, linux-kernel

Use to_delayed_work() instead of open-coding it.

Signed-off-by: Geliang Tang <geliangtang@163.com>
---
 fs/lockd/svc.c | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/fs/lockd/svc.c b/fs/lockd/svc.c
index 44d18ad..b4006c72 100644
--- a/fs/lockd/svc.c
+++ b/fs/lockd/svc.c
@@ -94,8 +94,7 @@ static unsigned long get_lockd_grace_period(void)
 
 static void grace_ender(struct work_struct *grace)
 {
-	struct delayed_work *dwork = container_of(grace, struct delayed_work,
-						  work);
+	struct delayed_work *dwork = to_delayed_work(grace);
 	struct lockd_net *ln = container_of(dwork, struct lockd_net,
 					    grace_period_end);
 
-- 
2.5.0



^ permalink raw reply related	[flat|nested] 5+ messages in thread

* Re: [PATCH 3/3] lockd: use to_delayed_work
  2016-01-01 14:06 ` [PATCH 3/3] lockd: " Geliang Tang
@ 2016-01-04 22:44   ` J. Bruce Fields
  0 siblings, 0 replies; 5+ messages in thread
From: J. Bruce Fields @ 2016-01-04 22:44 UTC (permalink / raw)
  To: Geliang Tang
  Cc: Trond Myklebust, Anna Schumaker, Jeff Layton, linux-nfs, linux-kernel

On Fri, Jan 01, 2016 at 10:06:29PM +0800, Geliang Tang wrote:
> Use to_delayed_work() instead of open-coding it.

Thanks, applying 2/3 and 3/3 for 4.5.--b.

> 
> Signed-off-by: Geliang Tang <geliangtang@163.com>
> ---
>  fs/lockd/svc.c | 3 +--
>  1 file changed, 1 insertion(+), 2 deletions(-)
> 
> diff --git a/fs/lockd/svc.c b/fs/lockd/svc.c
> index 44d18ad..b4006c72 100644
> --- a/fs/lockd/svc.c
> +++ b/fs/lockd/svc.c
> @@ -94,8 +94,7 @@ static unsigned long get_lockd_grace_period(void)
>  
>  static void grace_ender(struct work_struct *grace)
>  {
> -	struct delayed_work *dwork = container_of(grace, struct delayed_work,
> -						  work);
> +	struct delayed_work *dwork = to_delayed_work(grace);
>  	struct lockd_net *ln = container_of(dwork, struct lockd_net,
>  					    grace_period_end);
>  
> -- 
> 2.5.0
> 

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH 1/3] jffs2: use to_delayed_work
  2016-01-01 14:06 [PATCH 1/3] jffs2: use to_delayed_work Geliang Tang
  2016-01-01 14:06 ` [PATCH 2/3] nfsd: " Geliang Tang
  2016-01-01 14:06 ` [PATCH 3/3] lockd: " Geliang Tang
@ 2016-01-06 23:17 ` Brian Norris
  2 siblings, 0 replies; 5+ messages in thread
From: Brian Norris @ 2016-01-06 23:17 UTC (permalink / raw)
  To: Geliang Tang; +Cc: David Woodhouse, linux-mtd, linux-kernel

On Fri, Jan 01, 2016 at 10:06:27PM +0800, Geliang Tang wrote:
> Use to_delayed_work() instead of open-coding it.
> 
> Signed-off-by: Geliang Tang <geliangtang@163.com>

Applied to l2-mtd.git

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2016-01-06 23:17 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-01-01 14:06 [PATCH 1/3] jffs2: use to_delayed_work Geliang Tang
2016-01-01 14:06 ` [PATCH 2/3] nfsd: " Geliang Tang
2016-01-01 14:06 ` [PATCH 3/3] lockd: " Geliang Tang
2016-01-04 22:44   ` J. Bruce Fields
2016-01-06 23:17 ` [PATCH 1/3] jffs2: " Brian Norris

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).