[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <2c0942db0804180924n2ee701e5w7166a203569fc669@mail.gmail.com>
Date: Fri, 18 Apr 2008 09:24:27 -0700
From: "Ray Lee" <ray-lk@...rabbit.org>
To: "Rusty Russell" <rusty@...tcorp.com.au>
Cc: "Andrew Morton" <akpm@...ux-foundation.org>,
netdev@...r.kernel.org, "Max Krasnyansky" <maxk@...lcomm.com>,
virtualization@...ts.linux-foundation.org,
linux-kernel@...r.kernel.org
Subject: Re: [PATCH 5/5] tun: vringfd xmit support.
On Fri, Apr 18, 2008 at 8:15 AM, Rusty Russell <rusty@...tcorp.com.au> wrote:
> On Friday 18 April 2008 21:31:20 Andrew Morton wrote:
> > On Fri, 18 Apr 2008 14:43:24 +1000 Rusty Russell <rusty@...tcorp.com.au> wrote:
>
> > > + /* How many pages will this take? */
> > > + npages = 1 + (base + len - 1)/PAGE_SIZE - base/PAGE_SIZE;
> >
> > Brain hurts. I hope you got that right.
>
> I tested it when I wrote it, but just wrote a tester again:
>
> base len npages
> 0 1 1
> 0xfff 1 1
> 0x1000 1 1
> 0 4096 1
> 0x1 4096 2
> 0xfff 4096 2
> 0x1000 4096 1
> 0xfffff000 4096 1
> 0xfffff000 4097 4293918722
Picky, picky :-).
If base were always page aligned, we'd want
npages = (len + PAGE_SIZE - 1) / PAGE_SIZE;
which is simply rounding len up to the next largest page size. So when
base is not page aligned, increase len by the left-over space at the
beginning, and then do the same calculation as above. (ie, pretend
base is page aligned, and instead count the excess at the beginning as
part of len.)
npages = ( (base & PAGE_MASK) + len + PAGE_SIZE - 1) / PAGE_SIZE;
As long as len < PAGE_MASK - PAGE_SIZE, we're safe from overflows.
(The above gives a different answer when len=0, but you guard for that.)
--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Powered by blists - more mailing lists