From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753488AbbKLGo1 (ORCPT ); Thu, 12 Nov 2015 01:44:27 -0500 Received: from terminus.zytor.com ([198.137.202.10]:50336 "EHLO terminus.zytor.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752650AbbKLGoZ (ORCPT ); Thu, 12 Nov 2015 01:44:25 -0500 Date: Wed, 11 Nov 2015 22:44:07 -0800 From: tip-bot for Arnaldo Carvalho de Melo Message-ID: Cc: dsahern@gmail.com, linux-kernel@vger.kernel.org, mingo@kernel.org, jolsa@redhat.com, wangnan0@huawei.com, adrian.hunter@intel.com, tglx@linutronix.de, acme@redhat.com, hpa@zytor.com, namhyung@kernel.org Reply-To: wangnan0@huawei.com, adrian.hunter@intel.com, tglx@linutronix.de, acme@redhat.com, hpa@zytor.com, namhyung@kernel.org, dsahern@gmail.com, linux-kernel@vger.kernel.org, mingo@kernel.org, jolsa@redhat.com To: linux-tip-commits@vger.kernel.org Subject: [tip:perf/urgent] tools include: Add compiler.h to list.h Git-Commit-ID: 5602ea09c19e85557f2b4d30be1d6ba349b7a038 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: 5602ea09c19e85557f2b4d30be1d6ba349b7a038 Gitweb: http://git.kernel.org/tip/5602ea09c19e85557f2b4d30be1d6ba349b7a038 Author: Arnaldo Carvalho de Melo AuthorDate: Wed, 11 Nov 2015 12:54:42 -0300 Committer: Arnaldo Carvalho de Melo CommitDate: Wed, 11 Nov 2015 18:41:33 -0300 tools include: Add compiler.h to list.h list.h needs WRITE_ONCE() since 7f5f873c6a07 ("rculist: Use WRITE_ONCE() when deleting from reader-visible list") add it before including the kernel's list.h file. This fixes builds of 'make perf-tar-src-pkg' perf tool tarball builds, i.e. out of tree builds. Cc: Adrian Hunter Cc: David Ahern Cc: Jiri Olsa Cc: Namhyung Kim Cc: Wang Nan Link: http://lkml.kernel.org/n/tip-e0rb8f7jwz0jn24ttyick9u6@git.kernel.org Signed-off-by: Arnaldo Carvalho de Melo --- tools/include/linux/list.h | 1 + 1 file changed, 1 insertion(+) diff --git a/tools/include/linux/list.h b/tools/include/linux/list.h index 76b014c..a017f15 100644 --- a/tools/include/linux/list.h +++ b/tools/include/linux/list.h @@ -1,3 +1,4 @@ +#include #include #include