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 phobos.denx.de (phobos.denx.de [85.214.62.61]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.lore.kernel.org (Postfix) with ESMTPS id 56C97C04A94 for ; Mon, 14 Aug 2023 03:45:32 +0000 (UTC) Received: from h2850616.stratoserver.net (localhost [IPv6:::1]) by phobos.denx.de (Postfix) with ESMTP id 5A794833BF; Mon, 14 Aug 2023 05:45:30 +0200 (CEST) Authentication-Results: phobos.denx.de; dmarc=none (p=none dis=none) header.from=linux.alibaba.com Authentication-Results: phobos.denx.de; spf=pass smtp.mailfrom=u-boot-bounces@lists.denx.de Received: by phobos.denx.de (Postfix, from userid 109) id B8C208631F; Mon, 14 Aug 2023 05:45:28 +0200 (CEST) Received: from out30-97.freemail.mail.aliyun.com (out30-97.freemail.mail.aliyun.com [115.124.30.97]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)) (No client certificate requested) by phobos.denx.de (Postfix) with ESMTPS id EDD3780DF7 for ; Mon, 14 Aug 2023 05:45:25 +0200 (CEST) Authentication-Results: phobos.denx.de; dmarc=none (p=none dis=none) header.from=linux.alibaba.com Authentication-Results: phobos.denx.de; spf=pass smtp.mailfrom=hsiangkao@linux.alibaba.com X-Alimail-AntiSpam: AC=PASS; BC=-1|-1; BR=01201311R161e4; CH=green; DM=||false|; DS=||; FP=0|-1|-1|-1|0|-1|-1|-1; HT=ay29a033018045176; MF=hsiangkao@linux.alibaba.com; NM=1; PH=DS; RN=3; SR=0; TI=SMTPD_---0VpepC9t_1691984718; Received: from 30.97.49.36(mailfrom:hsiangkao@linux.alibaba.com fp:SMTPD_---0VpepC9t_1691984718) by smtp.aliyun-inc.com; Mon, 14 Aug 2023 11:45:21 +0800 Message-ID: Date: Mon, 14 Aug 2023 11:45:18 +0800 MIME-Version: 1.0 User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:102.0) Gecko/20100101 Thunderbird/102.13.0 Subject: Re: [PATCH 12/24] fs/erofs: Quieten test for filesystem presence To: Simon Glass , U-Boot Mailing List Cc: linux-erofs@lists.ozlabs.org References: <20230813142708.361456-1-sjg@chromium.org> <20230813142708.361456-13-sjg@chromium.org> From: Gao Xiang In-Reply-To: <20230813142708.361456-13-sjg@chromium.org> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit X-BeenThere: u-boot@lists.denx.de X-Mailman-Version: 2.1.39 Precedence: list List-Id: U-Boot discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: u-boot-bounces@lists.denx.de Sender: "U-Boot" X-Virus-Scanned: clamav-milter 0.103.8 at phobos.denx.de X-Virus-Status: Clean On 2023/8/13 22:26, Simon Glass wrote: > At present listing a partition produces lots of errors about this > filesystem: > > => part list mmc 4 > cannot find valid erofs superblock > cannot find valid erofs superblock > cannot read erofs superblock: -5 > [9 more similar lines] > > Use debugging rather than errors when unable to find a signature, as is > done with other filesystems. > > Signed-off-by: Simon Glass Reviewed-by: Gao Xiang Thanks, Gao Xiang