From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 15607 invoked by alias); 28 Sep 2009 02:21:52 -0000 Received: (qmail 15593 invoked by uid 22791); 28 Sep 2009 02:21:51 -0000 X-SWARE-Spam-Status: No, hits=2.9 required=5.0 tests=AWL,BAYES_00,BOTNET X-Spam-Check-By: sourceware.org Received: from cn.fujitsu.com (HELO song.cn.fujitsu.com) (222.73.24.84) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Mon, 28 Sep 2009 02:21:44 +0000 Received: from tang.cn.fujitsu.com (tang.cn.fujitsu.com [10.167.250.3]) by song.cn.fujitsu.com (Postfix) with ESMTP id 8B969170127; Mon, 28 Sep 2009 10:21:41 +0800 (CST) Received: from fnst.cn.fujitsu.com (tang.cn.fujitsu.com [127.0.0.1]) by tang.cn.fujitsu.com (8.14.3/8.13.1) with ESMTP id n8S2LIPN009187; Mon, 28 Sep 2009 10:21:19 +0800 Received: from localhost.localdomain (unknown [10.167.141.140]) by fnst.cn.fujitsu.com (Postfix) with ESMTPA id 7F79B291C3F; Mon, 28 Sep 2009 10:24:23 +0800 (CST) Message-ID: <4AC01D6D.9070008@cn.fujitsu.com> Date: Mon, 28 Sep 2009 02:21:00 -0000 From: Li Zefan User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.9.1b3pre) Gecko/20090513 Fedora/3.0-2.3.beta2.fc11 Thunderbird/3.0b2 MIME-Version: 1.0 To: Masami Hiramatsu CC: Frederic Weisbecker , Steven Rostedt , Ingo Molnar , lkml , systemtap , DLE , Thomas Gleixner , Arnaldo Carvalho de Melo , Mike Galbraith , Paul Mackerras , Peter Zijlstra , Christoph Hellwig , Ananth N Mavinakayanahalli , Jim Keniston , "Frank Ch. Eigler" Subject: Re: [RFC PATCH tracing/kprobes 2/5] tracing/kprobes: Avoid field name confliction References: <20090925191424.12939.91503.stgit@omoto> <20090925191505.12939.69682.stgit@omoto> In-Reply-To: <20090925191505.12939.69682.stgit@omoto> Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit Mailing-List: contact systemtap-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Post: List-Help: , Sender: systemtap-owner@sourceware.org X-SW-Source: 2009-q3/txt/msg00859.txt.bz2 > +/* Reserved field names */ > +#define FIELD_STRING_IP "ip" > +#define FIELD_STRING_NARGS "nargs" > +#define FIELD_STRING_RETIP "ret_ip" > +#define FIELD_STRING_FUNC "func" > + > +const char *reserved_field_names[] = { > + "common_type", > + "common_flags", > + "common_preempt_count", > + "common_pid", > + "common_tgid", There is a new common field "common_lock_depth" > + FIELD_STRING_IP, > + FIELD_STRING_NARGS, > + FIELD_STRING_RETIP, > + FIELD_STRING_FUNC, > +};