From patchwork Mon Aug 13 21:21:32 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Chuck Lever X-Patchwork-Id: 1316191 Return-Path: X-Original-To: patchwork-linux-nfs@patchwork.kernel.org Delivered-To: patchwork-process-083081@patchwork1.kernel.org Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by patchwork1.kernel.org (Postfix) with ESMTP id 2B88C400E6 for ; Mon, 13 Aug 2012 21:22:26 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752099Ab2HMVVx (ORCPT ); Mon, 13 Aug 2012 17:21:53 -0400 Received: from mail-gh0-f174.google.com ([209.85.160.174]:62757 "EHLO mail-gh0-f174.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752719Ab2HMVVe (ORCPT ); Mon, 13 Aug 2012 17:21:34 -0400 Received: by ghrr11 with SMTP id r11so3559707ghr.19 for ; Mon, 13 Aug 2012 14:21:34 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=sender:from:subject:to:cc:date:message-id:in-reply-to:references :user-agent:mime-version:content-type:content-transfer-encoding; bh=7gkd4TW2tTta8KGqeQ/0FaKi8ZoMB2rbgbIOYzUuS24=; b=BbJu6K+SVvvRtof7uZSn/S8A8ZqrRTJJyCSl9Bo3Zv68Ql8YQKoWFnfyZL0HV3GD/y tEPK6ny0nuGlJjV3Qi40jatOsicwFB15N5IR/9xEu41s74ylNwL7JcXB+4aJvpIi/Ln5 ZenMuY7+gSW6eA2PgniBRJs6xzrZ22vPUSlJdjs4rQ5GCndvTC07MiXJvz/lFo3B+8kH MH7sPvr17IC+uV4hopi+2maM7wWJv0yo3D+ICBhoDESCVF4asmhXcMQTdNYjH0D7FX6k EBMlx6ZQh7cyAG7ITfq4ByVjRJKPl1o5BWpmzxnpxx2G8/m9VH20cgOYLGChz7EhP+RR yHtQ== Received: by 10.50.158.196 with SMTP id ww4mr7009861igb.5.1344892894204; Mon, 13 Aug 2012 14:21:34 -0700 (PDT) Received: from degas.1015granger.net (adsl-99-26-161-222.dsl.sfldmi.sbcglobal.net. [99.26.161.222]) by mx.google.com with ESMTPS id xm2sm6365035igb.3.2012.08.13.14.21.32 (version=TLSv1/SSLv3 cipher=OTHER); Mon, 13 Aug 2012 14:21:33 -0700 (PDT) From: Chuck Lever Subject: [PATCH 1/5] SUNRPC: Clean up dprintk messages in rpc_pipe.c To: trond.myklebust@netapp.com Cc: linux-nfs@vger.kernel.org Date: Mon, 13 Aug 2012 17:21:32 -0400 Message-ID: <20120813212132.1680.63593.stgit@degas.1015granger.net> In-Reply-To: <20120813210739.1680.53741.stgit@degas.1015granger.net> References: <20120813210739.1680.53741.stgit@degas.1015granger.net> User-Agent: StGIT/0.14.3 MIME-Version: 1.0 Sender: linux-nfs-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-nfs@vger.kernel.org Clean up: The blank space in front of the message must be spaces. Tabs show up on the console as a graphical character. Signed-off-by: Chuck Lever --- net/sunrpc/rpc_pipe.c | 8 ++++---- 1 files changed, 4 insertions(+), 4 deletions(-) -- To unsubscribe from this list: send the line "unsubscribe linux-nfs" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html diff --git a/net/sunrpc/rpc_pipe.c b/net/sunrpc/rpc_pipe.c index 21fde99..80f5dd2 100644 --- a/net/sunrpc/rpc_pipe.c +++ b/net/sunrpc/rpc_pipe.c @@ -1119,8 +1119,8 @@ rpc_fill_super(struct super_block *sb, void *data, int silent) return -ENOMEM; if (rpc_populate(root, files, RPCAUTH_lockd, RPCAUTH_RootEOF, NULL)) return -ENOMEM; - dprintk("RPC: sending pipefs MOUNT notification for net %p%s\n", net, - NET_NAME(net)); + dprintk("RPC: sending pipefs MOUNT notification for net %p%s\n", + net, NET_NAME(net)); sn->pipefs_sb = sb; err = blocking_notifier_call_chain(&rpc_pipefs_notifier_list, RPC_PIPEFS_MOUNT, @@ -1155,8 +1155,8 @@ static void rpc_kill_sb(struct super_block *sb) sn->pipefs_sb = NULL; mutex_unlock(&sn->pipefs_sb_lock); put_net(net); - dprintk("RPC: sending pipefs UMOUNT notification for net %p%s\n", net, - NET_NAME(net)); + dprintk("RPC: sending pipefs UMOUNT notification for net %p%s\n", + net, NET_NAME(net)); blocking_notifier_call_chain(&rpc_pipefs_notifier_list, RPC_PIPEFS_UMOUNT, sb);