From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751004Ab2G0MZY (ORCPT ); Fri, 27 Jul 2012 08:25:24 -0400 Received: from mx1.redhat.com ([209.132.183.28]:39424 "EHLO mx1.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751316Ab2G0MZV (ORCPT ); Fri, 27 Jul 2012 08:25:21 -0400 From: Jiri Olsa To: acme@redhat.com, a.p.zijlstra@chello.nl, mingo@elte.hu, paulus@samba.org, cjashfor@linux.vnet.ibm.com, fweisbec@gmail.com Cc: eranian@google.com, gorcunov@openvz.org, tzanussi@gmail.com, mhiramat@redhat.com, robert.richter@amd.com, fche@redhat.com, linux-kernel@vger.kernel.org, masami.hiramatsu.pt@hitachi.com, drepper@gmail.com, asharma@fb.com, benjamin.redelings@nescent.org, Jiri Olsa Subject: [PATCH 08/13] perf, tool: Adding PERF_ATTR_SIZE_VER2 to the header swap check Date: Fri, 27 Jul 2012 14:23:49 +0200 Message-Id: <1343391834-10851-9-git-send-email-jolsa@redhat.com> In-Reply-To: <1343391834-10851-1-git-send-email-jolsa@redhat.com> References: <1343391834-10851-1-git-send-email-jolsa@redhat.com> Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Updating attr_file_abi_sizes array with PERF_ATTR_SIZE_VER2 version, so we have the swap check complete. Signed-off-by: Jiri Olsa --- tools/perf/util/header.c | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/tools/perf/util/header.c b/tools/perf/util/header.c index 3a6d204..5d470a3 100644 --- a/tools/perf/util/header.c +++ b/tools/perf/util/header.c @@ -1820,6 +1820,7 @@ out_free: static const int attr_file_abi_sizes[] = { [0] = PERF_ATTR_SIZE_VER0, [1] = PERF_ATTR_SIZE_VER1, + [2] = PERF_ATTR_SIZE_VER2, 0, }; -- 1.7.7.6