public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
From: Ingo Molnar <mingo@elte.hu>
To: Yinghai Lu <yhlu.kernel@gmail.com>
Cc: Thomas Gleixner <tglx@linutronix.de>,
	"H. Peter Anvin" <hpa@zytor.com>,
	Andrew Morton <akpm@linux-foundation.org>,
	Jesse Barnes <jbarnes@virtuousgeek.org>,
	Linus Torvalds <torvalds@linux-foundation.org>,
	linux-kernel@vger.kernel.org
Subject: Re: [PATCH] x86: split e820 reserved entries record to late v4
Date: Fri, 29 Aug 2008 09:28:33 +0200	[thread overview]
Message-ID: <20080829072833.GA9232@elte.hu> (raw)
In-Reply-To: <86802c440808290016m6af6ecc7l52f5c7eca7f29a02@mail.gmail.com>


* Yinghai Lu <yhlu.kernel@gmail.com> wrote:

> On Thu, Aug 28, 2008 at 11:58 PM, Ingo Molnar <mingo@elte.hu> wrote:
> >
> > * Yinghai Lu <yhlu.kernel@gmail.com> wrote:
> >
> >> >  BIOS-e820: 0000000077ff0000 - 0000000078000000 (reserved)
> >> >  BIOS-e820: 00000000e0000000 - 00000000f0000000 (reserved)
> >> >  BIOS-e820: 00000000fec00000 - 0000000100000000 (reserved)
> >> >
> >> > which overlaps with the chipset PCI BAR (hpet) resource:
> >> >
> >> >   pci 0000:00:14.0: BAR has HPET at fed00000-fed003ff
> >> >
> >> > so due to this 1K conflict we take the full e820-reserved entry out and
> >> > give the range 0xfec00000-0x100000000 as 'free'.
> >>
> >> you will get
> >> fec00000 - ffffffff reserved
> >>    fed0000 - fed003ff hpet
> >>      fed0000 - fed003ff 0000:00:14.0
> >
> > ok - because it's fully contained insert_resource() will succeed? I
> > thought it would only succeed if the new resource was smaller than (a
> > subset of) the existing resource. In the other direction, when a newly
> > inserted resource is a superset of the existing resource, i thought we'd
> > fail.
> >
> > hypothetical scenario, what if we had neither a superset nor a subset
> > scenario, but a partial overlap, between:
> >
> >> >  BIOS-e820: 00000000fec00000 - 0000000100000000 (reserved)
> >
> > and:
> >
> >> >   pci 0000:00:14.0: BAR has HPET at feb0f000-fec01000
> >
> > i.e. we have:
> >
> >      [... PCI BAR ...]
> >            [... e820 reservation ...]
> >
> > in that case the insert_resource() will fail due to the conflict. Can we
> > declare it in that case that the e820 reserved entry is mortally broken
> > and we just ignore it?
> 
> yes, that will fail to insert ...
> 
> expand to 0xfeb0f000 - 0xfffffff and try again.?
> 
> may need to update insert_resource to return conflict resource ...

yes, that sounds an excellent idea - i was thinking of something 
muchmore complex like breaking up the reserved entry - but indeed just 
creating a large enough superset should be perfect. I.e. extend both 
start and end until we fit fully. [or reach some natural boundary such 
as 0 or 4GB]

> > At least we should emit a prominent warning if insert_resource() fails,
> > and add in an mdelay(2000) so that the user sees it.
>
> right

btw., perhaps we should try this: first try a request_resource(). If 
that fails it means we overlap with something - then we should already 
printk a warning. (e820 reserved entries should never conflict with PCI 
resources, should they?)

then try an insert_resource(). If that too fails it means a partial 
overlap - printk another warning. Try the extension (within reasonable 
limits) and retry.

Does that sound worthwile?

	Ingo

  reply	other threads:[~2008-08-29  7:29 UTC|newest]

Thread overview: 13+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2008-08-29  1:29 [PATCH] x86: split e820 reserved entries record to late v4 Yinghai Lu
2008-08-29  6:30 ` Ingo Molnar
2008-08-29  6:47   ` Yinghai Lu
2008-08-29  6:58     ` Ingo Molnar
2008-08-29  7:16       ` Yinghai Lu
2008-08-29  7:28         ` Ingo Molnar [this message]
2008-08-29  7:52           ` Yinghai Lu
2008-08-29 15:31       ` Linus Torvalds
2008-08-29 15:26   ` Linus Torvalds
2008-09-06 17:55     ` Ingo Molnar
  -- strict thread matches above, loose matches on Subject: below --
2008-08-30  7:58 [PATCH] x86: unify using pci_mmcfg_insert_resource Yinghai Lu
2008-08-30  7:58 ` [PATCH] x86: split e820 reserved entries record to late v4 Yinghai Lu
2008-08-30 20:36 Yinghai Lu
2008-08-31  2:18 ` Yinghai Lu

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=20080829072833.GA9232@elte.hu \
    --to=mingo@elte.hu \
    --cc=akpm@linux-foundation.org \
    --cc=hpa@zytor.com \
    --cc=jbarnes@virtuousgeek.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=tglx@linutronix.de \
    --cc=torvalds@linux-foundation.org \
    --cc=yhlu.kernel@gmail.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox