From patchwork Fri Sep 14 21:23:34 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Chuck Lever X-Patchwork-Id: 1460331 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 4FBDF402E1 for ; Fri, 14 Sep 2012 21:24:06 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1756123Ab2INVX6 (ORCPT ); Fri, 14 Sep 2012 17:23:58 -0400 Received: from mail-yx0-f174.google.com ([209.85.213.174]:34623 "EHLO mail-yx0-f174.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1756129Ab2INVXg (ORCPT ); Fri, 14 Sep 2012 17:23:36 -0400 Received: by yenm15 with SMTP id m15so315385yen.19 for ; Fri, 14 Sep 2012 14:23:36 -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=tVBJGTobnLzeInz6EVCqqsotw43yyvois0fQ8i7nE0u0OISWS/9R/oXXT8iiJbwTCI TFlSgOWTbYqy2pSXH3dZiET+Quf7EDZ0VKkPjQP5ZL6V+ZiNcNSoxzANzKpK/Z1dRyOt gpg1NrC+79H4Y6x16VKxRlStdNKiYAMDwmHrDTZxYwmepHPWB1+3jQ78Eb6+mcneMgTB ieKken5CPzuEU5gmTpTgCacilyULIh/gI6j+ElBB+GZZrTuB/4oYzO/RMju5YTp4D9b9 5vKNYkRvY82jQTMVm1aC23T/kFpwNJa/ZPEu3/Q1I1m3m9y/QagOwcabHM2x1+dcYlLY 8w6g== Received: by 10.236.151.18 with SMTP id a18mr5628203yhk.14.1347657816192; Fri, 14 Sep 2012 14:23:36 -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 w20sm2615004anj.18.2012.09.14.14.23.34 (version=TLSv1/SSLv3 cipher=OTHER); Fri, 14 Sep 2012 14:23:35 -0700 (PDT) From: Chuck Lever Subject: [PATCH 03/10] SUNRPC: Clean up dprintk messages in rpc_pipe.c To: trond.myklebust@netapp.com Cc: linux-nfs@vger.kernel.org Date: Fri, 14 Sep 2012 17:23:34 -0400 Message-ID: <20120914212333.1635.95671.stgit@degas.1015granger.net> In-Reply-To: <20120914211053.1635.74063.stgit@degas.1015granger.net> References: <20120914211053.1635.74063.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);