* [PATCH] x86: change a temporary variable name in ia32_signal.c
@ 2010-08-18 5:15 Namhyung Kim
2010-08-18 5:44 ` Américo Wang
0 siblings, 1 reply; 2+ messages in thread
From: Namhyung Kim @ 2010-08-18 5:15 UTC (permalink / raw)
To: Thomas Gleixner, Ingo Molnar, H. Peter Anvin; +Cc: x86, linux-kernel
This removes following sparse warnings:
ia32_signal.c:240:17: warning: symbol 'tmp' shadows an earlier one
ia32_signal.c:228:13: originally declared here
ia32_signal.c:241:17: warning: symbol 'tmp' shadows an earlier one
ia32_signal.c:228:13: originally declared here
ia32_signal.c:242:17: warning: symbol 'tmp' shadows an earlier one
ia32_signal.c:228:13: originally declared here
ia32_signal.c:243:17: warning: symbol 'tmp' shadows an earlier one
ia32_signal.c:228:13: originally declared here
ia32_signal.c:249:17: warning: symbol 'tmp' shadows an earlier one
ia32_signal.c:228:13: originally declared here
ia32_signal.c:250:17: warning: symbol 'tmp' shadows an earlier one
ia32_signal.c:228:13: originally declared here
Signed-off-by: Namhyung Kim <namhyung@gmail.com>
---
arch/x86/ia32/ia32_signal.c | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/arch/x86/ia32/ia32_signal.c b/arch/x86/ia32/ia32_signal.c
index 348928a..6db169d 100644
--- a/arch/x86/ia32/ia32_signal.c
+++ b/arch/x86/ia32/ia32_signal.c
@@ -202,9 +202,9 @@ asmlinkage long sys32_sigaltstack(const stack_ia32_t __user *uss_ptr,
}
#define GET_SEG(seg) ({ \
- unsigned short tmp; \
- get_user_ex(tmp, &sc->seg); \
- tmp; \
+ unsigned short __tmp; \
+ get_user_ex(__tmp, &sc->seg); \
+ __tmp; \
})
#define COPY_SEG_CPL3(seg) do { \
--
1.7.0.4
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: [PATCH] x86: change a temporary variable name in ia32_signal.c
2010-08-18 5:15 [PATCH] x86: change a temporary variable name in ia32_signal.c Namhyung Kim
@ 2010-08-18 5:44 ` Américo Wang
0 siblings, 0 replies; 2+ messages in thread
From: Américo Wang @ 2010-08-18 5:44 UTC (permalink / raw)
To: Namhyung Kim
Cc: Thomas Gleixner, Ingo Molnar, H. Peter Anvin, x86, linux-kernel
On Wed, Aug 18, 2010 at 02:15:20PM +0900, Namhyung Kim wrote:
>This removes following sparse warnings:
>
> ia32_signal.c:240:17: warning: symbol 'tmp' shadows an earlier one
> ia32_signal.c:228:13: originally declared here
> ia32_signal.c:241:17: warning: symbol 'tmp' shadows an earlier one
> ia32_signal.c:228:13: originally declared here
> ia32_signal.c:242:17: warning: symbol 'tmp' shadows an earlier one
> ia32_signal.c:228:13: originally declared here
> ia32_signal.c:243:17: warning: symbol 'tmp' shadows an earlier one
> ia32_signal.c:228:13: originally declared here
> ia32_signal.c:249:17: warning: symbol 'tmp' shadows an earlier one
> ia32_signal.c:228:13: originally declared here
> ia32_signal.c:250:17: warning: symbol 'tmp' shadows an earlier one
> ia32_signal.c:228:13: originally declared here
>
>Signed-off-by: Namhyung Kim <namhyung@gmail.com>
Reviewed-by: WANG Cong <xiyou.wangcong@gmail.com>
Thanks.
>---
> arch/x86/ia32/ia32_signal.c | 6 +++---
> 1 files changed, 3 insertions(+), 3 deletions(-)
>
>diff --git a/arch/x86/ia32/ia32_signal.c b/arch/x86/ia32/ia32_signal.c
>index 348928a..6db169d 100644
>--- a/arch/x86/ia32/ia32_signal.c
>+++ b/arch/x86/ia32/ia32_signal.c
>@@ -202,9 +202,9 @@ asmlinkage long sys32_sigaltstack(const stack_ia32_t __user *uss_ptr,
> }
>
> #define GET_SEG(seg) ({ \
>- unsigned short tmp; \
>- get_user_ex(tmp, &sc->seg); \
>- tmp; \
>+ unsigned short __tmp; \
>+ get_user_ex(__tmp, &sc->seg); \
>+ __tmp; \
> })
>
> #define COPY_SEG_CPL3(seg) do { \
>--
>1.7.0.4
>
>--
>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/
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2010-08-18 5:40 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2010-08-18 5:15 [PATCH] x86: change a temporary variable name in ia32_signal.c Namhyung Kim
2010-08-18 5:44 ` Américo Wang
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®