From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 075FE285C98; Wed, 12 Nov 2025 18:20:05 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1762971607; cv=none; b=V52ELbgxgqzlQXgoOATKAGFvyI6eXV1ZlmPMjwlT2LZ8vjmK1SxFg7UrsQmrp2Da9PmHx3vb1R+FZ0LCMNQXhx6NkTPcAvCQgZlxXkDRxNF4IgBpKZ6EXqZcrf6v2WDeebdmwR4cG2ZHee1DpXvr6XgcQ6tNXVkKVCGTal4tmac= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1762971607; c=relaxed/simple; bh=oWVtEyxa/USf6lDPU9HhuH0iewSOT4SAsW56JKxlpLU=; h=Date:From:To:Cc:Subject:Message-ID:References:MIME-Version: Content-Type:Content-Disposition:In-Reply-To; b=NIG4sMhaSPaqyT3F8IbZ81ZrqVg6/TJ7PMzHxB6r+vnq/r2JNRk/aWnKBMO2ycDDdUnF1KMdXnofAeQdXVBVrQ3P7NKyzYYYzUYKfv1+PKsnIQE2dPu57iyqceXkBU5Hx1KtT/yAbZyxcIic99cbk64B0/bD6fozJ228T4Wq1x4= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=GYwMJrmD; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b="GYwMJrmD" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 7ED7AC4CEF8; Wed, 12 Nov 2025 18:20:05 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1762971605; bh=oWVtEyxa/USf6lDPU9HhuH0iewSOT4SAsW56JKxlpLU=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=GYwMJrmDGELNaHahDcgS7sTeERxcyAE5K9xIaLmuhefK1+zcMIDw3+oGHedjmLP7U g3ZHnBFWxXM2CYg3JiGscyTZhvSvqVAGvuDeXqbKua3GUvAmb8rS4Rlh6k75SzOZ3q upoHFTqAleqzOp59Nw+XyzB4jDhGg6Hxks2w7tPhjMW+KAflWWsharq5WdDFCQlKJ2 G9y/XEsXzQY1JX2w+3XX1AL46OZsIQJ5KLOiosOJxsdVadmQHQ9Tc8G5L82loq8DhX B00dI7AKI8XLoQbD93RWXHHq49ClCTLiKZF1EQQarCS10dxxV2fPdC33DTH5+6JjgJ D45CJBHWsBc0Q== Date: Wed, 12 Nov 2025 10:20:04 -0800 From: "Darrick J. Wong" To: Christoph Hellwig Cc: zlang@redhat.com, fstests@vger.kernel.org, linux-ext4@vger.kernel.org Subject: Re: [PATCH 4/7] generic/019: skip test when there is no journal Message-ID: <20251112182004.GG196366@frogsfrogsfrogs> References: <176279908967.605950.2192923313361120314.stgit@frogsfrogsfrogs> <176279909079.605950.17890053232268440120.stgit@frogsfrogsfrogs> Precedence: bulk X-Mailing-List: linux-ext4@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: On Tue, Nov 11, 2025 at 01:28:48AM -0800, Christoph Hellwig wrote: > On Mon, Nov 10, 2025 at 10:27:04AM -0800, Darrick J. Wong wrote: > > From: Darrick J. Wong > > > > This test checks a filesystem's ability to recover from a noncritical > > disk failure (e.g. journal replay) without becoming inconsistent. This > > isn't true for any filesystem that doesn't have a journal, so we should > > skip the test on those platforms. > > This is triggered by your fuse ext4 I guess? Yep. --D > Either way, looks good: > > Reviewed-by: Christoph Hellwig > > > > ---end quoted text--- >