From patchwork Tue Oct 16 19:44:39 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Roland Dreier X-Patchwork-Id: 1602501 X-Patchwork-Delegate: roland@digitalvampire.org Return-Path: X-Original-To: patchwork-linux-rdma@patchwork.kernel.org Delivered-To: patchwork-process-083081@patchwork2.kernel.org Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by patchwork2.kernel.org (Postfix) with ESMTP id 65ACBDFFED for ; Tue, 16 Oct 2012 19:44:47 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S932093Ab2JPToq (ORCPT ); Tue, 16 Oct 2012 15:44:46 -0400 Received: from na3sys010aog107.obsmtp.com ([74.125.245.82]:45457 "HELO na3sys010aog107.obsmtp.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with SMTP id S932087Ab2JPTop (ORCPT ); Tue, 16 Oct 2012 15:44:45 -0400 Received: from mail-pa0-f46.google.com ([209.85.220.46]) (using TLSv1) by na3sys010aob107.postini.com ([74.125.244.12]) with SMTP ID DSNKUH25LVKfv6Q20S9ZkmsvgZ/fkMQ7jv46@postini.com; Tue, 16 Oct 2012 12:44:45 PDT Received: by mail-pa0-f46.google.com with SMTP id hz1so6225936pad.19 for ; Tue, 16 Oct 2012 12:44:44 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=purestorage.com; s=google; h=sender:from:to:cc:subject:date:message-id:x-mailer; bh=/K/n4n4SvFGpllIGW9PdfHVHTRvEoyADZ8QsCJPlc30=; b=L3hYK9ej6C4XM++HrFC2ghuF2gI9ltiuFUM0xohfc+ZFTTNrLIbT84k8f4kYOvS6K/ mXV8m5yTypHBf/1ZWIulMoi4KVjyiTxGKbJF3DY/VyLpofTX+/+6VRWPy7sv9E3DaPEc /u7+k4vC4yRs9NDZEwkKDAp1ioLxUk79kmrT8= X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20120113; h=sender:from:to:cc:subject:date:message-id:x-mailer :x-gm-message-state; bh=/K/n4n4SvFGpllIGW9PdfHVHTRvEoyADZ8QsCJPlc30=; b=jizES/oyzoOcwtuspHcusyQLdeCHHUGHX8MWc27ckBTXQRUOFSqvZJn7sBeISuKPpr f8NsKkXi9Eqnyz1gEre4PwfTLFEW9ge09He5joFCdCelnMrB2NxqSpckCxDHXlZMCg46 PNZgVlEB3KY+BwZjP41mc+IFhYV9gEw5K145SerXrWMyAO0dPeXbgl4yYVwVplRthcqm 6iKRfuovwuHwA1qrR72umyxDbamg3X27wTG53EDosGmh5ZIBu2afqWSrG1sxTLZJQm6Z xa6K2GQrAiFJrpNn5BtUJOsC6WmKmBpInDa2xg3F4EGSak8f/iQsX13kRFRqvGT0MsAt VXHA== Received: by 10.68.226.100 with SMTP id rr4mr49832533pbc.143.1350416684370; Tue, 16 Oct 2012 12:44:44 -0700 (PDT) Received: from roland-t410s.purestorage.com ([216.200.155.2]) by mx.google.com with ESMTPS id mt15sm1590789pbc.49.2012.10.16.12.44.43 (version=TLSv1/SSLv3 cipher=OTHER); Tue, 16 Oct 2012 12:44:43 -0700 (PDT) From: Roland Dreier To: Sean Hefty Cc: linux-rdma@vger.kernel.org Subject: [PATCH] rdma_xserver/client: Fix man page formatting Date: Tue, 16 Oct 2012 12:44:39 -0700 Message-Id: <1350416679-6001-1-git-send-email-roland@kernel.org> X-Mailer: git-send-email 1.7.10.4 X-Gm-Message-State: ALoCoQmgaZZwD/TNRU+hVDcodGnBLjTgzoGuNxz2gGFl+FrkmCVKZeIVYUKaD3HX/kXoyO/iwOLP Sender: linux-rdma-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-rdma@vger.kernel.org From: Roland Dreier Putting 'r' at the beginning of a line in the nroff source for man pages is confusing to nroff because lines that start with a single quote character ' or a dot character . are treated as control lines, which is not what's intended here. Some of the man page text ends up left out of the formatted output. Fix this by just wrapping the text slightly differently in the source (which doesn't matter since nroff reflows the text anyway). Also add a missing ".TP" so that the -p and -c options are not run together in the formatted output. Signed-off-by: Roland Dreier --- man/rdma_xclient.1 | 5 +++-- man/rdma_xserver.1 | 5 +++-- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/man/rdma_xclient.1 b/man/rdma_xclient.1 index 087e7fe..b4bb045 100644 --- a/man/rdma_xclient.1 +++ b/man/rdma_xclient.1 @@ -20,9 +20,10 @@ By default, the client will attempt to connect to the server using \-p server_port Specifies the port number that the server listens on. By default the server listens on port 7471. +.TP \-c communication type -Specifies the type of communication established with the server program. -'r' results in using a reliable-connected QP (the default). 'x' uses +Specifies the type of communication established with the server program. 'r' +results in using a reliable-connected QP (the default). 'x' uses extended reliable-connected XRC QPs. .SH "NOTES" Basic usage is to start rdma_xserver, then connect to the server using the diff --git a/man/rdma_xserver.1 b/man/rdma_xserver.1 index 75529e4..a26c962 100644 --- a/man/rdma_xserver.1 +++ b/man/rdma_xserver.1 @@ -14,9 +14,10 @@ data. \-p port Changes the port number that the server listens on. By default the server listens on port 7471. +.TP \-c communication type -Specifies the type of communication established with the client program. -'r' results in using a reliable-connected QP (the default). 'x' uses +Specifies the type of communication established with the client program. 'r' +results in using a reliable-connected QP (the default). 'x' uses extended reliable-connected XRC QPs. .SH "NOTES" Basic usage is to start rdma_xserver, then connect to the server using the