Hi Steven,
2012.06.05. 23:19 keltezéssel, Steven J. Hill írta:
> From: "Steven J. Hill" <sjhill@mips.com>
>
> Signed-off-by: Steven J. Hill <sjhill@mips.com>
> ---
> arch/mips/ath79/prom.c | 20 ++++----------------
> 1 file changed, 4 insertions(+), 16 deletions(-)
>
> diff --git a/arch/mips/ath79/prom.c b/arch/mips/ath79/prom.c
> index e9cbd7c..adbe614 100644
> --- a/arch/mips/ath79/prom.c
> +++ b/arch/mips/ath79/prom.c
> @@ -14,7 +14,7 @@
> #include <linux/io.h>
> #include <linux/string.h>
>
> -#include <asm/bootinfo.h>
> +#include <asm/fw/fw.h>
> #include <asm/addrspace.h>
>
> #include "common.h"
> @@ -32,23 +32,11 @@ static inline int is_valid_ram_addr(void *addr)
> return 0;
> }
>
> -static __init void ath79_prom_init_cmdline(int argc, char **argv)
> -{
> - int i;
> -
> - if (!is_valid_ram_addr(argv))
> - return;
> -
> - for (i = 0; i < argc; i++)
> - if (is_valid_ram_addr(argv[i])) {
Please don't remove this validation. The Atheros AR7xxx/AR9xxx based boards are
using various bootloaders. Some of them puts insane values in argv, and this
validation ensures that the kernel will not crash with them.
> - strlcat(arcs_cmdline, " ", sizeof(arcs_cmdline));
> - strlcat(arcs_cmdline, argv[i], sizeof(arcs_cmdline));
> - }
> -}
> -
> void __init prom_init(void)
> {
> - ath79_prom_init_cmdline(fw_arg0, (char **)fw_arg1);
> + if (!is_valid_ram_addr((int *)fw_arg1))
The 'is_valid_ram_addr' function requires a 'void *' argument, so it would be
more precise to use that instead of 'int *' in the cast.
> + return;
> + fw_init_cmdline();
> }
>
> void __init prom_free_prom_memory(void)
-Gabor
|