mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-17 10:36:45 +07:00
arm64: vdso: Fix unusual formatting in *setup_additional_pages()
There's really no need to put every parameter on a new line when calling a function with a long name, so reformat the *setup_additional_pages() functions in the vDSO setup code to follow the usual conventions. Acked-by: Mark Rutland <mark.rutland@arm.com> Reviewed-by: Vincenzo Frascino <vincenzo.frascino@arm.com> Reviewed-by: Ard Biesheuvel <ardb@kernel.org> Signed-off-by: Will Deacon <will@kernel.org>
This commit is contained in:
parent
0cbc265912
commit
2a30aca81a
@ -440,9 +440,7 @@ int aarch32_setup_additional_pages(struct linux_binprm *bprm, int uses_interp)
|
|||||||
goto out;
|
goto out;
|
||||||
|
|
||||||
if (IS_ENABLED(CONFIG_COMPAT_VDSO)) {
|
if (IS_ENABLED(CONFIG_COMPAT_VDSO)) {
|
||||||
ret = __setup_additional_pages(VDSO_ABI_AA32,
|
ret = __setup_additional_pages(VDSO_ABI_AA32, mm, bprm,
|
||||||
mm,
|
|
||||||
bprm,
|
|
||||||
uses_interp);
|
uses_interp);
|
||||||
if (ret)
|
if (ret)
|
||||||
goto out;
|
goto out;
|
||||||
@ -487,8 +485,7 @@ static int __init vdso_init(void)
|
|||||||
}
|
}
|
||||||
arch_initcall(vdso_init);
|
arch_initcall(vdso_init);
|
||||||
|
|
||||||
int arch_setup_additional_pages(struct linux_binprm *bprm,
|
int arch_setup_additional_pages(struct linux_binprm *bprm, int uses_interp)
|
||||||
int uses_interp)
|
|
||||||
{
|
{
|
||||||
struct mm_struct *mm = current->mm;
|
struct mm_struct *mm = current->mm;
|
||||||
int ret;
|
int ret;
|
||||||
@ -496,11 +493,7 @@ int arch_setup_additional_pages(struct linux_binprm *bprm,
|
|||||||
if (mmap_write_lock_killable(mm))
|
if (mmap_write_lock_killable(mm))
|
||||||
return -EINTR;
|
return -EINTR;
|
||||||
|
|
||||||
ret = __setup_additional_pages(VDSO_ABI_AA64,
|
ret = __setup_additional_pages(VDSO_ABI_AA64, mm, bprm, uses_interp);
|
||||||
mm,
|
|
||||||
bprm,
|
|
||||||
uses_interp);
|
|
||||||
|
|
||||||
mmap_write_unlock(mm);
|
mmap_write_unlock(mm);
|
||||||
|
|
||||||
return ret;
|
return ret;
|
||||||
|
Loading…
Reference in New Issue
Block a user