Re: [PATCH 3/6]] POWERPC: fix memset size error

2007-11-04 Thread Benjamin Herrenschmidt

On Mon, 2007-11-05 at 10:21 +0800, Li Zefan wrote:
> The size passing to memset is wrong.
> 
> Signed-off-by Li Zefan <[EMAIL PROTECTED]>

Good catch, looks like a remain of when path was an array on the stack.

Thanks !

Acked-by: Benjamin Herrenschmidt <[EMAIL PROTECTED]>

> 
> ---
>  arch/powerpc/kernel/prom_init.c |2 +-
>  1 files changed, 1 insertions(+), 1 deletions(-)
> 
> diff --git a/arch/powerpc/kernel/prom_init.c b/arch/powerpc/kernel/prom_init.c
> index 1db10f7..1add6ef 100644
> --- a/arch/powerpc/kernel/prom_init.c
> +++ b/arch/powerpc/kernel/prom_init.c
> @@ -1244,7 +1244,7 @@ static void __init prom_initialize_tce_table(void)
>   local_alloc_bottom = base;
>  
>   /* It seems OF doesn't null-terminate the path :-( */
> - memset(path, 0, sizeof(path));
> + memset(path, 0, PROM_SCRATCH_SIZE);
>   /* Call OF to setup the TCE hardware */
>   if (call_prom("package-to-path", 3, 1, node,
> path, PROM_SCRATCH_SIZE-1) == PROM_ERROR) {

-
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 3/6]] POWERPC: fix memset size error

2007-11-04 Thread Li Zefan

The size passing to memset is wrong.

Signed-off-by Li Zefan <[EMAIL PROTECTED]>

---
 arch/powerpc/kernel/prom_init.c |2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/arch/powerpc/kernel/prom_init.c b/arch/powerpc/kernel/prom_init.c
index 1db10f7..1add6ef 100644
--- a/arch/powerpc/kernel/prom_init.c
+++ b/arch/powerpc/kernel/prom_init.c
@@ -1244,7 +1244,7 @@ static void __init prom_initialize_tce_table(void)
local_alloc_bottom = base;
 
/* It seems OF doesn't null-terminate the path :-( */
-   memset(path, 0, sizeof(path));
+   memset(path, 0, PROM_SCRATCH_SIZE);
/* Call OF to setup the TCE hardware */
if (call_prom("package-to-path", 3, 1, node,
  path, PROM_SCRATCH_SIZE-1) == PROM_ERROR) {
-- 
1.5.3.rc7

-
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 3/6]] POWERPC: fix memset size error

2007-11-04 Thread Li Zefan

The size passing to memset is wrong.

Signed-off-by Li Zefan [EMAIL PROTECTED]

---
 arch/powerpc/kernel/prom_init.c |2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/arch/powerpc/kernel/prom_init.c b/arch/powerpc/kernel/prom_init.c
index 1db10f7..1add6ef 100644
--- a/arch/powerpc/kernel/prom_init.c
+++ b/arch/powerpc/kernel/prom_init.c
@@ -1244,7 +1244,7 @@ static void __init prom_initialize_tce_table(void)
local_alloc_bottom = base;
 
/* It seems OF doesn't null-terminate the path :-( */
-   memset(path, 0, sizeof(path));
+   memset(path, 0, PROM_SCRATCH_SIZE);
/* Call OF to setup the TCE hardware */
if (call_prom(package-to-path, 3, 1, node,
  path, PROM_SCRATCH_SIZE-1) == PROM_ERROR) {
-- 
1.5.3.rc7

-
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 3/6]] POWERPC: fix memset size error

2007-11-04 Thread Benjamin Herrenschmidt

On Mon, 2007-11-05 at 10:21 +0800, Li Zefan wrote:
 The size passing to memset is wrong.
 
 Signed-off-by Li Zefan [EMAIL PROTECTED]

Good catch, looks like a remain of when path was an array on the stack.

Thanks !

Acked-by: Benjamin Herrenschmidt [EMAIL PROTECTED]

 
 ---
  arch/powerpc/kernel/prom_init.c |2 +-
  1 files changed, 1 insertions(+), 1 deletions(-)
 
 diff --git a/arch/powerpc/kernel/prom_init.c b/arch/powerpc/kernel/prom_init.c
 index 1db10f7..1add6ef 100644
 --- a/arch/powerpc/kernel/prom_init.c
 +++ b/arch/powerpc/kernel/prom_init.c
 @@ -1244,7 +1244,7 @@ static void __init prom_initialize_tce_table(void)
   local_alloc_bottom = base;
  
   /* It seems OF doesn't null-terminate the path :-( */
 - memset(path, 0, sizeof(path));
 + memset(path, 0, PROM_SCRATCH_SIZE);
   /* Call OF to setup the TCE hardware */
   if (call_prom(package-to-path, 3, 1, node,
 path, PROM_SCRATCH_SIZE-1) == PROM_ERROR) {

-
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/