From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-ig0-f170.google.com (mail-ig0-f170.google.com [209.85.213.170]) by kanga.kvack.org (Postfix) with ESMTP id 573D76B0255 for ; Tue, 15 Sep 2015 06:28:59 -0400 (EDT) Received: by igbni9 with SMTP id ni9so10329536igb.0 for ; Tue, 15 Sep 2015 03:28:59 -0700 (PDT) Received: from mga01.intel.com (mga01.intel.com. [192.55.52.88]) by mx.google.com with ESMTP id ii2si11333330igb.85.2015.09.15.03.28.55 for ; Tue, 15 Sep 2015 03:28:55 -0700 (PDT) From: "Kirill A. Shutemov" Subject: [PATCHv6 1/7] mm: drop page->slab_page Date: Tue, 15 Sep 2015 13:28:09 +0300 Message-Id: <1442312895-124384-2-git-send-email-kirill.shutemov@linux.intel.com> In-Reply-To: <1442312895-124384-1-git-send-email-kirill.shutemov@linux.intel.com> References: <1442312895-124384-1-git-send-email-kirill.shutemov@linux.intel.com> Sender: owner-linux-mm@kvack.org List-ID: To: Andrew Morton , Hugh Dickins Cc: Andrea Arcangeli , Dave Hansen , Vlastimil Babka , Johannes Weiner , Michal Hocko , David Rientjes , "Aneesh Kumar K.V" , linux-kernel@vger.kernel.org, linux-mm@kvack.org, "Kirill A. Shutemov" , Joonsoo Kim , Andi Kleen Since 8456a648cf44 ("slab: use struct page for slab management") nobody uses slab_page field in struct page. Let's drop it. Signed-off-by: Kirill A. Shutemov Acked-by: Christoph Lameter Acked-by: David Rientjes Acked-by: Vlastimil Babka Reviewed-by: Andrea Arcangeli Cc: Joonsoo Kim Cc: Andi Kleen --- include/linux/mm_types.h | 1 - 1 file changed, 1 deletion(-) diff --git a/include/linux/mm_types.h b/include/linux/mm_types.h index 3d6baa7d4534..5fe12cb4642b 100644 --- a/include/linux/mm_types.h +++ b/include/linux/mm_types.h @@ -131,7 +131,6 @@ struct page { #endif }; - struct slab *slab_page; /* slab fields */ struct rcu_head rcu_head; /* Used by SLAB * when destroying via RCU */ -- 2.5.1 -- To unsubscribe, send a message with 'unsubscribe linux-mm' in the body to majordomo@kvack.org. For more info on Linux MM, see: http://www.linux-mm.org/ . Don't email: email@kvack.org