Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1244469 > unrolled thread

[RFC] fixmap: change temp variable name

Started byyalin wang <yalin.wang2010@gmail.com>
First post2015-10-12 10:10 +0200
Last post2015-10-12 11:10 +0200
Articles 2 — 2 participants

Back to article view | Back to linux.kernel


Contents

  [RFC] fixmap: change temp variable name yalin wang <yalin.wang2010@gmail.com> - 2015-10-12 10:10 +0200
    Re: [RFC] fixmap: change temp variable name Thomas Gleixner <tglx@linutronix.de> - 2015-10-12 11:10 +0200

#1244469 — [RFC] fixmap: change temp variable name

Fromyalin wang <yalin.wang2010@gmail.com>
Date2015-10-12 10:10 +0200
Subject[RFC] fixmap: change temp variable name
Message-ID<qiGld-1p0-21@gated-at.bofh.it>
Change temp variable name addr to ____addr,
so that not conflict with the caller's variable name,
it will build error if call like this:
__set_fixmap_offset(idx, addr, flags)

Signed-off-by: yalin wang <yalin.wang2010@gmail.com>
---
 include/asm-generic/fixmap.h | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/include/asm-generic/fixmap.h b/include/asm-generic/fixmap.h
index 1cbb833..91ecaed 100644
--- a/include/asm-generic/fixmap.h
+++ b/include/asm-generic/fixmap.h
@@ -72,10 +72,10 @@ static inline unsigned long virt_to_fix(const unsigned long vaddr)
 /* Return a pointer with offset calculated */
 #define __set_fixmap_offset(idx, phys, flags)		      \
 ({							      \
-	unsigned long addr;				      \
+	unsigned long ____addr;				      \
 	__set_fixmap(idx, phys, flags);			      \
-	addr = fix_to_virt(idx) + ((phys) & (PAGE_SIZE - 1)); \
-	addr;						      \
+	____addr = fix_to_virt(idx) + ((phys) & (PAGE_SIZE - 1)); \
+	____addr;						      \
 })
 
 #define set_fixmap_offset(idx, phys) \
-- 
1.9.1

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

[toc] | [next] | [standalone]


#1244500

FromThomas Gleixner <tglx@linutronix.de>
Date2015-10-12 11:10 +0200
Message-ID<qiHhg-2LN-25@gated-at.bofh.it>
In reply to#1244469
On Mon, 12 Oct 2015, yalin wang wrote:
> Change temp variable name addr to ____addr,
> so that not conflict with the caller's variable name,
> it will build error if call like this:
> __set_fixmap_offset(idx, addr, flags)

Can't we just use inlines to avoid this kind of crap?

Thanks,

	tglx
 
> Signed-off-by: yalin wang <yalin.wang2010@gmail.com>
> ---
>  include/asm-generic/fixmap.h | 6 +++---
>  1 file changed, 3 insertions(+), 3 deletions(-)
> 
> diff --git a/include/asm-generic/fixmap.h b/include/asm-generic/fixmap.h
> index 1cbb833..91ecaed 100644
> --- a/include/asm-generic/fixmap.h
> +++ b/include/asm-generic/fixmap.h
> @@ -72,10 +72,10 @@ static inline unsigned long virt_to_fix(const unsigned long vaddr)
>  /* Return a pointer with offset calculated */
>  #define __set_fixmap_offset(idx, phys, flags)		      \
>  ({							      \
> -	unsigned long addr;				      \
> +	unsigned long ____addr;				      \
>  	__set_fixmap(idx, phys, flags);			      \
> -	addr = fix_to_virt(idx) + ((phys) & (PAGE_SIZE - 1)); \
> -	addr;						      \
> +	____addr = fix_to_virt(idx) + ((phys) & (PAGE_SIZE - 1)); \
> +	____addr;						      \
>  })
>  
>  #define set_fixmap_offset(idx, phys) \
> -- 
> 1.9.1
> 
> --
> To unsubscribe from this list: send the line "unsubscribe linux-arch" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html
> 
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

[toc] | [prev] | [standalone]


Back to top | Article view | linux.kernel


csiph-web