From patchwork Mon Jul 29 17:21:08 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "santosh.anbu" X-Patchwork-Id: 2835099 Return-Path: X-Original-To: patchwork-v9fs-devel@patchwork.kernel.org Delivered-To: patchwork-parsemail@patchwork2.web.kernel.org Received: from mail.kernel.org (mail.kernel.org [198.145.19.201]) by patchwork2.web.kernel.org (Postfix) with ESMTP id 2BFF5C0319 for ; Mon, 29 Jul 2013 17:21:41 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id E4C81201E1 for ; Mon, 29 Jul 2013 17:21:39 +0000 (UTC) Received: from lists.sourceforge.net (lists.sourceforge.net [216.34.181.88]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPS id ADFE7201B2 for ; Mon, 29 Jul 2013 17:21:38 +0000 (UTC) Received: from localhost ([127.0.0.1] helo=sfs-ml-4.v29.ch3.sourceforge.com) by sfs-ml-4.v29.ch3.sourceforge.com with esmtp (Exim 4.76) (envelope-from ) id 1V3r8a-000406-51; Mon, 29 Jul 2013 17:21:36 +0000 Received: from sog-mx-3.v43.ch3.sourceforge.com ([172.29.43.193] helo=mx.sourceforge.net) by sfs-ml-4.v29.ch3.sourceforge.com with esmtp (Exim 4.76) (envelope-from ) id 1V3r8X-000400-Oc for v9fs-developer@lists.sourceforge.net; Mon, 29 Jul 2013 17:21:33 +0000 Received-SPF: pass (sog-mx-3.v43.ch3.sourceforge.com: domain of gmail.com designates 209.85.220.50 as permitted sender) client-ip=209.85.220.50; envelope-from=asantoshking@gmail.com; helo=mail-pa0-f50.google.com; Received: from mail-pa0-f50.google.com ([209.85.220.50]) by sog-mx-3.v43.ch3.sourceforge.com with esmtps (TLSv1:RC4-SHA:128) (Exim 4.76) id 1V3r8V-0001hF-Tk for v9fs-developer@lists.sourceforge.net; Mon, 29 Jul 2013 17:21:33 +0000 Received: by mail-pa0-f50.google.com with SMTP id fb10so5527840pad.23 for ; Mon, 29 Jul 2013 10:21:26 -0700 (PDT) X-Received: by 10.68.164.97 with SMTP id yp1mr67789267pbb.77.1375118486040; Mon, 29 Jul 2013 10:21:26 -0700 (PDT) Received: from localhost.localdomain ([106.51.115.161]) by mx.google.com with ESMTPSA id 4sm78027121pbw.32.2013.07.29.10.21.23 for (version=TLSv1.1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Mon, 29 Jul 2013 10:21:25 -0700 (PDT) From: "santosh.anbu" To: ericvh@gmail.com Date: Mon, 29 Jul 2013 22:51:08 +0530 Message-Id: <1375118468-3349-1-git-send-email-asantosh.king@gmail.com> X-Mailer: git-send-email 1.8.1.2 X-Spam-Score: -1.6 (-) X-Headers-End: 1V3r8V-0001hF-Tk Cc: v9fs-developer@lists.sourceforge.net, linux-kernel@vger.kernel.org, asantosh.king@gmail.com Subject: [V9fs-developer] [PATCH] Events: 9p.h: Fixed few brace coding style issues X-BeenThere: v9fs-developer@lists.sourceforge.net X-Mailman-Version: 2.1.9 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Errors-To: v9fs-developer-bounces@lists.sourceforge.net X-Spam-Status: No, score=-8.4 required=5.0 tests=BAYES_00, DKIM_ADSP_CUSTOM_MED, FREEMAIL_FROM,RCVD_IN_DNSWL_HI,RP_MATCHES_RCVD,UNPARSEABLE_RELAY autolearn=unavailable version=3.3.1 X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on mail.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP From: "santosh.anbu" Kill all the whitespaces conforming to standards Signed-off-by: santosh.anbu --- include/trace/events/9p.h | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/include/trace/events/9p.h b/include/trace/events/9p.h index a066636..c91a015 100644 --- a/include/trace/events/9p.h +++ b/include/trace/events/9p.h @@ -83,9 +83,9 @@ TRACE_EVENT(9p_client_req, TP_ARGS(clnt, type, tag), TP_STRUCT__entry( - __field( void *, clnt ) - __field( __u8, type ) - __field( __u32, tag ) + __field(void *, clnt) + __field(__u8, type) + __field(__u32, tag) ), TP_fast_assign( @@ -97,7 +97,7 @@ TRACE_EVENT(9p_client_req, TP_printk("client %lu request %s tag %d", (long)__entry->clnt, show_9p_op(__entry->type), __entry->tag) - ); +); TRACE_EVENT(9p_client_res, TP_PROTO(struct p9_client *clnt, int8_t type, int tag, int err), @@ -105,10 +105,10 @@ TRACE_EVENT(9p_client_res, TP_ARGS(clnt, type, tag, err), TP_STRUCT__entry( - __field( void *, clnt ) - __field( __u8, type ) - __field( __u32, tag ) - __field( __u32, err ) + __field(void *, clnt) + __field(__u8, type) + __field(__u32, tag) + __field(__u32, err) ), TP_fast_assign( @@ -131,10 +131,10 @@ TRACE_EVENT(9p_protocol_dump, TP_ARGS(clnt, pdu), TP_STRUCT__entry( - __field( void *, clnt ) - __field( __u8, type ) - __field( __u16, tag ) - __array( unsigned char, line, P9_PROTO_DUMP_SZ ) + __field(void *, clnt) + __field(__u8, type) + __field(__u16, tag) + __array(unsigned char, line, P9_PROTO_DUMP_SZ) ), TP_fast_assign( @@ -146,7 +146,7 @@ TRACE_EVENT(9p_protocol_dump, TP_printk("clnt %lu %s(tag = %d)\n%.3x: %16ph\n%.3x: %16ph\n", (unsigned long)__entry->clnt, show_9p_op(__entry->type), __entry->tag, 0, __entry->line, 16, __entry->line + 16) - ); +); #endif /* _TRACE_9P_H */