From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751869AbcGXFuZ (ORCPT ); Sun, 24 Jul 2016 01:50:25 -0400 Received: from bh-25.webhostbox.net ([208.91.199.152]:40176 "EHLO bh-25.webhostbox.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751011AbcGXFuX (ORCPT ); Sun, 24 Jul 2016 01:50:23 -0400 From: Guenter Roeck To: Andrew Morton Cc: linux-kernel@vger.kernel.org, Guenter Roeck , Johannes Weiner Subject: [PATCH -next] mm: Drop unnecessary include file Date: Sat, 23 Jul 2016 22:50:08 -0700 Message-Id: <1469339408-9240-1-git-send-email-linux@roeck-us.net> X-Mailer: git-send-email 2.5.0 X-Authenticated_sender: guenter@roeck-us.net X-OutGoing-Spam-Status: No, score=-1.0 X-AntiAbuse: This header was added to track abuse, please include it with any abuse report X-AntiAbuse: Primary Hostname - bh-25.webhostbox.net X-AntiAbuse: Original Domain - vger.kernel.org X-AntiAbuse: Originator/Caller UID/GID - [47 12] / [47 12] X-AntiAbuse: Sender Address Domain - roeck-us.net X-Get-Message-Sender-Via: bh-25.webhostbox.net: authenticated_id: guenter@roeck-us.net X-Authenticated-Sender: bh-25.webhostbox.net: guenter@roeck-us.net X-Source: X-Source-Args: X-Source-Dir: Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Commmit e9be930fa6b5 ("mm: fix vm-scalability regression in cgroup-aware workingset code") adds '#include ' to include/linux/memcontrol.h. This results in the following build error when building hexagon images. In file included from ./include/linux/memcontrol.h:32:0, from ./include/linux/swap.h:8, from ./arch/hexagon/include/asm/pgtable.h:27, from mm/init-mm.c:9: ./include/linux/mm.h:322:2: error: unknown type name 'pmd_t' ./include/linux/mm.h:353:7: error: unknown type name 'pmd_t' ./include/linux/mm.h:414:30: error: unknown type name 'pmd_t' The include file does not appear to be necessary, so just drop it. Fixes: e9be930fa6b5 ("mm: fix vm-scalability regression in cgroup-aware workingset code") Cc: Johannes Weiner Signed-off-by: Guenter Roeck --- Build tested with all architectures. No related build failures observed. include/linux/memcontrol.h | 1 - 1 file changed, 1 deletion(-) diff --git a/include/linux/memcontrol.h b/include/linux/memcontrol.h index 2cf30455b25f..5d8ca6e02e39 100644 --- a/include/linux/memcontrol.h +++ b/include/linux/memcontrol.h @@ -29,7 +29,6 @@ #include #include #include -#include struct mem_cgroup; struct page; -- 2.5.0