From: Matthew Wilcox <willy@debian.org>
To: Russell King <rmk@arm.linux.org.uk>
Cc: linux-kernel@vger.kernel.org
Subject: Re: [PATCH] expand_resource
Date: Wed, 1 Oct 2003 15:25:53 +0100 [thread overview]
Message-ID: <20031001142553.GN24824@parcelfarce.linux.theplanet.co.uk> (raw)
In-Reply-To: <20030930233352.C10154@flint.arm.linux.org.uk>
On Tue, Sep 30, 2003 at 11:33:52PM +0100, Russell King wrote:
> On Tue, Sep 30, 2003 at 11:14:11PM +0100, Matthew Wilcox wrote:
> > /**
> > * expand_resource - Expand an existing resource
> > * @res: Resource already linked into the resource tree.
> > * @size: Amount of additional space requested below @res.
> > * @align: Required alignment of new space.
> > *
> > * This function is intended to be called when we need more space
> > * below an existing resource than currently exists. The @size and
> > * @align parameters describe the requirements of the child resource,
> > * not the parent. Note that this call does not attempt to expand
> > * the parent of @res as that might require reprogramming devices.
> > * If a caller would like this behaviour, they must handle the recursion.
> > */
> >
> > > My main
> > > question though is - what is the intended purpose of "align" ? As
> > > it is implemented, it seems to have a weird behaviour:
> > >
> > > - if we expand the "end" of the resource, we round it towards an
> > > address which is a multiple of align, but "start" may not be
> > > a multiple of align.
> > > - if we expand "start", we round it down towards a multiple of
> > > align. However, "end" may not be a multiple of align.
>
> Ok, your description covers the latter case, and seems quite reasonable
> given the arguments. The former case seems to be a little less clear
> though.
I don't understand what you mean here ... Expanding start is clear,
but expanding end isn't clear?
> The problem with expand_resource as it currently stands is that it can
> expand either at the start or the end of the resource, and we don't know
> which it is going to do. PCMCIA is one example where this information
> matters - not only do we need to know the right IO range for each IO
> window, but we also need to know the IO address for each device.
>
> This means that if we were to expand these window resources, we must
> know where the new space was allocated.
>
> I think we can both agree that saving the old resources start, end
> and then comparing it after expand_resource() is fairly disgusting.
Certainly. For CCIO, we just program both high and low registers.
I guess we could do something like returning the value that changed
and in the caller:
int new = expand_resource(res, size, align);
if (new < 0) {
return new;
} else if (new == res->start) {
/* program start */
} else {
/* program end */
}
--
"It's not Hollywood. War is real, war is primarily not about defeat or
victory, it is about death. I've seen thousands and thousands of dead bodies.
Do you think I want to have an academic debate on this subject?" -- Robert Fisk
next prev parent reply other threads:[~2003-10-01 14:25 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2003-09-30 21:04 Matthew Wilcox
2003-09-30 21:27 ` Russell King
2003-09-30 22:14 ` Matthew Wilcox
2003-09-30 22:33 ` Russell King
2003-10-01 14:25 ` Matthew Wilcox [this message]
2003-10-01 17:50 ` Matthias Urlichs
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=20031001142553.GN24824@parcelfarce.linux.theplanet.co.uk \
--to=willy@debian.org \
--cc=linux-kernel@vger.kernel.org \
--cc=rmk@arm.linux.org.uk \
/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
Powered by JetHome