public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] code clean in __flush_tlb_one()
@ 2013-06-04  6:28 Michael Wang
  2013-06-04  6:53 ` Alex Shi
  2013-06-12 20:47 ` [tip:x86/cleanups] x86, cleanups: Remove extra tab " tip-bot for Michael Wang
  0 siblings, 2 replies; 4+ messages in thread
From: Michael Wang @ 2013-06-04  6:28 UTC (permalink / raw)
  To: x86, LKML, Thomas Gleixner, Ingo Molnar, H. Peter Anvin, Alex Shi,
	fenghua.yu

Remove the extra space in __flush_tlb_one()

CC: Thomas Gleixner <tglx@linutronix.de>
CC: Ingo Molnar <mingo@redhat.com>
CC: "H. Peter Anvin" <hpa@zytor.com>
CC: Alex Shi <alex.shi@intel.com>
CC: Fenghua Yu <fenghua.yu@intel.com>
Signed-off-by: Michael Wang <wangyun@linux.vnet.ibm.com>
---
 arch/x86/include/asm/tlbflush.h |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/arch/x86/include/asm/tlbflush.h
b/arch/x86/include/asm/tlbflush.h
index 50a7fc0..cf51200 100644
--- a/arch/x86/include/asm/tlbflush.h
+++ b/arch/x86/include/asm/tlbflush.h
@@ -62,7 +62,7 @@ static inline void __flush_tlb_all(void)

 static inline void __flush_tlb_one(unsigned long addr)
 {
-		__flush_tlb_single(addr);
+	__flush_tlb_single(addr);
 }

 #define TLB_FLUSH_ALL	-1UL
-- 
1.7.4.1


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

* Re: [PATCH] code clean in __flush_tlb_one()
  2013-06-04  6:28 [PATCH] code clean in __flush_tlb_one() Michael Wang
@ 2013-06-04  6:53 ` Alex Shi
  2013-06-04  6:56   ` Michael Wang
  2013-06-12 20:47 ` [tip:x86/cleanups] x86, cleanups: Remove extra tab " tip-bot for Michael Wang
  1 sibling, 1 reply; 4+ messages in thread
From: Alex Shi @ 2013-06-04  6:53 UTC (permalink / raw)
  To: Michael Wang
  Cc: x86, LKML, Thomas Gleixner, Ingo Molnar, H. Peter Anvin,
	fenghua.yu

On 06/04/2013 02:28 PM, Michael Wang wrote:
> Remove the extra space in __flush_tlb_one()

It even don't need a reviewed-by. :)

Thanks!
> 
> CC: Thomas Gleixner <tglx@linutronix.de>
> CC: Ingo Molnar <mingo@redhat.com>
> CC: "H. Peter Anvin" <hpa@zytor.com>
> CC: Alex Shi <alex.shi@intel.com>
> CC: Fenghua Yu <fenghua.yu@intel.com>
> Signed-off-by: Michael Wang <wangyun@linux.vnet.ibm.com>
> ---
>  arch/x86/include/asm/tlbflush.h |    2 +-
>  1 files changed, 1 insertions(+), 1 deletions(-)
> 
> diff --git a/arch/x86/include/asm/tlbflush.h
> b/arch/x86/include/asm/tlbflush.h
> index 50a7fc0..cf51200 100644
> --- a/arch/x86/include/asm/tlbflush.h
> +++ b/arch/x86/include/asm/tlbflush.h
> @@ -62,7 +62,7 @@ static inline void __flush_tlb_all(void)
> 
>  static inline void __flush_tlb_one(unsigned long addr)
>  {
> -		__flush_tlb_single(addr);
> +	__flush_tlb_single(addr);
>  }
> 
>  #define TLB_FLUSH_ALL	-1UL
> 


-- 
Thanks
    Alex

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

* Re: [PATCH] code clean in __flush_tlb_one()
  2013-06-04  6:53 ` Alex Shi
@ 2013-06-04  6:56   ` Michael Wang
  0 siblings, 0 replies; 4+ messages in thread
From: Michael Wang @ 2013-06-04  6:56 UTC (permalink / raw)
  To: Alex Shi
  Cc: x86, LKML, Thomas Gleixner, Ingo Molnar, H. Peter Anvin,
	fenghua.yu

On 06/04/2013 02:53 PM, Alex Shi wrote:
> On 06/04/2013 02:28 PM, Michael Wang wrote:
>> Remove the extra space in __flush_tlb_one()
> 
> It even don't need a reviewed-by. :)

Still thanks for your review :)

Regards,
Michael Wang

> 
> Thanks!
>>
>> CC: Thomas Gleixner <tglx@linutronix.de>
>> CC: Ingo Molnar <mingo@redhat.com>
>> CC: "H. Peter Anvin" <hpa@zytor.com>
>> CC: Alex Shi <alex.shi@intel.com>
>> CC: Fenghua Yu <fenghua.yu@intel.com>
>> Signed-off-by: Michael Wang <wangyun@linux.vnet.ibm.com>
>> ---
>>  arch/x86/include/asm/tlbflush.h |    2 +-
>>  1 files changed, 1 insertions(+), 1 deletions(-)
>>
>> diff --git a/arch/x86/include/asm/tlbflush.h
>> b/arch/x86/include/asm/tlbflush.h
>> index 50a7fc0..cf51200 100644
>> --- a/arch/x86/include/asm/tlbflush.h
>> +++ b/arch/x86/include/asm/tlbflush.h
>> @@ -62,7 +62,7 @@ static inline void __flush_tlb_all(void)
>>
>>  static inline void __flush_tlb_one(unsigned long addr)
>>  {
>> -		__flush_tlb_single(addr);
>> +	__flush_tlb_single(addr);
>>  }
>>
>>  #define TLB_FLUSH_ALL	-1UL
>>
> 
> 


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

* [tip:x86/cleanups] x86, cleanups: Remove extra tab in __flush_tlb_one()
  2013-06-04  6:28 [PATCH] code clean in __flush_tlb_one() Michael Wang
  2013-06-04  6:53 ` Alex Shi
@ 2013-06-12 20:47 ` tip-bot for Michael Wang
  1 sibling, 0 replies; 4+ messages in thread
From: tip-bot for Michael Wang @ 2013-06-12 20:47 UTC (permalink / raw)
  To: linux-tip-commits
  Cc: linux-kernel, hpa, mingo, alex.shi, fenghua.yu, wangyun, tglx,
	hpa

Commit-ID:  e8747f10ba3f7638b1c1fcab9c66a01733213d45
Gitweb:     http://git.kernel.org/tip/e8747f10ba3f7638b1c1fcab9c66a01733213d45
Author:     Michael Wang <wangyun@linux.vnet.ibm.com>
AuthorDate: Tue, 4 Jun 2013 14:28:18 +0800
Committer:  H. Peter Anvin <hpa@linux.intel.com>
CommitDate: Tue, 4 Jun 2013 11:51:26 -0700

x86, cleanups: Remove extra tab in __flush_tlb_one()

Remove the extra tab in __flush_tlb_one().

CC: Alex Shi <alex.shi@intel.com>
CC: Fenghua Yu <fenghua.yu@intel.com>
Signed-off-by: Michael Wang <wangyun@linux.vnet.ibm.com>
Link: http://lkml.kernel.org/r/51AD8902.60603@linux.vnet.ibm.com
Signed-off-by: H. Peter Anvin <hpa@linux.intel.com>
---
 arch/x86/include/asm/tlbflush.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arch/x86/include/asm/tlbflush.h b/arch/x86/include/asm/tlbflush.h
index 50a7fc0..cf51200 100644
--- a/arch/x86/include/asm/tlbflush.h
+++ b/arch/x86/include/asm/tlbflush.h
@@ -62,7 +62,7 @@ static inline void __flush_tlb_all(void)
 
 static inline void __flush_tlb_one(unsigned long addr)
 {
-		__flush_tlb_single(addr);
+	__flush_tlb_single(addr);
 }
 
 #define TLB_FLUSH_ALL	-1UL

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

end of thread, other threads:[~2013-06-12 20:48 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-06-04  6:28 [PATCH] code clean in __flush_tlb_one() Michael Wang
2013-06-04  6:53 ` Alex Shi
2013-06-04  6:56   ` Michael Wang
2013-06-12 20:47 ` [tip:x86/cleanups] x86, cleanups: Remove extra tab " tip-bot for Michael Wang

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox