From patchwork Fri Dec 9 05:34:02 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Qu Wenruo X-Patchwork-Id: 13069243 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 A25E8C4332F for ; Fri, 9 Dec 2022 05:35:23 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S229555AbiLIFfW (ORCPT ); Fri, 9 Dec 2022 00:35:22 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:53452 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229776AbiLIFe5 (ORCPT ); Fri, 9 Dec 2022 00:34:57 -0500 Received: from smtp-out1.suse.de (smtp-out1.suse.de [IPv6:2001:67c:2178:6::1c]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id A3A4445ED6; Thu, 8 Dec 2022 21:34:22 -0800 (PST) Received: from imap2.suse-dmz.suse.de (imap2.suse-dmz.suse.de [192.168.254.74]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (P-521) server-digest SHA512) (No client certificate requested) by smtp-out1.suse.de (Postfix) with ESMTPS id 69796337F0; Fri, 9 Dec 2022 05:34:20 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=suse.com; s=susede1; t=1670564060; h=from:from:reply-to:date:date:message-id:message-id:to:to:cc: mime-version:mime-version: content-transfer-encoding:content-transfer-encoding; bh=q0McCrr9lmfnJ+plWSMy8tUqzVRn4eUsxqDZS2QA1Ms=; b=twpxXjBv3HUUvg4jjZjo/IUzP5eb9jJx7NDadNRPYXF0eBTcVxi1GPYLQsJHWFl08UAwkt vUIjxCvD+SqN/PdSZW64/5fxwCtiJF612RzdbhXSZUFY1hUiTsFDaBPnbnMvN4KzJrRO5c L4Rx02/y1fWInEgaGXg/2R1vFCZT9c8= Received: from imap2.suse-dmz.suse.de (imap2.suse-dmz.suse.de [192.168.254.74]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (P-521) server-digest SHA512) (No client certificate requested) by imap2.suse-dmz.suse.de (Postfix) with ESMTPS id 8CF5B13253; Fri, 9 Dec 2022 05:34:19 +0000 (UTC) Received: from dovecot-director2.suse.de ([192.168.254.65]) by imap2.suse-dmz.suse.de with ESMTPSA id pIPbFdvIkmOXdAAAMHmgww (envelope-from ); Fri, 09 Dec 2022 05:34:19 +0000 From: Qu Wenruo To: linux-btrfs@vger.kernel.org, fstests@vger.kernel.org Subject: [PATCH] fstests: btrfs/219: remove it from auto group Date: Fri, 9 Dec 2022 13:34:02 +0800 Message-Id: <6c08b564ea499de6d34a1bd8bb0f435d73de2770.1670563995.git.wqu@suse.com> X-Mailer: git-send-email 2.38.1 MIME-Version: 1.0 Precedence: bulk List-ID: X-Mailing-List: fstests@vger.kernel.org The test case is to make sure we can mount a fs with older generation (but with the same fsid/dev uuid). Normally we will reject such case as btrfs is maintaining an internal devices list (for multi-device support), and if we find a device suddenly got an older generation, we will directly reject it. Although for single device btrfs, we may add an exception for it, the corresponding kernel patch is never merged. So for now, just remove the test case from auto group. Signed-off-by: Qu Wenruo Reviewed-by: Johannes Thumshirn --- tests/btrfs/219 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/btrfs/219 b/tests/btrfs/219 index 528175b8a4b9..d69e6ac918ae 100755 --- a/tests/btrfs/219 +++ b/tests/btrfs/219 @@ -15,7 +15,7 @@ # . ./common/preamble -_begin_fstest auto quick volume +_begin_fstest quick volume # Override the default cleanup function. _cleanup()