From patchwork Thu Mar 25 08:14:16 2021 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Lukas Herbolt X-Patchwork-Id: 12163433 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-16.8 required=3.0 tests=BAYES_00, HEADER_FROM_DIFFERENT_DOMAINS,INCLUDES_CR_TRAILER,INCLUDES_PATCH, MAILING_LIST_MULTI,SPF_HELO_NONE,SPF_PASS,USER_AGENT_GIT autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id EF1FFC433E0 for ; Thu, 25 Mar 2021 08:15:40 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id A726661A16 for ; Thu, 25 Mar 2021 08:15:40 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S229898AbhCYIPJ (ORCPT ); Thu, 25 Mar 2021 04:15:09 -0400 Received: from relay.herbolt.com ([37.46.208.54]:44836 "EHLO relay.herbolt.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229590AbhCYIPC (ORCPT ); Thu, 25 Mar 2021 04:15:02 -0400 Received: from ip-78-102-244-147.net.upcbroadband.cz (ip-78-102-244-147.net.upcbroadband.cz [78.102.244.147]) by relay.herbolt.com (Postfix) with ESMTPSA id 931041034149; Thu, 25 Mar 2021 09:14:59 +0100 (CET) Received: from localhost.localdomain (ip-89-176-186-13.net.upcbroadband.cz [89.176.186.13]) by mail.herbolt.com (Postfix) with ESMTPSA id 2A7C6D34A0A; Thu, 25 Mar 2021 09:14:59 +0100 (CET) From: lukas@herbolt.com To: djwong@kernel.org Cc: linux-xfs@vger.kernel.org, Lukas Herbolt Subject: [PATCH] xfsdocs: Small fix to correct first free inode to be 5847 not 5856. Date: Thu, 25 Mar 2021 09:14:16 +0100 Message-Id: <20210325081416.3190060-1-lukas@herbolt.com> X-Mailer: git-send-email 2.26.2 In-Reply-To: <20210324184835.GU22100@magnolia> References: <20210324184835.GU22100@magnolia> MIME-Version: 1.0 Precedence: bulk List-ID: X-Mailing-List: linux-xfs@vger.kernel.org From: Lukas Herbolt Thanks for confirmation, I was not sure about it. Signed-off-by: Lukas Herbolt Reviewed-by: Darrick J. Wong --- design/XFS_Filesystem_Structure/allocation_groups.asciidoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/design/XFS_Filesystem_Structure/allocation_groups.asciidoc b/design/XFS_Filesystem_Structure/allocation_groups.asciidoc index 992615d..cdc8545 100644 --- a/design/XFS_Filesystem_Structure/allocation_groups.asciidoc +++ b/design/XFS_Filesystem_Structure/allocation_groups.asciidoc @@ -1099,7 +1099,7 @@ recs[1-85] = [startino,freecount,free] Most of the inode chunks on this filesystem are totally full, since the +free+ value is zero. This means that we ought to expect inode 160 to be linked somewhere in the directory structure. However, notice that 0xff80000000000000 -in record 85 -- this means that we would expect inode 5856 to be free. Moving +in record 85 -- this means that we would expect inode 5847 to be free. Moving on to the free inode B+tree, we see that this is indeed the case: ----