All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] kernel/sysctl.c: Clean up indentation, replace spaces with tab.
@ 2022-05-22  5:29 bh1scw
  2022-06-09 14:03 ` Luis Chamberlain
  2022-06-18  9:15 ` Fanjun Kong
  0 siblings, 2 replies; 4+ messages in thread
From: bh1scw @ 2022-05-22  5:29 UTC (permalink / raw)
  To: mcgrof, keescook, yzaikin
  Cc: linux-fsdevel, linux-kernel, songmuchun, Fanjun Kong

From: Fanjun Kong <bh1scw@gmail.com>

This patch fixes two coding style issues:
1. Clean up indentation, replace spaces with tab
2. Add space after ','

Signed-off-by: Fanjun Kong <bh1scw@gmail.com>
---
 kernel/sysctl.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/kernel/sysctl.c b/kernel/sysctl.c
index e52b6e372c60..de8da34e02a5 100644
--- a/kernel/sysctl.c
+++ b/kernel/sysctl.c
@@ -1277,8 +1277,8 @@ int proc_dointvec_jiffies(struct ctl_table *table, int write,
 int proc_dointvec_userhz_jiffies(struct ctl_table *table, int write,
 				 void *buffer, size_t *lenp, loff_t *ppos)
 {
-    return do_proc_dointvec(table,write,buffer,lenp,ppos,
-		    	    do_proc_dointvec_userhz_jiffies_conv,NULL);
+	return do_proc_dointvec(table, write, buffer, lenp, ppos,
+				do_proc_dointvec_userhz_jiffies_conv, NULL);
 }
 
 /**
-- 
2.36.0


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

* Re: [PATCH] kernel/sysctl.c: Clean up indentation, replace spaces with tab.
  2022-05-22  5:29 [PATCH] kernel/sysctl.c: Clean up indentation, replace spaces with tab bh1scw
@ 2022-06-09 14:03 ` Luis Chamberlain
  2022-06-18  9:15 ` Fanjun Kong
  1 sibling, 0 replies; 4+ messages in thread
From: Luis Chamberlain @ 2022-06-09 14:03 UTC (permalink / raw)
  To: bh1scw; +Cc: keescook, yzaikin, linux-fsdevel, linux-kernel, songmuchun

On Sun, May 22, 2022 at 01:29:33PM +0800, bh1scw@gmail.com wrote:
> From: Fanjun Kong <bh1scw@gmail.com>
> 
> This patch fixes two coding style issues:
> 1. Clean up indentation, replace spaces with tab
> 2. Add space after ','
> 
> Signed-off-by: Fanjun Kong <bh1scw@gmail.com>

Queued up to sysctl-next, thanks!

  Luis

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

* Re: [PATCH] kernel/sysctl.c: Clean up indentation, replace spaces with tab.
  2022-05-22  5:29 [PATCH] kernel/sysctl.c: Clean up indentation, replace spaces with tab bh1scw
  2022-06-09 14:03 ` Luis Chamberlain
@ 2022-06-18  9:15 ` Fanjun Kong
  2022-06-18  9:35   ` Fanjun Kong
  1 sibling, 1 reply; 4+ messages in thread
From: Fanjun Kong @ 2022-06-18  9:15 UTC (permalink / raw)
  To: songmuchun, mcgrof, keescook, yzaikin; +Cc: bh1scw, linux-fsdevel, linux-kernel

Hi maintainer,

Could you help to review this patch? 

Thanks so much.

On 22 May 22 ◦ 13:29, bh1scw@gmail.com wrote:
> From: Fanjun Kong <bh1scw@gmail.com>
> 
> This patch fixes two coding style issues:
> 1. Clean up indentation, replace spaces with tab
> 2. Add space after ','
> 
> Signed-off-by: Fanjun Kong <bh1scw@gmail.com>
> ---
>  kernel/sysctl.c | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/kernel/sysctl.c b/kernel/sysctl.c
> index e52b6e372c60..de8da34e02a5 100644
> --- a/kernel/sysctl.c
> +++ b/kernel/sysctl.c
> @@ -1277,8 +1277,8 @@ int proc_dointvec_jiffies(struct ctl_table *table, int write,
>  int proc_dointvec_userhz_jiffies(struct ctl_table *table, int write,
>  				 void *buffer, size_t *lenp, loff_t *ppos)
>  {
> -    return do_proc_dointvec(table,write,buffer,lenp,ppos,
> -		    	    do_proc_dointvec_userhz_jiffies_conv,NULL);
> +	return do_proc_dointvec(table, write, buffer, lenp, ppos,
> +				do_proc_dointvec_userhz_jiffies_conv, NULL);
>  }
>  
>  /**
> -- 
> 2.36.0
> 

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

* Re: [PATCH] kernel/sysctl.c: Clean up indentation, replace spaces with tab.
  2022-06-18  9:15 ` Fanjun Kong
@ 2022-06-18  9:35   ` Fanjun Kong
  0 siblings, 0 replies; 4+ messages in thread
From: Fanjun Kong @ 2022-06-18  9:35 UTC (permalink / raw)
  To: songmuchun, mcgrof, keescook, yzaikin, bh1scw, linux-fsdevel,
	linux-kernel

On 18 6月 22 ◦ 17:15, Fanjun Kong wrote:
> Hi maintainer,
> 
> Could you help to review this patch? 
I am so sorry for my last email, I have not noticed Luis has already helped
me because I just switch my email from gmail to linux.dev.

Best wishes.

> 
> Thanks so much.
> 
> On 22 May 22 ◦ 13:29, bh1scw@gmail.com wrote:
> > From: Fanjun Kong <bh1scw@gmail.com>
> > 
> > This patch fixes two coding style issues:
> > 1. Clean up indentation, replace spaces with tab
> > 2. Add space after ','
> > 
> > Signed-off-by: Fanjun Kong <bh1scw@gmail.com>
> > ---
> >  kernel/sysctl.c | 4 ++--
> >  1 file changed, 2 insertions(+), 2 deletions(-)
> > 
> > diff --git a/kernel/sysctl.c b/kernel/sysctl.c
> > index e52b6e372c60..de8da34e02a5 100644
> > --- a/kernel/sysctl.c
> > +++ b/kernel/sysctl.c
> > @@ -1277,8 +1277,8 @@ int proc_dointvec_jiffies(struct ctl_table *table, int write,
> >  int proc_dointvec_userhz_jiffies(struct ctl_table *table, int write,
> >  				 void *buffer, size_t *lenp, loff_t *ppos)
> >  {
> > -    return do_proc_dointvec(table,write,buffer,lenp,ppos,
> > -		    	    do_proc_dointvec_userhz_jiffies_conv,NULL);
> > +	return do_proc_dointvec(table, write, buffer, lenp, ppos,
> > +				do_proc_dointvec_userhz_jiffies_conv, NULL);
> >  }
> >  
> >  /**
> > -- 
> > 2.36.0
> > 

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

end of thread, other threads:[~2022-06-18  9:35 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-05-22  5:29 [PATCH] kernel/sysctl.c: Clean up indentation, replace spaces with tab bh1scw
2022-06-09 14:03 ` Luis Chamberlain
2022-06-18  9:15 ` Fanjun Kong
2022-06-18  9:35   ` Fanjun Kong

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.