From: Catalin Marinas <catalin.marinas@arm.com> To: Steve Capper <steve.capper@linaro.org> Cc: "linux-mm@kvack.org" <linux-mm@kvack.org>, "x86@kernel.org" <x86@kernel.org>, "linux-arch@vger.kernel.org" <linux-arch@vger.kernel.org>, "linux-arm-kernel@lists.infradead.org" <linux-arm-kernel@lists.infradead.org>, Michal Hocko <mhocko@suse.cz>, Ken Chen <kenchen@google.com>, Mel Gorman <mgorman@suse.de>, Will Deacon <Will.Deacon@arm.com> Subject: Re: [RFC PATCH 7/9] ARM64: mm: HugeTLB support. Date: Wed, 1 May 2013 17:21:11 +0100 [thread overview] Message-ID: <20130501162111.GD17387@arm.com> (raw) In-Reply-To: <1367339448-21727-8-git-send-email-steve.capper@linaro.org> On Tue, Apr 30, 2013 at 05:30:46PM +0100, Steve Capper wrote: > diff --git a/arch/arm64/Kconfig b/arch/arm64/Kconfig > index 43b0e9f..16aa780 100644 > --- a/arch/arm64/Kconfig > +++ b/arch/arm64/Kconfig > @@ -185,6 +185,15 @@ config HW_PERF_EVENTS > Enable hardware performance counter support for perf events. If > disabled, perf events will use software events only. > > +config SYS_SUPPORTS_HUGETLBFS > + def_bool y if MMU > + > +config ARCH_WANT_GENERAL_HUGETLB > + def_bool y if MMU We could drop MMU here, I don't plan a uClinux port ;) > diff --git a/arch/arm64/include/asm/hugetlb.h b/arch/arm64/include/asm/hugetlb.h > new file mode 100644 > index 0000000..d00d72a > --- /dev/null > +++ b/arch/arm64/include/asm/hugetlb.h ... > +static inline pte_t huge_ptep_get(pte_t *ptep) > +{ > + return *ptep; > +} > + > +static inline void set_huge_pte_at(struct mm_struct *mm, unsigned long addr, > + pte_t *ptep, pte_t pte) > +{ > + set_pte_at(mm, addr, ptep, pte); > +} > + > +static inline void huge_ptep_clear_flush(struct vm_area_struct *vma, > + unsigned long addr, pte_t *ptep) > +{ > + ptep_clear_flush(vma, addr, ptep); > +} > + > +static inline void huge_ptep_set_wrprotect(struct mm_struct *mm, > + unsigned long addr, pte_t *ptep) > +{ > + ptep_set_wrprotect(mm, addr, ptep); > +} > + > +static inline pte_t huge_ptep_get_and_clear(struct mm_struct *mm, > + unsigned long addr, pte_t *ptep) > +{ > + return ptep_get_and_clear(mm, addr, ptep); > +} > + > +static inline int huge_ptep_set_access_flags(struct vm_area_struct *vma, > + unsigned long addr, pte_t *ptep, > + pte_t pte, int dirty) > +{ > + return ptep_set_access_flags(vma, addr, ptep, pte, dirty); > +} > + > +static inline void hugetlb_free_pgd_range(struct mmu_gather *tlb, > + unsigned long addr, unsigned long end, > + unsigned long floor, > + unsigned long ceiling) > +{ > + free_pgd_range(tlb, addr, end, floor, ceiling); > +} ... > +static inline int huge_pte_none(pte_t pte) > +{ > + return pte_none(pte); > +} > + > +static inline pte_t huge_pte_wrprotect(pte_t pte) > +{ > + return pte_wrprotect(pte); > +} Could we make these generic too? > diff --git a/arch/arm64/mm/hugetlbpage.c b/arch/arm64/mm/hugetlbpage.c > new file mode 100644 > index 0000000..06c74e8 > --- /dev/null > +++ b/arch/arm64/mm/hugetlbpage.c > @@ -0,0 +1,70 @@ > +/* > + * arch/arm64/mm/hugetlbpage.c > + * > + * Copyright (C) 2013 Linaro Ltd. > + * > + * Based on arch/x86/mm/hugetlbpage.c. > + * > + * This program is free software; you can redistribute it and/or modify > + * it under the terms of the GNU General Public License version 2 as > + * published by the Free Software Foundation. > + * > + * This program is distributed in the hope that it will be useful, > + * but WITHOUT ANY WARRANTY; without even the implied warranty of > + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the > + * GNU General Public License for more details. > + * > + * You should have received a copy of the GNU General Public License > + * along with this program; if not, write to the Free Software > + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA > + */ > + > +#include <linux/init.h> > +#include <linux/fs.h> > +#include <linux/mm.h> > +#include <linux/hugetlb.h> > +#include <linux/pagemap.h> > +#include <linux/err.h> > +#include <linux/sysctl.h> > +#include <asm/mman.h> > +#include <asm/tlb.h> > +#include <asm/tlbflush.h> > +#include <asm/pgalloc.h> > + > +#ifndef CONFIG_ARCH_WANT_HUGE_PMD_SHARE > +int huge_pmd_unshare(struct mm_struct *mm, unsigned long *addr, pte_t *ptep) > +{ > + return 0; > +} > +#endif > + > +struct page *follow_huge_addr(struct mm_struct *mm, unsigned long address, > + int write) > +{ > + return ERR_PTR(-EINVAL); > +} > + > +int pmd_huge(pmd_t pmd) > +{ > + return (pmd_val(pmd) & PMD_TYPE_MASK) == PMD_TYPE_SECT; > +} > + > +int pud_huge(pud_t pud) > +{ > + return (pud_val(pud) & PMD_TYPE_MASK) == PMD_TYPE_SECT; > +} The types are mismatched here since pud_val() returns a pgd when pgtable-nopud.h is used. I think we should defined PGD_TYPE_* in terms of pgdval_t and PUD_TYPE_* just an alias for them. -- Catalin -- To unsubscribe, send a message with 'unsubscribe linux-mm' in the body to majordomo@kvack.org. For more info on Linux MM, see: http://www.linux-mm.org/ . Don't email: <a href=mailto:"dont@kvack.org"> email@kvack.org </a>
WARNING: multiple messages have this Message-ID (diff)
From: Catalin Marinas <catalin.marinas@arm.com> To: Steve Capper <steve.capper@linaro.org> Cc: "linux-mm@kvack.org" <linux-mm@kvack.org>, "x86@kernel.org" <x86@kernel.org>, "linux-arch@vger.kernel.org" <linux-arch@vger.kernel.org>, "linux-arm-kernel@lists.infradead.org" <linux-arm-kernel@lists.infradead.org>, Michal Hocko <mhocko@suse.cz>, Ken Chen <kenchen@google.com>, Mel Gorman <mgorman@suse.de>, Will Deacon <Will.Deacon@arm.com> Subject: Re: [RFC PATCH 7/9] ARM64: mm: HugeTLB support. Date: Wed, 1 May 2013 17:21:11 +0100 [thread overview] Message-ID: <20130501162111.GD17387@arm.com> (raw) Message-ID: <20130501162111.VPahCT_5by_7KP30H5CpAxklletcPshmKvAdpgrLYKs@z> (raw) In-Reply-To: <1367339448-21727-8-git-send-email-steve.capper@linaro.org> On Tue, Apr 30, 2013 at 05:30:46PM +0100, Steve Capper wrote: > diff --git a/arch/arm64/Kconfig b/arch/arm64/Kconfig > index 43b0e9f..16aa780 100644 > --- a/arch/arm64/Kconfig > +++ b/arch/arm64/Kconfig > @@ -185,6 +185,15 @@ config HW_PERF_EVENTS > Enable hardware performance counter support for perf events. If > disabled, perf events will use software events only. > > +config SYS_SUPPORTS_HUGETLBFS > + def_bool y if MMU > + > +config ARCH_WANT_GENERAL_HUGETLB > + def_bool y if MMU We could drop MMU here, I don't plan a uClinux port ;) > diff --git a/arch/arm64/include/asm/hugetlb.h b/arch/arm64/include/asm/hugetlb.h > new file mode 100644 > index 0000000..d00d72a > --- /dev/null > +++ b/arch/arm64/include/asm/hugetlb.h ... > +static inline pte_t huge_ptep_get(pte_t *ptep) > +{ > + return *ptep; > +} > + > +static inline void set_huge_pte_at(struct mm_struct *mm, unsigned long addr, > + pte_t *ptep, pte_t pte) > +{ > + set_pte_at(mm, addr, ptep, pte); > +} > + > +static inline void huge_ptep_clear_flush(struct vm_area_struct *vma, > + unsigned long addr, pte_t *ptep) > +{ > + ptep_clear_flush(vma, addr, ptep); > +} > + > +static inline void huge_ptep_set_wrprotect(struct mm_struct *mm, > + unsigned long addr, pte_t *ptep) > +{ > + ptep_set_wrprotect(mm, addr, ptep); > +} > + > +static inline pte_t huge_ptep_get_and_clear(struct mm_struct *mm, > + unsigned long addr, pte_t *ptep) > +{ > + return ptep_get_and_clear(mm, addr, ptep); > +} > + > +static inline int huge_ptep_set_access_flags(struct vm_area_struct *vma, > + unsigned long addr, pte_t *ptep, > + pte_t pte, int dirty) > +{ > + return ptep_set_access_flags(vma, addr, ptep, pte, dirty); > +} > + > +static inline void hugetlb_free_pgd_range(struct mmu_gather *tlb, > + unsigned long addr, unsigned long end, > + unsigned long floor, > + unsigned long ceiling) > +{ > + free_pgd_range(tlb, addr, end, floor, ceiling); > +} ... > +static inline int huge_pte_none(pte_t pte) > +{ > + return pte_none(pte); > +} > + > +static inline pte_t huge_pte_wrprotect(pte_t pte) > +{ > + return pte_wrprotect(pte); > +} Could we make these generic too? > diff --git a/arch/arm64/mm/hugetlbpage.c b/arch/arm64/mm/hugetlbpage.c > new file mode 100644 > index 0000000..06c74e8 > --- /dev/null > +++ b/arch/arm64/mm/hugetlbpage.c > @@ -0,0 +1,70 @@ > +/* > + * arch/arm64/mm/hugetlbpage.c > + * > + * Copyright (C) 2013 Linaro Ltd. > + * > + * Based on arch/x86/mm/hugetlbpage.c. > + * > + * This program is free software; you can redistribute it and/or modify > + * it under the terms of the GNU General Public License version 2 as > + * published by the Free Software Foundation. > + * > + * This program is distributed in the hope that it will be useful, > + * but WITHOUT ANY WARRANTY; without even the implied warranty of > + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the > + * GNU General Public License for more details. > + * > + * You should have received a copy of the GNU General Public License > + * along with this program; if not, write to the Free Software > + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA > + */ > + > +#include <linux/init.h> > +#include <linux/fs.h> > +#include <linux/mm.h> > +#include <linux/hugetlb.h> > +#include <linux/pagemap.h> > +#include <linux/err.h> > +#include <linux/sysctl.h> > +#include <asm/mman.h> > +#include <asm/tlb.h> > +#include <asm/tlbflush.h> > +#include <asm/pgalloc.h> > + > +#ifndef CONFIG_ARCH_WANT_HUGE_PMD_SHARE > +int huge_pmd_unshare(struct mm_struct *mm, unsigned long *addr, pte_t *ptep) > +{ > + return 0; > +} > +#endif > + > +struct page *follow_huge_addr(struct mm_struct *mm, unsigned long address, > + int write) > +{ > + return ERR_PTR(-EINVAL); > +} > + > +int pmd_huge(pmd_t pmd) > +{ > + return (pmd_val(pmd) & PMD_TYPE_MASK) == PMD_TYPE_SECT; > +} > + > +int pud_huge(pud_t pud) > +{ > + return (pud_val(pud) & PMD_TYPE_MASK) == PMD_TYPE_SECT; > +} The types are mismatched here since pud_val() returns a pgd when pgtable-nopud.h is used. I think we should defined PGD_TYPE_* in terms of pgdval_t and PUD_TYPE_* just an alias for them. -- Catalin
next prev parent reply other threads:[~2013-05-01 16:21 UTC|newest] Thread overview: 30+ messages / expand[flat|nested] mbox.gz Atom feed top 2013-04-30 16:30 [RFC PATCH 0/9] HugeTLB and THP support for ARM64 Steve Capper 2013-04-30 16:30 ` [RFC PATCH 1/9] mm: hugetlb: Copy huge_pmd_share from x86 to mm Steve Capper 2013-04-30 16:30 ` [RFC PATCH 2/9] x86: mm: Remove x86 version of huge_pmd_share Steve Capper 2013-04-30 16:30 ` [RFC PATCH 3/9] mm: hugetlb: Copy general hugetlb code from x86 to mm Steve Capper 2013-04-30 16:30 ` Steve Capper 2013-04-30 16:48 ` Catalin Marinas 2013-04-30 16:48 ` Catalin Marinas 2013-04-30 16:30 ` [RFC PATCH 4/9] x86: mm: Remove general hugetlb code from x86 Steve Capper 2013-04-30 16:30 ` [RFC PATCH 5/9] ARM64: mm: Add support for flushing huge pages Steve Capper 2013-05-01 11:05 ` Will Deacon 2013-05-01 11:05 ` Will Deacon 2013-05-01 11:31 ` Catalin Marinas 2013-05-01 11:31 ` Catalin Marinas 2013-04-30 16:30 ` [RFC PATCH 6/9] ARM64: mm: Restore memblock limit when map_mem finished Steve Capper 2013-04-30 16:30 ` [RFC PATCH 7/9] ARM64: mm: HugeTLB support Steve Capper 2013-04-30 16:30 ` Steve Capper 2013-05-01 11:42 ` Will Deacon 2013-05-01 11:42 ` Will Deacon 2013-05-01 13:04 ` Steve Capper 2013-05-01 16:21 ` Catalin Marinas [this message] 2013-05-01 16:21 ` Catalin Marinas 2013-04-30 16:30 ` [RFC PATCH 8/9] ARM64: mm: Introduce MAX_ZONE_ORDER for 64K and THP Steve Capper 2013-04-30 16:30 ` Steve Capper 2013-05-02 10:00 ` Catalin Marinas 2013-05-02 10:00 ` Catalin Marinas 2013-05-02 10:05 ` Steve Capper 2013-05-02 10:05 ` Steve Capper 2013-04-30 16:30 ` [RFC PATCH 9/9] ARM64: mm: THP support Steve Capper 2013-05-01 14:16 ` Steve Capper 2013-05-01 14:16 ` Steve Capper
Reply instructions: You may reply publicly to this message via plain-text email using any one of the following methods: * Save the following mbox file, import it into your mail client, and reply-to-all from there: mbox Avoid top-posting and favor interleaved quoting: https://en.wikipedia.org/wiki/Posting_style#Interleaved_style * Reply using the --to, --cc, and --in-reply-to switches of git-send-email(1): git send-email \ --in-reply-to=20130501162111.GD17387@arm.com \ --to=catalin.marinas@arm.com \ --cc=Will.Deacon@arm.com \ --cc=kenchen@google.com \ --cc=linux-arch@vger.kernel.org \ --cc=linux-arm-kernel@lists.infradead.org \ --cc=linux-mm@kvack.org \ --cc=mgorman@suse.de \ --cc=mhocko@suse.cz \ --cc=steve.capper@linaro.org \ --cc=x86@kernel.org \ /path/to/YOUR_REPLY https://kernel.org/pub/software/scm/git/docs/git-send-email.html * If your mail client supports setting the In-Reply-To header via mailto: links, try the mailto: linkBe sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox; as well as URLs for NNTP newsgroup(s).