Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 221574
b: refs/heads/master
c: d59e609
h: refs/heads/master
v: v3
  • Loading branch information
Chris Metcalf committed Nov 1, 2010
1 parent 303b45c commit fb301b1
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 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: 5d966115de84c22cd4df029cb00be0e51fab6c10
refs/heads/master: d59e609d6568ba5ab23c256f412ac5ec360722c1
8 changes: 6 additions & 2 deletions trunk/arch/tile/mm/init.c
Original file line number Diff line number Diff line change
Expand Up @@ -988,8 +988,12 @@ static long __write_once initfree = 1;
/* Select whether to free (1) or mark unusable (0) the __init pages. */
static int __init set_initfree(char *str)
{
strict_strtol(str, 0, &initfree);
pr_info("initfree: %s free init pages\n", initfree ? "will" : "won't");
long val;
if (strict_strtol(str, 0, &val)) {
initfree = val;
pr_info("initfree: %s free init pages\n",
initfree ? "will" : "won't");
}
return 1;
}
__setup("initfree=", set_initfree);
Expand Down

0 comments on commit fb301b1

Please sign in to comment.