From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752549AbcKGI4Q (ORCPT ); Mon, 7 Nov 2016 03:56:16 -0500 Received: from terminus.zytor.com ([198.137.202.10]:43678 "EHLO terminus.zytor.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750981AbcKGI4O (ORCPT ); Mon, 7 Nov 2016 03:56:14 -0500 Date: Mon, 7 Nov 2016 00:53:52 -0800 From: tip-bot for Borislav Petkov Message-ID: Cc: tglx@linutronix.de, dave.hansen@intel.com, eranian@google.com, sai.praneeth.prakhya@intel.com, fenghua.yu@intel.com, linux-kernel@vger.kernel.org, hpa@zytor.com, davidcc@google.com, torvalds@linux-foundation.org, ravi.v.shankar@intel.com, mingo@kernel.org, peterz@infradead.org, h.peter.anvin@intel.com, bp@suse.de, nilayvaish@gmail.com, vikas.shivappa@linux.intel.com, tony.luck@intel.com, shli@fb.com Reply-To: tglx@linutronix.de, dave.hansen@intel.com, eranian@google.com, sai.praneeth.prakhya@intel.com, linux-kernel@vger.kernel.org, fenghua.yu@intel.com, hpa@zytor.com, davidcc@google.com, torvalds@linux-foundation.org, ravi.v.shankar@intel.com, mingo@kernel.org, peterz@infradead.org, h.peter.anvin@intel.com, bp@suse.de, nilayvaish@gmail.com, vikas.shivappa@linux.intel.com, tony.luck@intel.com, shli@fb.com In-Reply-To: <20161102165117.23545-1-bp@alien8.de> References: <20161102165117.23545-1-bp@alien8.de> To: linux-tip-commits@vger.kernel.org Subject: [tip:x86/cache] x86/intel_rdt: Add a missing #include Git-Commit-ID: 8ff42c02193150720815608ed03de8d45aeaf8a8 X-Mailer: tip-git-log-daemon Robot-ID: Robot-Unsubscribe: Contact to get blacklisted from these emails MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset=UTF-8 Content-Disposition: inline Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Commit-ID: 8ff42c02193150720815608ed03de8d45aeaf8a8 Gitweb: http://git.kernel.org/tip/8ff42c02193150720815608ed03de8d45aeaf8a8 Author: Borislav Petkov AuthorDate: Wed, 2 Nov 2016 17:51:17 +0100 Committer: Ingo Molnar CommitDate: Mon, 7 Nov 2016 08:36:16 +0100 x86/intel_rdt: Add a missing #include ... to fix this build warning: In file included from arch/x86/kernel/cpu/intel_rdt.c:33:0: ./arch/x86/include/asm/intel_rdt.h:56:25: warning: ‘struct kernfs_open_file’ declared inside parameter list will not be visible outside of this definition or declaration int (*seq_show)(struct kernfs_open_file *of, ^~~~~~~~~~~~~~~~ ... Signed-off-by: Borislav Petkov Cc: Dave Hansen Cc: David Carrillo-Cisneros Cc: Fenghua Yu Cc: H. Peter Anvin Cc: Linus Torvalds Cc: Nilay Vaish Cc: Peter Zijlstra Cc: Ravi V Shankar Cc: Sai Prakhya Cc: Shaohua Li Cc: Stephane Eranian Cc: Thomas Gleixner Cc: Tony Luck Cc: Vikas Shivappa Link: http://lkml.kernel.org/r/20161102165117.23545-1-bp@alien8.de Signed-off-by: Ingo Molnar --- arch/x86/include/asm/intel_rdt.h | 1 + 1 file changed, 1 insertion(+) diff --git a/arch/x86/include/asm/intel_rdt.h b/arch/x86/include/asm/intel_rdt.h index 5bc72a4..6e90e87 100644 --- a/arch/x86/include/asm/intel_rdt.h +++ b/arch/x86/include/asm/intel_rdt.h @@ -3,6 +3,7 @@ #ifdef CONFIG_INTEL_RDT_A +#include #include #include