[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-Id: <1224257974.1848.49.camel@nimitz>
Date: Fri, 17 Oct 2008 08:39:34 -0700
From: Dave Hansen <dave@...ux.vnet.ibm.com>
To: Nadia Derbey <Nadia.Derbey@...l.net>
Cc: containers <containers@...ts.linux-foundation.org>,
"linux-kernel@...r.kernel.org" <linux-kernel@...r.kernel.org>,
linux-mm <linux-mm@...ck.org>,
Linus Torvalds <torvalds@...l.org>,
Ingo Molnar <mingo@...e.hu>,
Thomas Gleixner <tglx@...utronix.de>
Subject: Re: [PATCH 5/9] Restore memory address space
On Fri, 2008-10-17 at 10:44 +0200, Nadia Derbey wrote:
> On Thu, 2008-10-16 at 11:14 -0700, Dave Hansen wrote:
> > +static int cr_page_read(struct cr_ctx *ctx, struct page *page, char *buf)
> > +{
> > + void *ptr;
> > + int ret;
> > +
> > + ret = cr_kread(ctx, buf, PAGE_SIZE);
> > + if (ret < 0)
> > + return ret;
> > +
> > + ptr = kmap_atomic(page, KM_USER1);
> > + memcpy(ptr, buf, PAGE_SIZE);
> > + kunmap_atomic(page, KM_USER1);
>
> Here too, I think this should be changed to
> kunmap_atomic(ptr, KM_USER1);
Thanks, Nadia.
These fixes will show up in the git tree shortly:
http://git.kernel.org/gitweb.cgi?p=linux/kernel/git/daveh/linux-2.6-cr.git;a=summary
I just created it, so it may take a few moments for the gitweb script to
find it.
-- Dave
--
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