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 711C7C433EF for ; Fri, 7 Jan 2022 04:56:01 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1346057AbiAGE4A (ORCPT ); Thu, 6 Jan 2022 23:56:00 -0500 Received: from gandalf.ozlabs.org ([150.107.74.76]:37169 "EHLO gandalf.ozlabs.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S231868AbiAGEz6 (ORCPT ); Thu, 6 Jan 2022 23:55:58 -0500 Received: from authenticated.ozlabs.org (localhost [127.0.0.1]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange ECDHE (P-256) server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by mail.ozlabs.org (Postfix) with ESMTPSA id 4JVWBf5zFXz4xPt; Fri, 7 Jan 2022 15:55:54 +1100 (AEDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=ellerman.id.au; s=201909; t=1641531357; bh=+0gt3Ce/FGhwyld+iB75eE7kUGD74gyF9fLmCmmqJI0=; h=From:To:Cc:Subject:In-Reply-To:References:Date:From; b=dxzQHmNiOmvWH1t16AItMd6p2d3tqG+A+i+kTTwCUtjXndn/8t9HVsubSR2LYK9eq qLV+AKENtXbVxF82SjKPi5H6auA5H+E4xy6aiXfHuirtVyc7Qhxg+wabbGX3nLq2I+ EVwFipTHBcl1/0TSEOGQGu0eMTP1XgIOY5vXGnkyOyrZB/q+fnCh70MZQMo3GoAc8U IN5HuWy0bik/ia7uIcPDYvlI3PUdoNflPOt4Fs8Jm6ZUFT+FCtexoWndZbvp/N+ycV DPSDznKiugLXkGclPgPiKw9E5UlaFcBlFWMybBsKimfWKwiQ3hmOKf+nRWyw2oAdgE Y2f4UI+/F3KVw== From: Michael Ellerman To: Qu Wenruo , Neal Gompa Cc: Christophe Leroy , Chris Mason , Josef Bacik , David Sterba , Linux Kernel Mailing List , linuxppc-dev@lists.ozlabs.org, Btrfs BTRFS , linux-hexagon@vger.kernel.org, Hector Martin Subject: Re: [PATCH] fs: btrfs: Disable BTRFS on platforms having 256K pages In-Reply-To: References: <6c7a6762-6bec-842b-70b4-4a53297687d1@gmx.com> Date: Fri, 07 Jan 2022 15:55:51 +1100 Message-ID: <87bl0o2lgo.fsf@mpe.ellerman.id.au> MIME-Version: 1.0 Content-Type: text/plain Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Qu Wenruo writes: > On 2022/1/7 00:31, Neal Gompa wrote: >> On Wed, Jan 5, 2022 at 7:05 AM Qu Wenruo wrote: >>> >>> Hi Christophe, >>> >>> I'm recently enhancing the subpage support for btrfs, and my current >>> branch should solve the problem for btrfs to support larger page sizes. >>> >>> But unfortunately my current test environment can only provide page size >>> with 64K or 4K, no 16K or 128K/256K support. >>> >>> Mind to test my new branch on 128K page size systems? >>> (256K page size support is still lacking though, which will be addressed >>> in the future) >>> >>> https://github.com/adam900710/linux/tree/metadata_subpage_switch >>> >> >> The Linux Asahi folks have a 16K page environment (M1 Macs)... > > Su Yue kindly helped me testing 16K page size, and it's pretty OK there. > > So I'm not that concerned. > > It's 128K page size that I'm a little concerned, and I have not machine > supporting that large page size to do the test. Did Christophe say he had a 128K system to test on? In mainline powerpc only supports 4K/16K/64K/256K. AFAIK there's no arch with 128K page size support, but that's only based on some grepping, maybe it's hidden somewhere. cheers