From patchwork Sat Feb 21 15:45:46 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Namjae Jeon X-Patchwork-Id: 5860071 Return-Path: X-Original-To: patchwork-linux-fsdevel@patchwork.kernel.org Delivered-To: patchwork-parsemail@patchwork2.web.kernel.org Received: from mail.kernel.org (mail.kernel.org [198.145.29.136]) by patchwork2.web.kernel.org (Postfix) with ESMTP id A4327BF440 for ; Sat, 21 Feb 2015 15:53:28 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id DEBFB2053B for ; Sat, 21 Feb 2015 15:53:27 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 0DEE82049C for ; Sat, 21 Feb 2015 15:53:27 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752121AbbBUPtQ (ORCPT ); Sat, 21 Feb 2015 10:49:16 -0500 Received: from mail-pd0-f180.google.com ([209.85.192.180]:41588 "EHLO mail-pd0-f180.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752072AbbBUPtN (ORCPT ); Sat, 21 Feb 2015 10:49:13 -0500 Received: by pdno5 with SMTP id o5so14643261pdn.8; Sat, 21 Feb 2015 07:49:12 -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=VVJUfiKt63uTyf/eAoBM/Vk+x7Q9HRz3uPA8vu1vWGI=; b=NmSGKjk/+xzp7crXNNlaEUywPDtual8DuEWJcqChBdbsr+ZuxTjvPZwq33AjcMbLiy 9EzDoRwivk2cPoXffxfULmIZ6VIZQcbeBDMmjZh8Zni6adbMTa3nxWDQ6mICYyxjAn/5 9vjlsdBrw47QvbS4Z/Wpgg8AzOZpUBippdnl43Q9FNUz5zqIr6lytjjY2hzS6pskg3Df pZpB1MtEAqYP/5N5rVFBwaXmhZNbs2yhi1YBDVe3eXp+MeHnMndXxabO+IVExyIcHpoi zV1KrlIqeXn5uragTmsoKbGW5J08sTAdNbmmkbRiLEGot7crGbM89E+BwDqPvX+hh6Ck dNEA== X-Received: by 10.66.62.201 with SMTP id a9mr5019234pas.101.1424533752295; Sat, 21 Feb 2015 07:49:12 -0800 (PST) Received: from linkinjeon-Aspire-One-522.kornet ([125.129.25.112]) by mx.google.com with ESMTPSA id fc6sm187055pab.6.2015.02.21.07.49.08 (version=TLSv1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Sat, 21 Feb 2015 07:49:11 -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 v10 4/12] xfsprog: xfsio: update xfs_io manpage for FALLOC_FL_INSERT_RANGE Date: Sun, 22 Feb 2015 00:45:46 +0900 Message-Id: <1424533554-28024-5-git-send-email-linkinjeon@gmail.com> X-Mailer: git-send-email 1.7.9.5 In-Reply-To: <1424533554-28024-1-git-send-email-linkinjeon@gmail.com> References: <1424533554-28024-1-git-send-email-linkinjeon@gmail.com> Sender: linux-fsdevel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-fsdevel@vger.kernel.org X-Spam-Status: No, score=-6.8 required=5.0 tests=BAYES_00, DKIM_ADSP_CUSTOM_MED, DKIM_SIGNED, FREEMAIL_FROM, RCVD_IN_DNSWL_HI, T_DKIM_INVALID, T_RP_MATCHES_RCVD, UNPARSEABLE_RELAY autolearn=ham version=3.3.1 X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on mail.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP 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