From patchwork Sat Nov 14 15:43:52 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Eric Sandeen X-Patchwork-Id: 11905667 Return-Path: Received: from mail.kernel.org (pdx-korg-mail-1.web.codeaurora.org [172.30.200.123]) by pdx-korg-patchwork-2.web.codeaurora.org (Postfix) with ESMTP id B5CD0697 for ; Sat, 14 Nov 2020 15:44:17 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 903912225E for ; Sat, 14 Nov 2020 15:44:17 +0000 (UTC) Authentication-Results: mail.kernel.org; dkim=pass (1024-bit key) header.d=redhat.com header.i=@redhat.com header.b="RaLivDKQ" Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1727136AbgKNPn5 (ORCPT ); Sat, 14 Nov 2020 10:43:57 -0500 Received: from us-smtp-delivery-124.mimecast.com ([63.128.21.124]:27174 "EHLO us-smtp-delivery-124.mimecast.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1727029AbgKNPn4 (ORCPT ); Sat, 14 Nov 2020 10:43:56 -0500 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1605368635; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding; bh=/mVH0MGR2utuynVM1Kx6URz0yzFy78BIebmXH1jXpeU=; b=RaLivDKQpFtytVaOAHxg/kqp+ThXyD/+xXZQwkB6OGLxF5EEiIqdpsUlBK8ewHuRCfQxOn oYuCbo3ygmCKnDtkrA6AdRDD6C7Lv04yKmJyeEjomQL2ZM92pDTN2+M3PYXccgOj4FI3gt aYjSZ/sjOwPOWLoNkpFwP1633O3Mqb8= Received: from mimecast-mx01.redhat.com (mimecast-mx01.redhat.com [209.132.183.4]) (Using TLS) by relay.mimecast.com with ESMTP id us-mta-492-bt83p8nYPQaA03EjTOz1Og-1; Sat, 14 Nov 2020 10:43:53 -0500 X-MC-Unique: bt83p8nYPQaA03EjTOz1Og-1 Received: from smtp.corp.redhat.com (int-mx05.intmail.prod.int.phx2.redhat.com [10.5.11.15]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx01.redhat.com (Postfix) with ESMTPS id D0E291868406 for ; Sat, 14 Nov 2020 15:43:52 +0000 (UTC) Received: from liberator.sandeen.net (ovpn04.gateway.prod.ext.phx2.redhat.com [10.5.9.4]) by smtp.corp.redhat.com (Postfix) with ESMTP id AB3F346E64 for ; Sat, 14 Nov 2020 15:43:52 +0000 (UTC) To: xfs From: Eric Sandeen Subject: [PATCH] xfs_io: fix up typos in manpage Message-ID: Date: Sat, 14 Nov 2020 09:43:52 -0600 User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:78.0) Gecko/20100101 Thunderbird/78.4.3 MIME-Version: 1.0 Content-Language: en-US X-Scanned-By: MIMEDefang 2.79 on 10.5.11.15 Precedence: bulk List-ID: X-Mailing-List: linux-xfs@vger.kernel.org We go in reverse direction, not reserve direction. We go in forward direction, not forwards direction. Signed-off-by: Eric Sandeen Reviewed-by: Darrick J. Wong diff --git a/man/man8/xfs_io.8 b/man/man8/xfs_io.8 index caf3f15..1103dc4 100644 --- a/man/man8/xfs_io.8 +++ b/man/man8/xfs_io.8 @@ -219,10 +219,10 @@ dump the contents of the buffer after reading, by default only the count of bytes actually read is dumped. .TP .B \-F -read the buffers in a forwards sequential direction. +read the buffers in a forward sequential direction. .TP .B \-B -read the buffers in a reserve sequential direction. +read the buffers in a reverse sequential direction. .TP .B \-R read the buffers in the give range in a random order. @@ -305,10 +305,10 @@ is used when the data to write is not coming from a file. The default buffer fill pattern value is 0xcdcdcdcd. .TP .B \-F -write the buffers in a forwards sequential direction. +write the buffers in a forward sequential direction. .TP .B \-B -write the buffers in a reserve sequential direction. +write the buffers in a reverse sequential direction. .TP .B \-R write the buffers in the give range in a random order.