* [PATCH] hugetlb: Fix clear_user_highpage arguments
@ 2007-09-28 16:35 Ralf Baechle
2007-09-28 18:45 ` Andrew Morton
0 siblings, 1 reply; 4+ messages in thread
From: Ralf Baechle @ 2007-09-28 16:35 UTC (permalink / raw)
To: Andrew Morton, linux-kernel, linux-mips
The virtual address space argument of clear_user_highpage is supposed to
be the virtual address where the page being cleared will eventually be
mapped. This allows architectures with virtually indexed caches a few
clever tricks. That sort of trick falls over in painful ways if the
virtual address argument is wrong.
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
diff --git a/mm/hugetlb.c b/mm/hugetlb.c
index 84c795e..eab8c42 100644
--- a/mm/hugetlb.c
+++ b/mm/hugetlb.c
@@ -42,7 +42,7 @@ static void clear_huge_page(struct page *page, unsigned long addr)
might_sleep();
for (i = 0; i < (HPAGE_SIZE/PAGE_SIZE); i++) {
cond_resched();
- clear_user_highpage(page + i, addr);
+ clear_user_highpage(page + i, addr + i * PAGE_SIZE);
}
}
^ permalink raw reply related [flat|nested] 4+ messages in thread* Re: [PATCH] hugetlb: Fix clear_user_highpage arguments
2007-09-28 16:35 [PATCH] hugetlb: Fix clear_user_highpage arguments Ralf Baechle
@ 2007-09-28 18:45 ` Andrew Morton
2007-09-28 18:53 ` Ralf Baechle
0 siblings, 1 reply; 4+ messages in thread
From: Andrew Morton @ 2007-09-28 18:45 UTC (permalink / raw)
To: Ralf Baechle; +Cc: linux-kernel, linux-mips
On Fri, 28 Sep 2007 17:35:45 +0100 Ralf Baechle <ralf@linux-mips.org> wrote:
> The virtual address space argument of clear_user_highpage is supposed to
> be the virtual address where the page being cleared will eventually be
> mapped. This allows architectures with virtually indexed caches a few
> clever tricks. That sort of trick falls over in painful ways if the
> virtual address argument is wrong.
yeah, but only if you're using a weird CPU architecture ;)
> Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
>
> diff --git a/mm/hugetlb.c b/mm/hugetlb.c
> index 84c795e..eab8c42 100644
> --- a/mm/hugetlb.c
> +++ b/mm/hugetlb.c
> @@ -42,7 +42,7 @@ static void clear_huge_page(struct page *page, unsigned long addr)
> might_sleep();
> for (i = 0; i < (HPAGE_SIZE/PAGE_SIZE); i++) {
> cond_resched();
> - clear_user_highpage(page + i, addr);
> + clear_user_highpage(page + i, addr + i * PAGE_SIZE);
> }
> }
>
I'll add this to the 2.6.23 queue. Is it needed in 2.6.22.x?
^ permalink raw reply [flat|nested] 4+ messages in thread* Re: [PATCH] hugetlb: Fix clear_user_highpage arguments
2007-09-28 18:45 ` Andrew Morton
@ 2007-09-28 18:53 ` Ralf Baechle
2007-09-28 19:23 ` Andrew Morton
0 siblings, 1 reply; 4+ messages in thread
From: Ralf Baechle @ 2007-09-28 18:53 UTC (permalink / raw)
To: Andrew Morton; +Cc: linux-kernel, linux-mips
On Fri, Sep 28, 2007 at 11:45:26AM -0700, Andrew Morton wrote:
>
> > The virtual address space argument of clear_user_highpage is supposed to
> > be the virtual address where the page being cleared will eventually be
> > mapped. This allows architectures with virtually indexed caches a few
> > clever tricks. That sort of trick falls over in painful ways if the
> > virtual address argument is wrong.
>
> yeah, but only if you're using a weird CPU architecture ;)
I guess once I convinced your employer that weird CPU architectures
deliver more punch for the watt they stop being so weird ;-)
> >
> > diff --git a/mm/hugetlb.c b/mm/hugetlb.c
> > index 84c795e..eab8c42 100644
> > --- a/mm/hugetlb.c
> > +++ b/mm/hugetlb.c
> > @@ -42,7 +42,7 @@ static void clear_huge_page(struct page *page, unsigned long addr)
> > might_sleep();
> > for (i = 0; i < (HPAGE_SIZE/PAGE_SIZE); i++) {
> > cond_resched();
> > - clear_user_highpage(page + i, addr);
> > + clear_user_highpage(page + i, addr + i * PAGE_SIZE);
> > }
> > }
> >
>
> I'll add this to the 2.6.23 queue. Is it needed in 2.6.22.x?
It's totally theoretical atm, MIPS doesn't support hugetlb and I'm not
even working on it. I just happened to spot the issue.
Ralf
^ permalink raw reply [flat|nested] 4+ messages in thread* Re: [PATCH] hugetlb: Fix clear_user_highpage arguments
2007-09-28 18:53 ` Ralf Baechle
@ 2007-09-28 19:23 ` Andrew Morton
0 siblings, 0 replies; 4+ messages in thread
From: Andrew Morton @ 2007-09-28 19:23 UTC (permalink / raw)
To: Ralf Baechle; +Cc: linux-kernel, linux-mips, David S. Miller
On Fri, 28 Sep 2007 19:53:35 +0100 Ralf Baechle <ralf@linux-mips.org> wrote:
> On Fri, Sep 28, 2007 at 11:45:26AM -0700, Andrew Morton wrote:
>
> >
> > > The virtual address space argument of clear_user_highpage is supposed to
> > > be the virtual address where the page being cleared will eventually be
> > > mapped. This allows architectures with virtually indexed caches a few
> > > clever tricks. That sort of trick falls over in painful ways if the
> > > virtual address argument is wrong.
> >
> > yeah, but only if you're using a weird CPU architecture ;)
>
> I guess once I convinced your employer that weird CPU architectures
> deliver more punch for the watt they stop being so weird ;-)
<wonders what you've gone and done this time>
> > >
> > > diff --git a/mm/hugetlb.c b/mm/hugetlb.c
> > > index 84c795e..eab8c42 100644
> > > --- a/mm/hugetlb.c
> > > +++ b/mm/hugetlb.c
> > > @@ -42,7 +42,7 @@ static void clear_huge_page(struct page *page, unsigned long addr)
> > > might_sleep();
> > > for (i = 0; i < (HPAGE_SIZE/PAGE_SIZE); i++) {
> > > cond_resched();
> > > - clear_user_highpage(page + i, addr);
> > > + clear_user_highpage(page + i, addr + i * PAGE_SIZE);
> > > }
> > > }
> > >
> >
> > I'll add this to the 2.6.23 queue. Is it needed in 2.6.22.x?
>
> It's totally theoretical atm, MIPS doesn't support hugetlb and I'm not
> even working on it. I just happened to spot the issue.
sparc64 might care about this bug.
Anyway, I'll plop it in 2.6.23.
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2007-09-28 19:23 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-09-28 16:35 [PATCH] hugetlb: Fix clear_user_highpage arguments Ralf Baechle
2007-09-28 18:45 ` Andrew Morton
2007-09-28 18:53 ` Ralf Baechle
2007-09-28 19:23 ` Andrew Morton
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox