All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH -queue 1/2] MIPS: Alchemy: remove prom_getcmdline()
@ 2010-02-01 13:05 Yoichi Yuasa
  2010-02-01 13:06 ` [PATCH -queue 2/2] MIPS: Alchemy: use strlcat() for the command line arguments Yoichi Yuasa
  2010-02-01 15:38 ` [PATCH -queue 1/2] MIPS: Alchemy: remove prom_getcmdline() Ralf Baechle
  0 siblings, 2 replies; 4+ messages in thread
From: Yoichi Yuasa @ 2010-02-01 13:05 UTC (permalink / raw)
  To: Ralf Baechle; +Cc: yuasa, linux-mips

Signed-off-by: Yoichi Yuasa <yuasa@linux-mips.org>
---
 arch/mips/alchemy/common/prom.c          |    9 +--------
 arch/mips/include/asm/mach-au1x00/prom.h |    1 -
 2 files changed, 1 insertions(+), 9 deletions(-)

diff --git a/arch/mips/alchemy/common/prom.c b/arch/mips/alchemy/common/prom.c
index 18b310b..79e099f 100644
--- a/arch/mips/alchemy/common/prom.c
+++ b/arch/mips/alchemy/common/prom.c
@@ -43,11 +43,6 @@ int prom_argc;
 char **prom_argv;
 char **prom_envp;
 
-char * __init_or_module prom_getcmdline(void)
-{
-	return &(arcs_cmdline[0]);
-}
-
 void prom_init_cmdline(void)
 {
 	char *cp;
@@ -121,14 +116,12 @@ static inline void str2eaddr(unsigned char *ea, unsigned char *str)
 int prom_get_ethernet_addr(char *ethernet_addr)
 {
 	char *ethaddr_str;
-	char *argptr;
 
 	/* Check the environment variables first */
 	ethaddr_str = prom_getenv("ethaddr");
 	if (!ethaddr_str) {
 		/* Check command line */
-		argptr = prom_getcmdline();
-		ethaddr_str = strstr(argptr, "ethaddr=");
+		ethaddr_str = strstr(arcs_cmdline, "ethaddr=");
 		if (!ethaddr_str)
 			return -1;
 
diff --git a/arch/mips/include/asm/mach-au1x00/prom.h b/arch/mips/include/asm/mach-au1x00/prom.h
index e387155..4c0e09c 100644
--- a/arch/mips/include/asm/mach-au1x00/prom.h
+++ b/arch/mips/include/asm/mach-au1x00/prom.h
@@ -6,7 +6,6 @@ extern char **prom_argv;
 extern char **prom_envp;
 
 extern void prom_init_cmdline(void);
-extern char *prom_getcmdline(void);
 extern char *prom_getenv(char *envname);
 extern int prom_get_ethernet_addr(char *ethernet_addr);
 
-- 
1.6.6.1

^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [PATCH -queue 2/2] MIPS: Alchemy: use strlcat() for the command line arguments
  2010-02-01 13:05 [PATCH -queue 1/2] MIPS: Alchemy: remove prom_getcmdline() Yoichi Yuasa
@ 2010-02-01 13:06 ` Yoichi Yuasa
  2010-02-01 15:38   ` Ralf Baechle
  2010-02-01 15:38 ` [PATCH -queue 1/2] MIPS: Alchemy: remove prom_getcmdline() Ralf Baechle
  1 sibling, 1 reply; 4+ messages in thread
From: Yoichi Yuasa @ 2010-02-01 13:06 UTC (permalink / raw)
  To: Ralf Baechle; +Cc: yuasa, linux-mips

Signed-off-by: Yoichi Yuasa <yuasa@linux-mips.org>
---
 arch/mips/alchemy/common/prom.c |   19 +++++--------------
 1 files changed, 5 insertions(+), 14 deletions(-)

diff --git a/arch/mips/alchemy/common/prom.c b/arch/mips/alchemy/common/prom.c
index 79e099f..c29511b 100644
--- a/arch/mips/alchemy/common/prom.c
+++ b/arch/mips/alchemy/common/prom.c
@@ -45,22 +45,13 @@ char **prom_envp;
 
 void prom_init_cmdline(void)
 {
-	char *cp;
-	int actr;
-
-	actr = 1; /* Always ignore argv[0] */
+	int i;
 
-	cp = &(arcs_cmdline[0]);
-	while (actr < prom_argc) {
-		strcpy(cp, prom_argv[actr]);
-		cp += strlen(prom_argv[actr]);
-		*cp++ = ' ';
-		actr++;
+	for (i = 1; i < prom_argc; i++) {
+		strlcat(arcs_cmdline, prom_argv[i], COMMAND_LINE_SIZE);
+		if (i < (prom_argc - 1))
+			strlcat(arcs_cmdline, " ", COMMAND_LINE_SIZE);
 	}
-	if (cp != &(arcs_cmdline[0])) /* get rid of trailing space */
-		--cp;
-	if (prom_argc > 1)
-		*cp = '\0';
 }
 
 char *prom_getenv(char *envname)
-- 
1.6.6.1

^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [PATCH -queue 1/2] MIPS: Alchemy: remove prom_getcmdline()
  2010-02-01 13:05 [PATCH -queue 1/2] MIPS: Alchemy: remove prom_getcmdline() Yoichi Yuasa
  2010-02-01 13:06 ` [PATCH -queue 2/2] MIPS: Alchemy: use strlcat() for the command line arguments Yoichi Yuasa
@ 2010-02-01 15:38 ` Ralf Baechle
  1 sibling, 0 replies; 4+ messages in thread
From: Ralf Baechle @ 2010-02-01 15:38 UTC (permalink / raw)
  To: Yoichi Yuasa; +Cc: linux-mips

On Mon, Feb 01, 2010 at 10:05:57PM +0900, Yoichi Yuasa wrote:

Thanks, queued for 2.6.34.

  Ralf

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH -queue 2/2] MIPS: Alchemy: use strlcat() for the command line arguments
  2010-02-01 13:06 ` [PATCH -queue 2/2] MIPS: Alchemy: use strlcat() for the command line arguments Yoichi Yuasa
@ 2010-02-01 15:38   ` Ralf Baechle
  0 siblings, 0 replies; 4+ messages in thread
From: Ralf Baechle @ 2010-02-01 15:38 UTC (permalink / raw)
  To: Yoichi Yuasa; +Cc: linux-mips

On Mon, Feb 01, 2010 at 10:06:56PM +0900, Yoichi Yuasa wrote:

Thanks, queued for 2.6.34.

  Ralf

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2010-02-01 15:38 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-02-01 13:05 [PATCH -queue 1/2] MIPS: Alchemy: remove prom_getcmdline() Yoichi Yuasa
2010-02-01 13:06 ` [PATCH -queue 2/2] MIPS: Alchemy: use strlcat() for the command line arguments Yoichi Yuasa
2010-02-01 15:38   ` Ralf Baechle
2010-02-01 15:38 ` [PATCH -queue 1/2] MIPS: Alchemy: remove prom_getcmdline() Ralf Baechle

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.