Linux-ARM-Kernel Archive on lore.kernel.org
 help / color / mirror / Atom feed
From: steve.capper@arm.com (Steve Capper)
To: linux-arm-kernel@lists.infradead.org
Subject: [RFC PATCH 2/6] ARM: mm: Add support for flushing HugeTLB pages.
Date: Tue, 8 Jan 2013 17:56:47 +0000	[thread overview]
Message-ID: <20130108175647.GB18347@e103986-lin> (raw)
In-Reply-To: <CANM98q+xSxqymrHnuDztZzY86p2gG_wSifOiSsSHj0kOTFAPyw@mail.gmail.com>

On Fri, Jan 04, 2013 at 05:03:36AM +0000, Christoffer Dall wrote:
> On Thu, Oct 18, 2012 at 12:15 PM, Steve Capper <steve.capper@arm.com> wrote:

> > diff --git a/arch/arm/mm/flush.c b/arch/arm/mm/flush.c
> > index 1c8f7f5..0a69cb8 100644
> > --- a/arch/arm/mm/flush.c
> > +++ b/arch/arm/mm/flush.c
> > @@ -17,6 +17,7 @@
> >  #include <asm/highmem.h>
> >  #include <asm/smp_plat.h>
> >  #include <asm/tlbflush.h>
> > +#include <linux/hugetlb.h>
> >
> >  #include "mm.h"
> >
> > @@ -168,17 +169,21 @@ void __flush_dcache_page(struct address_space *mapping, struct page *page)
> >          * coherent with the kernels mapping.
> >          */
> 
> I think it would be good to have a VM_BUG_ON(PageTail(page)) here.
> 

Yes, very much so :-).

> >         if (!PageHighMem(page)) {
> > -               __cpuc_flush_dcache_area(page_address(page), PAGE_SIZE);
> > +               __cpuc_flush_dcache_area(page_address(page), (PAGE_SIZE << compound_order(page)));
> 
> I think 98 characters is a stretch. You could do:
> 
> size_t page_size = PAGE_SIZE << compound_order(page);
> __cpuc_flush_dcache_area(page_address(page), page_size);
> 
> 

Yes, thanks, that does look better.

> >         } else {
> > -               void *addr = kmap_high_get(page);
> > -               if (addr) {
> > -                       __cpuc_flush_dcache_area(addr, PAGE_SIZE);
> > -                       kunmap_high(page);
> > -               } else if (cache_is_vipt()) {
> > -                       /* unmapped pages might still be cached */
> > -                       addr = kmap_atomic(page);
> > -                       __cpuc_flush_dcache_area(addr, PAGE_SIZE);
> > -                       kunmap_atomic(addr);
> > +               unsigned long i;
> > +               for(i = 0; i < (1 << compound_order(page)); i++) {
> > +                       struct page *cpage = page + i;
> > +                       void *addr = kmap_high_get(cpage);
> > +                       if (addr) {
> > +                               __cpuc_flush_dcache_area(addr, PAGE_SIZE);
> > +                               kunmap_high(cpage);
> > +                       } else if (cache_is_vipt()) {
> > +                               /* unmapped pages might still be cached */
> > +                               addr = kmap_atomic(cpage);
> > +                               __cpuc_flush_dcache_area(addr, PAGE_SIZE);
> > +                               kunmap_atomic(addr);
> > +                       }
> >                 }
> >         }
> >
> > --
> > 1.7.9.5
> >
> 
> otherwise it looks good to me.
> 
> -Christoffer
> 

  reply	other threads:[~2013-01-08 17:56 UTC|newest]

Thread overview: 25+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2012-10-18 16:15 [RFC PATCH 0/6] ARM: mm: HugeTLB + THP support Steve Capper
2012-10-18 16:15 ` [RFC PATCH 1/6] ARM: mm: correct pte_same behaviour for LPAE Steve Capper
2013-01-04  5:03   ` Christoffer Dall
2013-01-08 17:56     ` Steve Capper
2012-10-18 16:15 ` [RFC PATCH 2/6] ARM: mm: Add support for flushing HugeTLB pages Steve Capper
2013-01-04  5:03   ` Christoffer Dall
2013-01-08 17:56     ` Steve Capper [this message]
2012-10-18 16:15 ` [RFC PATCH 3/6] ARM: mm: HugeTLB support for LPAE systems Steve Capper
2013-01-04  5:03   ` Christoffer Dall
2013-01-08 17:57     ` Steve Capper
2013-01-08 18:10       ` Christoffer Dall
2012-10-18 16:15 ` [RFC PATCH 4/6] ARM: mm: HugeTLB support for non-LPAE systems Steve Capper
2013-01-04  5:04   ` Christoffer Dall
2013-01-08 17:58     ` Steve Capper
2013-01-08 18:13       ` Christoffer Dall
2012-10-18 16:15 ` [RFC PATCH 5/6] ARM: mm: Transparent huge page support for LPAE systems Steve Capper
2013-01-04  5:04   ` Christoffer Dall
2013-01-08 17:59     ` Steve Capper
2013-01-08 18:15       ` Christoffer Dall
2012-10-18 16:15 ` [RFC PATCH 6/6] ARM: mm: Transparent huge page support for non-LPAE systems Steve Capper
2013-01-04  5:04   ` Christoffer Dall
2013-01-08 17:59     ` Steve Capper
2013-01-08 18:17       ` Christoffer Dall
2012-12-21 13:41 ` [RFC PATCH 0/6] ARM: mm: HugeTLB + THP support Gregory CLEMENT
2012-12-23 11:11   ` Will Deacon

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=20130108175647.GB18347@e103986-lin \
    --to=steve.capper@arm.com \
    --cc=linux-arm-kernel@lists.infradead.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: link
Be 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