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 AE111C433FE for ; Mon, 30 May 2022 15:22:04 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S239919AbiE3PWC (ORCPT ); Mon, 30 May 2022 11:22:02 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:59532 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S242961AbiE3PUy (ORCPT ); Mon, 30 May 2022 11:20:54 -0400 Received: from bhuna.collabora.co.uk (bhuna.collabora.co.uk [46.235.227.227]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 5E29211E496 for ; Mon, 30 May 2022 07:22:54 -0700 (PDT) Received: from [127.0.0.1] (localhost [127.0.0.1]) (Authenticated sender: krisman) with ESMTPSA id 187041F42F58 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=collabora.com; s=mail; t=1653920518; bh=TzgxYWpAfoBjfR6O8nAsv6Bx6kyqPUpBe2il7+4gsvw=; h=From:To:Cc:Subject:References:Date:In-Reply-To:From; b=iSqwgZbp8bEfMbFBiyYWslZ6xS3su0wtlFeKDdAIeVr4StoHnAoXV6EdWcGrQXemg GhRHdTt1tsqXy2VofdGNB4Gx6fhoIj9JZf7b761UJlcN2+ic//osgc1DO2PvcKXhnB +S61KBibJf7Dt+9S4htASqC7N76HU6SOza/s/2aHS1m9WH4W2ch5YF01+WSqCRa1Ql fC919anWxwimn8hLkqq/zAGowtCDVHPqK5ZIqmsUlt0UqAYiIM4tyHJLw2JKwf3iUd vn3Jq5pUnqjsExvre12v19pwpXrN0gauALsaijE4aSbKGMqyl/xxJjV1U8xNK0swb/ zsPKrlRDZbq8w== From: Gabriel Krisman Bertazi To: "Stephen E. Baker" Cc: linux-ext4@vger.kernel.org Subject: Re: simplify ext4_sb_read_encoding regression Organization: Collabora References: Date: Mon, 30 May 2022 10:21:54 -0400 In-Reply-To: (Stephen E. Baker's message of "Sat, 28 May 2022 18:55:45 -0400") Message-ID: <87sfor85j1.fsf@collabora.com> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/27.2 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain Precedence: bulk List-ID: X-Mailing-List: linux-ext4@vger.kernel.org "Stephen E. Baker" writes: > Hello, > > I have a Samsung Chromebook Plus (rk3399-gru-kevin) which boots linux > off an external ssd plugged into USB. The root filesystem is ext4 with > unicode support, case folding is enabled only on some directories in > my home directory. > > Since 5.17 the system has been unbootable. I ran a git bisect and it > pointed to aa8bf298a96acaaaa3af07d09cf7ffeb9798e48a ext4: simplify > ext4_sb_read_encoding Hi Stephen, This series moved the UTF-8 data tables to a kernel module; before it, the module had to be built-in. Since you have your rootfs as a case-insensitive filesystem, either the utf8data module needs to be available in the initramfs or unicode needs to be built-in. Are you building your own kernel? Can you confirm that utf8data.ko exists in your initramfs, and regenerate it if missing? Alternatively, make sure that you have CONFIG_UNICODE=y in your kernel configuration file. If that doesn't work, can you provide the kernel log? If you can't collect the console output, a photo of the screen displaying the error will suffice. Thank you! -- Gabriel Krisman Bertazi