[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <alpine.DEB.2.02.1304162359560.5220@chino.kir.corp.google.com>
Date: Wed, 17 Apr 2013 00:01:18 -0700 (PDT)
From: David Rientjes <rientjes@...gle.com>
To: Libin <huawei.libin@...wei.com>
cc: Arnd Bergmann <arnd@...db.de>,
Greg Kroah-Hartman <gregkh@...uxfoundation.org>,
David Airlie <airlied@...ux.ie>,
Bjorn Helgaas <bhelgaas@...gle.com>,
"Hans J. Koch" <hjk@...sjkoch.de>,
Petr Vandrovec <petr@...drovec.name>,
Andrew Morton <akpm@...ux-foundation.org>,
Konstantin Khlebnikov <khlebnikov@...nvz.org>,
Thomas Hellstrom <thellstrom@...are.com>,
Dave Airlie <airlied@...hat.com>,
Nadia Yvette Chambers <nyc@...omorphy.com>,
Jiri Kosina <jkosina@...e.cz>,
Al Viro <viro@...iv.linux.org.uk>,
Mel Gorman <mgorman@...e.de>, Hugh Dickins <hughd@...gle.com>,
Rik van Riel <riel@...hat.com>,
Michel Lespinasse <walken@...gle.com>,
linux-kernel@...r.kernel.org, dri-devel@...ts.freedesktop.org,
linux-pci@...r.kernel.org, linux-mm@...ck.org,
guohanjun@...wei.com, wangyijing@...wei.com
Subject: Re: [PATCH 4/6] char: use vma_pages() to replace (vm_end - vm_start)
>> PAGE_SHIFT
On Mon, 15 Apr 2013, Libin wrote:
> diff --git a/drivers/char/mspec.c b/drivers/char/mspec.c
> index e1f60f9..ed0703f 100644
> --- a/drivers/char/mspec.c
> +++ b/drivers/char/mspec.c
> @@ -168,7 +168,7 @@ mspec_close(struct vm_area_struct *vma)
> if (!atomic_dec_and_test(&vdata->refcnt))
> return;
>
> - last_index = (vdata->vm_end - vdata->vm_start) >> PAGE_SHIFT;
> + last_index = vma_pages(vdata);
> for (index = 0; index < last_index; index++) {
> if (vdata->maddr[index] == 0)
> continue;
vdata is of type struct vma_data * and vma_pages() takes a formal of type
struct vm_area_struct *, so these are incompatible. Hopefully you tested
the other changes and simply lack an ia64 cross compiler for this one,
because it will emit a warning.
--
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