All of lore.kernel.org
 help / color / mirror / Atom feed
From: Daniel J Blueman <daniel.blueman@quadrics.com>
To: Bjorn Helgaas <bjorn.helgaas@hp.com>
Cc: linux-ia64@vger.kernel.org, linux-kernel@vger.kernel.org,
	marcelo.tosatti@cyclades.com
Subject: Re: pte_modify fix backport...
Date: Thu, 05 Aug 2004 16:21:51 +0000	[thread overview]
Message-ID: <1091722911.1829.247.camel@pc107.quadrics.com> (raw)
In-Reply-To: <200408050956.39053.bjorn.helgaas@hp.com>

On Thu, 2004-08-05 at 16:56, Bjorn Helgaas wrote:
> On Thursday 05 August 2004 5:13 am, Daniel J Blueman wrote:
> > This patch [1] corrects the behaviour of pte_modify() on ia64 to not
> > clear page protection flags it shouldn't touch.
> > 
> > Without this patch, it clears the uncacheable flag on UC memory regions,
> > which can cause MCAs with device I/O.
> > 
> > It was taken into 2.6.0 a while ago, but is yet to be included in 2.4 -
> > the patch here is rediffed against 2.4.26-rc5.
> > 
> > Is there chance of it being taken in?
> 
> I put this in the 2.4 ia64 BK tree a couple days ago.  Can you check
> here: http://lia64.bkbits.net:8080/linux-ia64-2.4 and make sure that
> it works for you?
> 
> The plain patch is also available here, if that works better for you:
> ftp://ftp.kernel.org/pub/linux/kernel/ports/ia64/v2.4/testing/cset/index.html
> 
> > diff -durN linux-2.4.26-rc5-orig/include/asm-ia64/pgtable.h linux-2.4.26-rc5-patched/include/asm-ia64/pgtable.h
> > --- linux-2.4.26-rc5-orig/include/asm-ia64/pgtable.h	2004-02-18 13:36:32.000000000 +0000
> > +++ linux-2.4.26-rc5-patched/include/asm-ia64/pgtable.h	2004-08-05 11:46:03.000000000 +0100
> > @@ -60,7 +60,8 @@
> >  #define _PAGE_PROTNONE		(__IA64_UL(1) << 63)
> >  
> >  #define _PFN_MASK		_PAGE_PPN_MASK
> > -#define _PAGE_CHG_MASK		(_PFN_MASK | _PAGE_A | _PAGE_D)
> > +/* Mask of bits which may be changed by pte_modify(); the odd bits are there for _PAGE_PROTNONE */
> > +#define _PAGE_CHG_MASK		(_PAGE_P | _PAGE_PROTNONE | _PAGE_PL_MASK | _PAGE_AR_MASK | _PAGE_ED)
> >  
> >  #define _PAGE_SIZE_4K	12
> >  #define _PAGE_SIZE_8K	13
> > @@ -216,7 +217,7 @@
> >  ({ pte_t __pte; pte_val(__pte) = physpage + pgprot_val(pgprot); __pte; })
> >  
> >  #define pte_modify(_pte, newprot) \
> > -	(__pte((pte_val(_pte) & _PAGE_CHG_MASK) | pgprot_val(newprot)))
> > +	(__pte((pte_val(_pte) & ~_PAGE_CHG_MASK) | (pgprot_val(newprot) & _PAGE_CHG_MASK)))
> >  
> >  #define page_pte_prot(page,prot)	mk_pte(page, prot)
> >  #define page_pte(page)			page_pte_prot(page, __pgprot(0))

Bjorn,

The two changesets are good. Thanks!
-- 
Daniel J Blueman
Software Engineer, Quadrics Ltd


WARNING: multiple messages have this Message-ID (diff)
From: Daniel J Blueman <daniel.blueman@quadrics.com>
To: Bjorn Helgaas <bjorn.helgaas@hp.com>
Cc: linux-ia64@vger.kernel.org, linux-kernel@vger.kernel.org,
	marcelo.tosatti@cyclades.com
Subject: Re: pte_modify fix backport...
Date: Thu, 05 Aug 2004 17:21:51 +0100	[thread overview]
Message-ID: <1091722911.1829.247.camel@pc107.quadrics.com> (raw)
In-Reply-To: <200408050956.39053.bjorn.helgaas@hp.com>

On Thu, 2004-08-05 at 16:56, Bjorn Helgaas wrote:
> On Thursday 05 August 2004 5:13 am, Daniel J Blueman wrote:
> > This patch [1] corrects the behaviour of pte_modify() on ia64 to not
> > clear page protection flags it shouldn't touch.
> > 
> > Without this patch, it clears the uncacheable flag on UC memory regions,
> > which can cause MCAs with device I/O.
> > 
> > It was taken into 2.6.0 a while ago, but is yet to be included in 2.4 -
> > the patch here is rediffed against 2.4.26-rc5.
> > 
> > Is there chance of it being taken in?
> 
> I put this in the 2.4 ia64 BK tree a couple days ago.  Can you check
> here: http://lia64.bkbits.net:8080/linux-ia64-2.4 and make sure that
> it works for you?
> 
> The plain patch is also available here, if that works better for you:
> ftp://ftp.kernel.org/pub/linux/kernel/ports/ia64/v2.4/testing/cset/index.html
> 
> > diff -durN linux-2.4.26-rc5-orig/include/asm-ia64/pgtable.h linux-2.4.26-rc5-patched/include/asm-ia64/pgtable.h
> > --- linux-2.4.26-rc5-orig/include/asm-ia64/pgtable.h	2004-02-18 13:36:32.000000000 +0000
> > +++ linux-2.4.26-rc5-patched/include/asm-ia64/pgtable.h	2004-08-05 11:46:03.000000000 +0100
> > @@ -60,7 +60,8 @@
> >  #define _PAGE_PROTNONE		(__IA64_UL(1) << 63)
> >  
> >  #define _PFN_MASK		_PAGE_PPN_MASK
> > -#define _PAGE_CHG_MASK		(_PFN_MASK | _PAGE_A | _PAGE_D)
> > +/* Mask of bits which may be changed by pte_modify(); the odd bits are there for _PAGE_PROTNONE */
> > +#define _PAGE_CHG_MASK		(_PAGE_P | _PAGE_PROTNONE | _PAGE_PL_MASK | _PAGE_AR_MASK | _PAGE_ED)
> >  
> >  #define _PAGE_SIZE_4K	12
> >  #define _PAGE_SIZE_8K	13
> > @@ -216,7 +217,7 @@
> >  ({ pte_t __pte; pte_val(__pte) = physpage + pgprot_val(pgprot); __pte; })
> >  
> >  #define pte_modify(_pte, newprot) \
> > -	(__pte((pte_val(_pte) & _PAGE_CHG_MASK) | pgprot_val(newprot)))
> > +	(__pte((pte_val(_pte) & ~_PAGE_CHG_MASK) | (pgprot_val(newprot) & _PAGE_CHG_MASK)))
> >  
> >  #define page_pte_prot(page,prot)	mk_pte(page, prot)
> >  #define page_pte(page)			page_pte_prot(page, __pgprot(0))

Bjorn,

The two changesets are good. Thanks!
-- 
Daniel J Blueman
Software Engineer, Quadrics Ltd


  reply	other threads:[~2004-08-05 16:21 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2004-08-05 11:13 pte_modify fix backport Daniel J Blueman
2004-08-05 11:13 ` Daniel J Blueman
2004-08-05 15:56 ` Bjorn Helgaas
2004-08-05 15:56   ` Bjorn Helgaas
2004-08-05 16:21   ` Daniel J Blueman [this message]
2004-08-05 16:21     ` Daniel J Blueman

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=1091722911.1829.247.camel@pc107.quadrics.com \
    --to=daniel.blueman@quadrics.com \
    --cc=bjorn.helgaas@hp.com \
    --cc=linux-ia64@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=marcelo.tosatti@cyclades.com \
    /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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.