From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 936C8CCA47E for ; Tue, 28 Jun 2022 20:25:05 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S232915AbiF1UZD (ORCPT ); Tue, 28 Jun 2022 16:25:03 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:34506 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S232921AbiF1UYp (ORCPT ); Tue, 28 Jun 2022 16:24:45 -0400 Received: from dfw.source.kernel.org (dfw.source.kernel.org [IPv6:2604:1380:4641:c500::1]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id F2CF138BCC; Tue, 28 Jun 2022 13:22:03 -0700 (PDT) Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by dfw.source.kernel.org (Postfix) with ESMTPS id 925AD615DD; Tue, 28 Jun 2022 20:22:03 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id E7E1BC3411D; Tue, 28 Jun 2022 20:22:02 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1656447723; bh=BAil+zq4pmcoLZscz2szx7QFIXfoqD67HveiQlnNTss=; h=Subject:From:To:Cc:Date:In-Reply-To:References:From; b=sxVC2HgiGMsG0+DPp7TxW1bMNu0fhVCljj4CQ4/XlWTY2QAMIqqHAqYYC862I6S8g i2cwGP1vpTJUNs4NDBTETOllhxYmk3Np4F/g3bu+w53d6faUKOJ/S4QV+GfAf/MWYZ FngfesdWzopMzx4Cq/ePVCzQrc0Kzz5cEM3xCXnihLebMHwdCTWW2GkhvKgYyQ33on h+eq/XknLYrAjAOE/TI8zHTeQ59DSxkjRaTqJ8dVd1XD+9XS4SIsONpxGSgpknxZxz YPG0+RXAdZKtwpSUJG+6M96pnyim4LKvkstR2R1Di3E1lV5SVj6fU4sPxdrv3gpoYm Vzb0FleRSLEAw== Subject: [PATCH 8/9] xfs/166: fix golden output failures when multipage folios enabled From: "Darrick J. Wong" To: djwong@kernel.org, guaneryu@gmail.com, zlang@redhat.com Cc: linux-xfs@vger.kernel.org, fstests@vger.kernel.org, guan@eryu.me Date: Tue, 28 Jun 2022 13:22:02 -0700 Message-ID: <165644772249.1045534.3583119178643533811.stgit@magnolia> In-Reply-To: <165644767753.1045534.18231838177395571946.stgit@magnolia> References: <165644767753.1045534.18231838177395571946.stgit@magnolia> User-Agent: StGit/0.19 MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 7bit Precedence: bulk List-ID: X-Mailing-List: fstests@vger.kernel.org From: Darrick J. Wong Beginning with 5.18, some filesystems support creating large folios for the page cache. A system with 64k pages can create 256k folios, which means that with the old file size of 1M, the last half of the file is completely converted from unwritten to written by page_mkwrite. The test encodes a translated version of the xfs_bmap output in the golden output, which means that the test now fails on 64k pages. Fixing the 64k page case by increasing the file size to 2MB broke fsdax because fsdax uses 2MB PMDs, hence 12MB. Increase the size to prevent this from happening. This may require further revision if folios get larger or fsdax starts supporting PMDs that are larger than 2MB. Signed-off-by: Darrick J. Wong --- tests/xfs/166 | 19 +++++++++++++++---- 1 file changed, 15 insertions(+), 4 deletions(-) diff --git a/tests/xfs/166 b/tests/xfs/166 index 42379961..d45dc5e8 100755 --- a/tests/xfs/166 +++ b/tests/xfs/166 @@ -16,12 +16,12 @@ _begin_fstest rw metadata auto quick # the others are unwritten. _filter_blocks() { - $AWK_PROG ' + $AWK_PROG -v file_size=$FILE_SIZE ' /^ +[0-9]/ { if (!written_size) { written_size = $6 - unwritten1 = ((1048576/512) / 2) - written_size - unwritten2 = ((1048576/512) / 2) - 2 * written_size + unwritten1 = ((file_size/512) / 2) - written_size + unwritten2 = ((file_size/512) / 2) - 2 * written_size } # is the extent unwritten? @@ -58,7 +58,18 @@ _scratch_mount TEST_FILE=$SCRATCH_MNT/test_file TEST_PROG=$here/src/unwritten_mmap -FILE_SIZE=1048576 + +# Beginning with 5.18, some filesystems support creating large folios for the +# page cache. A system with 64k pages can create 256k folios, which means +# that with the old file size of 1M, the last half of the file is completely +# converted from unwritten to written by page_mkwrite. The test will fail on +# the golden output when this happens, so increase the size from the original +# 1MB file size to at least (6 * 256k == 1.5MB) prevent this from happening. +# +# However, increasing the file size to around 2MB causes regressions when fsdax +# is enabled because fsdax will try to use PMD entries for the mappings. Hence +# we need to set the file size to (6 * 2MB == 12MB) to cover all cases. +FILE_SIZE=$((12 * 1048576)) rm -f $TEST_FILE $TEST_PROG $FILE_SIZE $TEST_FILE