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 X-Spam-Level: X-Spam-Status: No, score=-4.1 required=3.0 tests=BAYES_00,DKIMWL_WL_HIGH, DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,MAILING_LIST_MULTI,SPF_HELO_NONE, SPF_PASS autolearn=no autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id D2477C5517A for ; Tue, 10 Nov 2020 04:41:38 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 80E072080A for ; Tue, 10 Nov 2020 04:41:38 +0000 (UTC) Authentication-Results: mail.kernel.org; dkim=pass (1024-bit key) header.d=kernel.org header.i=@kernel.org header.b="jXgI0r8Y" Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1730921AbgKJEli (ORCPT ); Mon, 9 Nov 2020 23:41:38 -0500 Received: from mail.kernel.org ([198.145.29.99]:50118 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1729661AbgKJElh (ORCPT ); Mon, 9 Nov 2020 23:41:37 -0500 Received: from sol.localdomain (172-10-235-113.lightspeed.sntcca.sbcglobal.net [172.10.235.113]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPSA id 610B2206B6; Tue, 10 Nov 2020 04:41:37 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1604983297; bh=VDADBIQU8MLhJESJ/oASxtoZyu+l/Vyn9yb8+9Nfe/E=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=jXgI0r8YEFow/BZwWeo20kxuxQzgvDls907DcysrYEWwvdWx5DEUa5Bzc04uWGHFa n0+uGawwvXwjAs26b5/p8bM391KWMdghErlq0SR/notsLlEC0u4oXoJSmb09qKAxhn ovtYJV6EAab48YelxsWNx7Zqboug/UaH3Pee47AI= Date: Mon, 9 Nov 2020 20:41:36 -0800 From: Eric Biggers To: "Theodore Y. Ts'o" Cc: fstests@vger.kernel.org, linux-fscrypt@vger.kernel.org Subject: Re: [PATCH] generic/395: remove workarounds for wrong error codes Message-ID: <20201110044136.GD853@sol.localdomain> References: <20201031054018.695314-1-ebiggers@kernel.org> <20201031173439.GA1750809@mit.edu> <20201031181048.GA936@sol.localdomain> <20201109234051.GC853@sol.localdomain> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20201109234051.GC853@sol.localdomain> Precedence: bulk List-ID: X-Mailing-List: fstests@vger.kernel.org On Mon, Nov 09, 2020 at 03:40:51PM -0800, Eric Biggers wrote: > > I ended up backporting some of the missing patches to some of the LTS kernels. > > Now the status of the "encrypt" group tests is: > > 5.10-rc3: all pass, but generic/602 is flaky on ext4, which will be fixed by > https://lkml.kernel.org/linux-fscrypt/20201109231151.GB853@sol.localdomain > > 5.4: all pass. > Correction: there are two more test failures on upstream and on 5.4. generic/580 fails on f2fs due to the lazytime bug (https://lkml.kernel.org/r/20200306004555.GB225345@gmail.com), and generic/595 fails on ubifs due to a longstanding race condition where a file can be created using a negative "no-key" dentry. I'm planning to fix these. - Eric