From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753549AbcGYSKo (ORCPT ); Mon, 25 Jul 2016 14:10:44 -0400 Received: from terminus.zytor.com ([198.137.202.10]:44652 "EHLO terminus.zytor.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752148AbcGYSKe (ORCPT ); Mon, 25 Jul 2016 14:10:34 -0400 Date: Mon, 25 Jul 2016 11:10:11 -0700 From: tip-bot for Arnaldo Carvalho de Melo Message-ID: Cc: mingo@kernel.org, adrian.hunter@intel.com, jolsa@kernel.org, acme@redhat.com, linux-kernel@vger.kernel.org, hpa@zytor.com, tglx@linutronix.de, wangnan0@huawei.com, namhyung@kernel.org, dsahern@gmail.com Reply-To: acme@redhat.com, adrian.hunter@intel.com, mingo@kernel.org, jolsa@kernel.org, namhyung@kernel.org, wangnan0@huawei.com, dsahern@gmail.com, hpa@zytor.com, linux-kernel@vger.kernel.org, tglx@linutronix.de To: linux-tip-commits@vger.kernel.org Subject: [tip:perf/core] perf tests kmod-path: Fix build on ubuntu:16.04-x-armhf Git-Commit-ID: e5e6312b5bc74c6f119993f32257927a6b646bd7 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: e5e6312b5bc74c6f119993f32257927a6b646bd7 Gitweb: http://git.kernel.org/tip/e5e6312b5bc74c6f119993f32257927a6b646bd7 Author: Arnaldo Carvalho de Melo AuthorDate: Fri, 22 Jul 2016 12:12:49 -0300 Committer: Arnaldo Carvalho de Melo CommitDate: Fri, 22 Jul 2016 16:25:44 -0300 perf tests kmod-path: Fix build on ubuntu:16.04-x-armhf Cross building it on Ubuntu 16.04 to ARM ends up showing we get the free() prototype by luck in other environments, fix it. Cc: Adrian Hunter Cc: David Ahern Cc: Jiri Olsa Cc: Namhyung Kim Cc: Wang Nan Link: http://lkml.kernel.org/n/tip-0ktfgmmyhcfw8ondka2013f3@git.kernel.org Signed-off-by: Arnaldo Carvalho de Melo --- tools/perf/tests/kmod-path.c | 1 + 1 file changed, 1 insertion(+) diff --git a/tools/perf/tests/kmod-path.c b/tools/perf/tests/kmod-path.c index d2af781..76f41f2 100644 --- a/tools/perf/tests/kmod-path.c +++ b/tools/perf/tests/kmod-path.c @@ -1,4 +1,5 @@ #include +#include #include "tests.h" #include "dso.h" #include "debug.h"