Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754669AbaDNLVU (ORCPT ); Mon, 14 Apr 2014 07:21:20 -0400 Received: from mx1.redhat.com ([209.132.183.28]:21867 "EHLO mx1.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751279AbaDNLVT (ORCPT ); Mon, 14 Apr 2014 07:21:19 -0400 Date: Mon, 14 Apr 2014 13:18:05 +0200 From: Jiri Olsa To: Borislav Petkov Cc: Arnaldo Carvalho de Melo , Rusty Russell , LKML , Sasha Levin , Peter Zijlstra , Paul Mackerras , Ingo Molnar , "Michael S. Tsirkin" , virtio-dev@lists.oasis-open.org, virtualization@lists.linux-foundation.org Subject: Re: [PATCH] tools: Consolidate types.h Message-ID: <20140414111805.GA7696@krava.brq.redhat.com> References: <1393153753-2369-1-git-send-email-bp@alien8.de> <87eh2s55tg.fsf@rustcorp.com.au> <20140225070020.GA19504@pd.tnic> <87eh2r4c2d.fsf@rustcorp.com.au> <20140225140511.GD5982@ghostprotocols.net> <20140410173805.GA28613@pd.tnic> <20140411115930.GC1107@krava.brq.redhat.com> <20140412101455.GA30694@pd.tnic> <20140413112743.GB25088@pd.tnic> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20140413112743.GB25088@pd.tnic> User-Agent: Mutt/1.5.21 (2010-09-15) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Sun, Apr 13, 2014 at 01:27:43PM +0200, Borislav Petkov wrote: > And while we're at it, let's do another consolidation: > > --- > From: Borislav Petkov > Date: Sat, 12 Apr 2014 20:10:49 +0200 > Subject: [PATCH] tools: Consolidate types.h > > Combine all definitions into a common tools/include/linux/types.h and > kill the wild growth elsewhere. While at it, move u64_swap to its only > user, evsel.h. please put the 'u64_swap move' into separated patch plus one nit below thanks, jirka > > Signed-off-by: Borislav Petkov > --- > .../lockdep/uinclude => include}/linux/types.h | 29 +++++++++++++++++----- > tools/perf/MANIFEST | 1 + SNIP > diff --git a/tools/perf/tests/perf-targz-src-pkg b/tools/perf/tests/perf-targz-src-pkg > index 238aa3927c71..3017d82a700f 100755 > --- a/tools/perf/tests/perf-targz-src-pkg > +++ b/tools/perf/tests/perf-targz-src-pkg > @@ -1,4 +1,4 @@ > -#!/bin/sh > +#!/bin/bash > # Test one of the main kernel Makefile targets to generate a perf sources tarball > # suitable for build outside the full kernel sources. > # > @@ -7,15 +7,17 @@ > # like when we made some files that were in tools/perf/ available to other tools/ > # codebases by moving it to tools/include/, etc. > > +set -x > + > PERF=$1 > cd ${PERF}/../.. > make perf-targz-src-pkg > /dev/null > TARBALL=$(ls -rt perf-*.tar.gz) > TMP_DEST=$(mktemp -d) > tar xf ${TARBALL} -C $TMP_DEST > -rm -f ${TARBALL} > +# rm -f ${TARBALL} > cd - > /dev/null > -make -C $TMP_DEST/perf*/tools/perf > /dev/null 2>&1 > +make -C $TMP_DEST/perf*/tools/perf > w.log 2>&1 > RC=$? > -rm -rf ${TMP_DEST} > +# rm -rf ${TMP_DEST} > exit $RC leftover from another change ;-) -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/