Message ID | 20180731060155.16915-1-alex@ghiti.fr (mailing list archive) |
---|---|
Headers | show |
Series | hugetlb: Factorize hugetlb architecture primitives | expand |
On Tue, Jul 31, 2018 at 06:01:44AM +0000, Alexandre Ghiti wrote: > Alexandre Ghiti (11): > hugetlb: Harmonize hugetlb.h arch specific defines with pgtable.h > hugetlb: Introduce generic version of hugetlb_free_pgd_range > hugetlb: Introduce generic version of set_huge_pte_at > hugetlb: Introduce generic version of huge_ptep_get_and_clear > hugetlb: Introduce generic version of huge_ptep_clear_flush > hugetlb: Introduce generic version of huge_pte_none > hugetlb: Introduce generic version of huge_pte_wrprotect > hugetlb: Introduce generic version of prepare_hugepage_range > hugetlb: Introduce generic version of huge_ptep_set_wrprotect > hugetlb: Introduce generic version of huge_ptep_set_access_flags > hugetlb: Introduce generic version of huge_ptep_get [...] > arch/arm64/include/asm/hugetlb.h | 39 +++--------- For the arm64 bits in this series: Acked-by: Catalin Marinas <catalin.marinas@arm.com>
On Tue, 31 Jul 2018 06:01:44 +0000 Alexandre Ghiti <alex@ghiti.fr> wrote: > [CC linux-mm for inclusion in -mm tree] > > In order to reduce copy/paste of functions across architectures and then > make riscv hugetlb port (and future ports) simpler and smaller, this > patchset intends to factorize the numerous hugetlb primitives that are > defined across all the architectures. [...] > 15 files changed, 139 insertions(+), 382 deletions(-) I imagine you're mostly interested in non-x86 review at this point, but as this series is looking amazing: Reviewed-by: Luiz Capitulino <lcapitulino@redhat.com>
On 07/31/2018 10:06 PM, Luiz Capitulino wrote: > On Tue, 31 Jul 2018 06:01:44 +0000 > Alexandre Ghiti <alex@ghiti.fr> wrote: > >> [CC linux-mm for inclusion in -mm tree] >> >> In order to reduce copy/paste of functions across architectures and then >> make riscv hugetlb port (and future ports) simpler and smaller, this >> patchset intends to factorize the numerous hugetlb primitives that are >> defined across all the architectures. > [...] > >> 15 files changed, 139 insertions(+), 382 deletions(-) > I imagine you're mostly interested in non-x86 review at this point, but > as this series is looking amazing: > > Reviewed-by: Luiz Capitulino <lcapitulino@redhat.com> It's always good to have another feedback :) Thanks for your review Luiz, Alex