Re: [PATCH 2.6.12-rc1-mm2] x86_64: fix vsyscall.c syntax error

2005-03-28 Thread Andi Kleen
Mikael Pettersson <[EMAIL PROTECTED]> writes:

Can you please cc me on all x86-64 patches?


> Compiling 2.6.12-rc1-mm2 on x86_64 with gcc-4.0 fails with:
>
> arch/x86_64/kernel/vsyscall.c:193: error: syntax error before 
> 'vsyscall_sysctl_change'
>
> Fix: repair the syntax error

Looks ok thanks. I wish gcc folks wouldnt change the language in
each revision like this.

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


Re: [PATCH 2.6.12-rc1-mm2] x86_64: fix vsyscall.c syntax error

2005-03-28 Thread Andi Kleen
Mikael Pettersson [EMAIL PROTECTED] writes:

Can you please cc me on all x86-64 patches?


 Compiling 2.6.12-rc1-mm2 on x86_64 with gcc-4.0 fails with:

 arch/x86_64/kernel/vsyscall.c:193: error: syntax error before 
 'vsyscall_sysctl_change'

 Fix: repair the syntax error

Looks ok thanks. I wish gcc folks wouldnt change the language in
each revision like this.

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


[PATCH 2.6.12-rc1-mm2] x86_64: fix vsyscall.c syntax error

2005-03-24 Thread Mikael Pettersson
Compiling 2.6.12-rc1-mm2 on x86_64 with gcc-4.0 fails with:

arch/x86_64/kernel/vsyscall.c:193: error: syntax error before 
'vsyscall_sysctl_change'

Fix: repair the syntax error

Signed-off-by: Mikael Pettersson <[EMAIL PROTECTED]>

--- linux-2.6.12-rc1-mm2/arch/x86_64/kernel/vsyscall.c.~1~  2005-03-24 
16:33:50.0 +0100
+++ linux-2.6.12-rc1-mm2/arch/x86_64/kernel/vsyscall.c  2005-03-24 
19:31:40.0 +0100
@@ -190,7 +190,7 @@ static ctl_table kernel_table2[] = {
{ .ctl_name = 99, .procname = "vsyscall64",
  .data = _vsyscall, .maxlen = sizeof(int), .mode = 0644,
  .strategy = vsyscall_sysctl_nostrat,
- .proc_handler vsyscall_sysctl_change },
+ .proc_handler = vsyscall_sysctl_change },
{ 0, }
 };
 
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/


[PATCH 2.6.12-rc1-mm2] x86_64: fix vsyscall.c syntax error

2005-03-24 Thread Mikael Pettersson
Compiling 2.6.12-rc1-mm2 on x86_64 with gcc-4.0 fails with:

arch/x86_64/kernel/vsyscall.c:193: error: syntax error before 
'vsyscall_sysctl_change'

Fix: repair the syntax error

Signed-off-by: Mikael Pettersson [EMAIL PROTECTED]

--- linux-2.6.12-rc1-mm2/arch/x86_64/kernel/vsyscall.c.~1~  2005-03-24 
16:33:50.0 +0100
+++ linux-2.6.12-rc1-mm2/arch/x86_64/kernel/vsyscall.c  2005-03-24 
19:31:40.0 +0100
@@ -190,7 +190,7 @@ static ctl_table kernel_table2[] = {
{ .ctl_name = 99, .procname = vsyscall64,
  .data = sysctl_vsyscall, .maxlen = sizeof(int), .mode = 0644,
  .strategy = vsyscall_sysctl_nostrat,
- .proc_handler vsyscall_sysctl_change },
+ .proc_handler = vsyscall_sysctl_change },
{ 0, }
 };
 
-
To unsubscribe from this list: send the line unsubscribe linux-kernel in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/