mirror of
https://github.com/team-infusion-developers/android_kernel_samsung_msm8976.git
synced 2024-11-01 10:33:27 +00:00
[S390] vdso: kernel parameter syntax
The syntax of the vdso kernel parameter is documented as vdso=[on|off]. The implementation uses vdso=[0|1], an invalid parameter string disables the vdso support. Fix the mismatch by adding vdso=[on|off] as additional parameter syntax. Signed-off-by: Martin Schwidefsky <schwidefsky@de.ibm.com>
This commit is contained in:
parent
8ebf975608
commit
7aa79f9487
1 changed files with 13 additions and 2 deletions
|
@ -53,8 +53,19 @@ unsigned int __read_mostly vdso_enabled = 1;
|
|||
|
||||
static int __init vdso_setup(char *s)
|
||||
{
|
||||
vdso_enabled = simple_strtoul(s, NULL, 0);
|
||||
return 1;
|
||||
unsigned long val;
|
||||
int rc;
|
||||
|
||||
rc = 0;
|
||||
if (strncmp(s, "on", 3) == 0)
|
||||
vdso_enabled = 1;
|
||||
else if (strncmp(s, "off", 4) == 0)
|
||||
vdso_enabled = 0;
|
||||
else {
|
||||
rc = strict_strtoul(s, 0, &val);
|
||||
vdso_enabled = rc ? 0 : !!val;
|
||||
}
|
||||
return !rc;
|
||||
}
|
||||
__setup("vdso=", vdso_setup);
|
||||
|
||||
|
|
Loading…
Reference in a new issue