Return-Path: Received: from mx1.redhat.com ([209.132.183.28]:52673 "EHLO mx1.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752105AbbHZLw3 (ORCPT ); Wed, 26 Aug 2015 07:52:29 -0400 Date: Wed, 26 Aug 2015 17:22:25 +0530 From: Pratyush Anand To: Jeff Layton Cc: bfields@fieldses.org, rostedt@goodmis.org, linux-nfs@vger.kernel.org, Ingo Molnar , "J. Bruce Fields" , Jeff Layton , open list , Trond Myklebust Subject: Re: [PATCH 1/2] net: sunrpc: fix tracepoint Warning: unknown op '->' Message-ID: <20150826115225.GF13340@dhcppc13.redhat.com> References: <20150826063103.6f036582@tlielax.poochiereds.net> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii In-Reply-To: <20150826063103.6f036582@tlielax.poochiereds.net> Sender: linux-nfs-owner@vger.kernel.org List-ID: Hi Jeff, Thanks for your review comments. On 26/08/2015:06:31:03 AM, Jeff Layton wrote: > On Tue, 25 Aug 2015 11:34:19 +0530 > Pratyush Anand wrote: > > TP_fast_assign( > > __entry->xprt = xprt; > > + __entry->addr = > > + xprt ? (struct sockaddr *)&xprt->xpt_remote : NULL; > > I don't get it. It's not safe to save a pointer to xprt and dereference > that in a tracepoint (and I understand why that is), but it is safe to > save a pointer to a structure embedded inside of xprt? Shouldn't you be > saving a copy of the entire sockaddr struct instead? As far as "saving of a pointer to a structure embedded inside of xprt" is concerned, I do not see any issue. Its your take that what you want to print as your tracepoint print output. I might be missing something.. However, I do not see any value addition in printing address of a structure(located in ring buffer) where xprt->xpt_remote has been copied. > > Ahh, ok -- I think I see the confusion. %pIScp does not print the > address of the sockaddr, but instead dereferences the pointer and > prints it as a formatted address string. See pointer() in > lib/vsprintf.c. You do want to save off a copy of the structure instead. In my opinion, saving of structure would only be necessary if you want to access element of the structure xprt->xpt_remote. ~Pratyush