mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-11-01 17:08:10 +00:00
powerpc/mm: flatten function __find_linux_pte() step 3
__find_linux_pte() is full of if/else which is hard to follow allthough the handling is pretty simple. Previous patches left a { } block. This patch removes it. Signed-off-by: Christophe Leroy <christophe.leroy@c-s.fr> Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
This commit is contained in:
parent
e2fb251188
commit
26e66b08c3
1 changed files with 49 additions and 49 deletions
|
@ -348,7 +348,7 @@ pte_t *__find_linux_pte(pgd_t *pgdir, unsigned long ea,
|
||||||
hpdp = (hugepd_t *)&pgd;
|
hpdp = (hugepd_t *)&pgd;
|
||||||
goto out_huge;
|
goto out_huge;
|
||||||
}
|
}
|
||||||
{
|
|
||||||
/*
|
/*
|
||||||
* Even if we end up with an unmap, the pgtable will not
|
* Even if we end up with an unmap, the pgtable will not
|
||||||
* be freed, because we do an rcu free and here we are
|
* be freed, because we do an rcu free and here we are
|
||||||
|
@ -400,7 +400,7 @@ pte_t *__find_linux_pte(pgd_t *pgdir, unsigned long ea,
|
||||||
}
|
}
|
||||||
|
|
||||||
return pte_offset_kernel(&pmd, ea);
|
return pte_offset_kernel(&pmd, ea);
|
||||||
}
|
|
||||||
out_huge:
|
out_huge:
|
||||||
if (!hpdp)
|
if (!hpdp)
|
||||||
return NULL;
|
return NULL;
|
||||||
|
|
Loading…
Reference in a new issue