From patchwork Tue Jan 28 22:19:22 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Tejun Heo X-Patchwork-Id: 3548401 Return-Path: X-Original-To: patchwork-linux-pm@patchwork.kernel.org Delivered-To: patchwork-parsemail@patchwork2.web.kernel.org Received: from mail.kernel.org (mail.kernel.org [198.145.19.201]) by patchwork2.web.kernel.org (Postfix) with ESMTP id 6B182C02DC for ; Tue, 28 Jan 2014 22:19:45 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id 9DD732015E for ; Tue, 28 Jan 2014 22:19:44 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id A3ACD20109 for ; Tue, 28 Jan 2014 22:19:43 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755713AbaA1WT3 (ORCPT ); Tue, 28 Jan 2014 17:19:29 -0500 Received: from mail-qc0-f172.google.com ([209.85.216.172]:39548 "EHLO mail-qc0-f172.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1755315AbaA1WT1 (ORCPT ); Tue, 28 Jan 2014 17:19:27 -0500 Received: by mail-qc0-f172.google.com with SMTP id c9so1584977qcz.3 for ; Tue, 28 Jan 2014 14:19:26 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=sender:date:from:to:cc:subject:message-id:mime-version:content-type :content-disposition:user-agent; bh=yN17rYmIBgrSvpTftw169nd6Kkm75O5C9pjTRnMzukE=; b=HAFINc07o30CVmYRuDnVQIfpgCT5rgtfPQEjFTX2sdUuB2czT3U8LdkdCtlpGRihUR F3oEo3al0PfYm5pz52/IxgQYA43bbm8FUIzCC5Ue+ZJDIzI/PCW8zyjXy3CDW92vpdvw xmTJyBTB35iV1r8O0lWWsOFqCP6uPHPLruZJvvokMUs1Xp9PJQUeYmKl9joJvk5qssT+ OK+6u8jG46nFD/nuF02GYsIBJsIgKSxVwC1M249Wut2AvKqeKfjayNqFPFIUto+xIPUY tjTDkPqNSjeJ7WMXE5X6cQWl5cxGM+obH+T3WrF+KN3C4jIJ5uHTymaz6P/X9cbH4i4N beYw== X-Received: by 10.140.49.200 with SMTP id q66mr6166866qga.103.1390947566409; Tue, 28 Jan 2014 14:19:26 -0800 (PST) Received: from mtj.dyndns.org (nat-pool-rdu-u.redhat.com. [66.187.233.203]) by mx.google.com with ESMTPSA id b18sm356736qaw.0.2014.01.28.14.19.24 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Tue, 28 Jan 2014 14:19:25 -0800 (PST) Date: Tue, 28 Jan 2014 17:19:22 -0500 From: Tejun Heo To: Stephen Warren , Thierry Reding , linux-tegra@vger.kernel.org, "Rafael J. Wysocki" , linux-pm@vger.kernel.org, Johannes Weiner , Michal Hocko , Balbir Singh , KAMEZAWA Hiroyuki , cgroups@vger.kernel.org Cc: linux-kernel@vger.kernel.org Subject: [PATCH] arm, pm, vmpressure: add missing slab.h includes Message-ID: <20140128221922.GC16060@mtj.dyndns.org> MIME-Version: 1.0 Content-Disposition: inline User-Agent: Mutt/1.5.21 (2010-09-15) Sender: linux-pm-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-pm@vger.kernel.org X-Spam-Status: No, score=-7.3 required=5.0 tests=BAYES_00,DKIM_SIGNED, RCVD_IN_DNSWL_HI,RP_MATCHES_RCVD,T_DKIM_INVALID,UNPARSEABLE_RELAY autolearn=unavailable version=3.3.1 X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on mail.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP arch/arm/mach-tegra/pm.c, kernel/power/console.c and mm/vmpressure.c were somehow getting slab.h indirectly through cgroup.h which in turn was getting it indirectly through xattr.h. A scheduled cgroup change drops xattr.h inclusion from cgroup.h and breaks compilation of these three files. Add explicit slab.h includes to the three files. A pending cgroup patch depends on this change and it'd be great if this can be routed through cgroup/for-3.14-fixes branch. Signed-off-by: Tejun Heo Cc: Stephen Warren Cc: Thierry Reding Cc: linux-tegra@vger.kernel.org Cc: "Rafael J. Wysocki" Cc: linux-pm@vger.kernel.org Cc: Johannes Weiner Cc: Michal Hocko Cc: Balbir Singh Cc: KAMEZAWA Hiroyuki Cc: cgroups@vger.kernel.org Acked-by: Stephen Warren --- If you guys are okay with this going through cgroup/for-3.14-fixes, can you please ack it? Thanks! arch/arm/mach-tegra/pm.c | 1 + kernel/power/console.c | 1 + mm/vmpressure.c | 1 + 3 files changed, 3 insertions(+) -- To unsubscribe from this list: send the line "unsubscribe linux-pm" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html --- a/arch/arm/mach-tegra/pm.c +++ b/arch/arm/mach-tegra/pm.c @@ -24,6 +24,7 @@ #include #include #include +#include #include #include --- a/kernel/power/console.c +++ b/kernel/power/console.c @@ -9,6 +9,7 @@ #include #include #include +#include #include "power.h" #define SUSPEND_CONSOLE (MAX_NR_CONSOLES-1) --- a/mm/vmpressure.c +++ b/mm/vmpressure.c @@ -19,6 +19,7 @@ #include #include #include +#include #include #include #include