[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <45E8571F.1050509@goop.org>
Date: Fri, 02 Mar 2007 08:55:59 -0800
From: Jeremy Fitzhardinge <jeremy@...p.org>
To: Zachary Amsden <zach@...are.com>
CC: Chris Wright <chrisw@...s-sol.org>, Andi Kleen <ak@....de>,
Linus Torvalds <torvalds@...l.org>,
Andrew Morton <akpm@...l.org>,
Virtualization Mailing List <virtualization@...ts.osdl.org>,
Linux Kernel Mailing List <linux-kernel@...r.kernel.org>
Subject: Re: [PATCH 4/9] Vmi fix highpte
Zachary Amsden wrote:
> I've been sending out this particular patch or a variant of it for a
> long time. It did get lost for a while during the paravirt-ops
> conversion, however. You're the first to give any feedback on it.
Oops, I guess so. I've been doing a lot more Xen pagetable work for the
last couple of weeks, so it caught my eye this time.
>>> Do you have any objection to me creating a patch for -mm tree that
>>> implements kmap_atomic_pte the way you have described above and
>>> attaching it to the Xen patch series, but leaving the current patch as
>>> is for now?
>>>
>>
>> Not particularly, but it seems odd to put something in knowing its going
>> to be immediately replaced. What's the urgency?
>>
>
> Better to keep what is known working for now, even if it is going to
> be replaced later... code is easy to change in development cycles,
> less easy to fix when nearing release. It really is easy to mess up
> one of the pte conversions by, say, shift the wrong value or calculate
> wrong or PAE dependent PTE offset.
Those are bugs that can occur, but they don't apply in this case. The
vmi implementation of kmap_atomic_pte() would be:
static void *vmi_kmap_atomic_pte(struct page *page, enum km_type type)
{
void *ptep = kmap_atomic(page, type);
vmi_map_pt_hook(type, ptep, page_to_pfn(page));
return ptep;
}
Right? Which is functionally identical to the code in your patch,
except wrapped up in a new function.
J
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists