From patchwork Mon Feb 16 15:47:51 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Namjae Jeon X-Patchwork-Id: 440226 Return-Path: X-Original-To: patchwork-incoming@ozlabs.org Delivered-To: patchwork-incoming@ozlabs.org Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by ozlabs.org (Postfix) with ESMTP id 2DDE7140216 for ; Tue, 17 Feb 2015 02:56:06 +1100 (AEDT) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1756183AbbBPPtK (ORCPT ); Mon, 16 Feb 2015 10:49:10 -0500 Received: from mail-pd0-f182.google.com ([209.85.192.182]:42890 "EHLO mail-pd0-f182.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1756168AbbBPPtE (ORCPT ); Mon, 16 Feb 2015 10:49:04 -0500 Received: by pdbfp1 with SMTP id fp1so36635565pdb.9; Mon, 16 Feb 2015 07:49:03 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:cc:subject:date:message-id:in-reply-to:references; bh=XCztRdQGlXtPMWeh/XZLh4dB4PgcqH7jUe4CN9zVTRg=; b=hBWDzj92lj6PYtFiMBU1eE4onChiIMnqGs0cl8G22Q3DQNBnJ1CRZ5dGbAU5k+oeQU kisKjLHN/IM5ovuT/1VcaWaAtFUVJoaAmGK44Oulc3yPxZd+MuxFBwqr2wyMxju0OCuR LjUHzv6E0NVpztPeL1UsxTfMEqOqo+wvjdId0lqN5GwHtFc7ENtndNHfw03GdK8uSGpp yfpOf6r1eeQDLE+dPejAYX9Glhjl+EOt5JVfDj+J3Af3pgL0KZbo3TkwiHOsM3g2O3LU HJzuZXebhgzCDKiO85NIkRBCw5UPJxwIqKEyNha+4qpSEtI5vQ+ieyxFcrEs4y8AkzUI IIRg== X-Received: by 10.70.90.107 with SMTP id bv11mr40669177pdb.87.1424101743733; Mon, 16 Feb 2015 07:49:03 -0800 (PST) Received: from linkinjeon-Aspire-One-522.kornet ([125.129.25.112]) by mx.google.com with ESMTPSA id iy1sm10971973pbb.14.2015.02.16.07.48.59 (version=TLSv1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Mon, 16 Feb 2015 07:49:03 -0800 (PST) From: Namjae Jeon To: david@fromorbit.com, tytso@mit.edu Cc: linux-fsdevel@vger.kernel.org, linux-kernel@vger.kernel.org, linux-ext4@vger.kernel.org, xfs@oss.sgi.com, a.sangwan@samsung.com, bfoster@redhat.com, mtk.manpages@gmail.com, linux-man@vger.kernel.org, linux-api@vger.kernel.org, Namjae Jeon , Namjae Jeon Subject: [PATCH RESEND 4/12] xfsprog: xfsio: update xfs_io manpage for FALLOC_FL_INSERT_RANGE Date: Tue, 17 Feb 2015 00:47:51 +0900 Message-Id: <1424101680-3301-5-git-send-email-linkinjeon@gmail.com> X-Mailer: git-send-email 1.7.9.5 In-Reply-To: <1424101680-3301-1-git-send-email-linkinjeon@gmail.com> References: <1424101680-3301-1-git-send-email-linkinjeon@gmail.com> Sender: linux-ext4-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-ext4@vger.kernel.org From: Namjae Jeon Update xfs_io manpage for FALLOC_FL_INSERT_RANGE. Signed-off-by: Namjae Jeon Signed-off-by: Ashish Sangwan Reviewed-by: Dave Chinner --- man/man8/xfs_io.8 | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/man/man8/xfs_io.8 b/man/man8/xfs_io.8 index cf27b99..416206f 100644 --- a/man/man8/xfs_io.8 +++ b/man/man8/xfs_io.8 @@ -404,6 +404,11 @@ Call fallocate with FALLOC_FL_COLLAPSE_RANGE flag as described in the manual page to de-allocates blocks and eliminates the hole created in this process by shifting data blocks into the hole. .TP +.BI finsert " offset length" +Call fallocate with FALLOC_FL_INSERT_RANGE flag as described in the +.BR fallocate (2) +manual page to create the hole by shifting data blocks. +.TP .BI fpunch " offset length" Punches (de-allocates) blocks in the file by calling fallocate with the FALLOC_FL_PUNCH_HOLE flag as described in the