Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 48012
b: refs/heads/master
c: 668f993
h: refs/heads/master
v: v3
  • Loading branch information
Alon Bar-Lev authored and Linus Torvalds committed Feb 12, 2007
1 parent 60e2984 commit a59c195
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 43cd34645d3bf35cbaa68f28b85d12d0b9e08ab9
refs/heads/master: 668f9931c812224ab2a6d57cdf2f0ec3865b68d2
8 changes: 4 additions & 4 deletions trunk/arch/parisc/kernel/setup.c
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
#include <asm/io.h>
#include <asm/setup.h>

char command_line[COMMAND_LINE_SIZE] __read_mostly;
char __initdata command_line[COMMAND_LINE_SIZE] __read_mostly;

/* Intended for ccio/sba/cpu statistics under /proc/bus/{runway|gsc} */
struct proc_dir_entry * proc_runway_root __read_mostly = NULL;
Expand All @@ -71,9 +71,9 @@ void __init setup_cmdline(char **cmdline_p)
/* boot_args[0] is free-mem start, boot_args[1] is ptr to command line */
if (boot_args[0] < 64) {
/* called from hpux boot loader */
saved_command_line[0] = '\0';
boot_command_line[0] = '\0';
} else {
strcpy(saved_command_line, (char *)__va(boot_args[1]));
strcpy(boot_command_line, (char *)__va(boot_args[1]));

#ifdef CONFIG_BLK_DEV_INITRD
if (boot_args[2] != 0) /* did palo pass us a ramdisk? */
Expand All @@ -84,7 +84,7 @@ void __init setup_cmdline(char **cmdline_p)
#endif
}

strcpy(command_line, saved_command_line);
strcpy(command_line, boot_command_line);
*cmdline_p = command_line;
}

Expand Down
4 changes: 2 additions & 2 deletions trunk/arch/parisc/mm/init.c
Original file line number Diff line number Diff line change
Expand Up @@ -77,12 +77,12 @@ static void __init mem_limit_func(void)
{
char *cp, *end;
unsigned long limit;
extern char saved_command_line[];
extern char __initdata boot_command_line[];

/* We need this before __setup() functions are called */

limit = MAX_MEM;
for (cp = saved_command_line; *cp; ) {
for (cp = boot_command_line; *cp; ) {
if (memcmp(cp, "mem=", 4) == 0) {
cp += 4;
limit = memparse(cp, &end);
Expand Down

0 comments on commit a59c195

Please sign in to comment.