[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-ID: <010b01d012ca$05244060$0f6cc120$@alibaba-inc.com>
Date: Mon, 08 Dec 2014 17:33:26 +0800
From: "Hillf Danton" <hillf.zj@...baba-inc.com>
To: <Yalin.Wang@...ymobile.com>
Cc: "linux-kernel" <linux-kernel@...r.kernel.org>,
<linux-mm@...ck.org>, <linux-arm-kernel@...ts.infradead.org>,
"Andrew Morton" <akpm@...ux-foundation.org>,
"Hillf Danton" <hillf.zj@...baba-inc.com>
Subject: Re: [PATCH] mm:add VM_BUG_ON() for page_mapcount()
>
> This patch add VM_BUG_ON() for slab page,
> because _mapcount is an union with slab struct in struct page,
> avoid access _mapcount if this page is a slab page.
> Also remove the unneeded bracket.
>
> Signed-off-by: Yalin Wang <yalin.wang@...ymobile.com>
> ---
> include/linux/mm.h | 3 ++-
> 1 file changed, 2 insertions(+), 1 deletion(-)
>
> diff --git a/include/linux/mm.h b/include/linux/mm.h
> index 11b65cf..34124c4 100644
> --- a/include/linux/mm.h
> +++ b/include/linux/mm.h
> @@ -373,7 +373,8 @@ static inline void reset_page_mapcount(struct page *page)
>
> static inline int page_mapcount(struct page *page)
> {
> - return atomic_read(&(page)->_mapcount) + 1;
> + VM_BUG_ON(PageSlab(page));
s/ VM_BUG_ON/ VM_BUG_ON_PAGE/ ?
> + return atomic_read(&page->_mapcount) + 1;
> }
>
--
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