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 EA0E6C433F5 for ; Tue, 8 Mar 2022 17:43:02 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1348303AbiCHRn5 (ORCPT ); Tue, 8 Mar 2022 12:43:57 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:59736 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1345430AbiCHRn5 (ORCPT ); Tue, 8 Mar 2022 12:43:57 -0500 Received: from smtp-out1.suse.de (smtp-out1.suse.de [195.135.220.28]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 8FE8031518 for ; Tue, 8 Mar 2022 09:43:00 -0800 (PST) Received: from relay2.suse.de (relay2.suse.de [149.44.160.134]) by smtp-out1.suse.de (Postfix) with ESMTP id 4C6C6210F3; Tue, 8 Mar 2022 17:42:59 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=suse.cz; s=susede2_rsa; t=1646761379; h=from:from:reply-to:reply-to:date:date:message-id:message-id:to:to: cc:cc:mime-version:mime-version:content-type:content-type: in-reply-to:in-reply-to:references:references; bh=jaa1xb8oFnF9ef8N4uIr1AWGNYPO4ZMoTllLPHgJ/MM=; b=AarsRMoj6lpxlH7aBQiK6mocaT8Upfs6hxC1cy3FBTHwTM+q0lh2PxYQ+KY8oLTo7A0bd0 1I+/h/ItIUpcKulsfE0HtmdCGLnchiOVvHjxRIFLchmr2afdMPa4HVAxu4VTrapm4T43Lu bvmZh8nDqvXhUqzmRkWAkgOnGEbZWKI= DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=suse.cz; s=susede2_ed25519; t=1646761379; h=from:from:reply-to:reply-to:date:date:message-id:message-id:to:to: cc:cc:mime-version:mime-version:content-type:content-type: in-reply-to:in-reply-to:references:references; bh=jaa1xb8oFnF9ef8N4uIr1AWGNYPO4ZMoTllLPHgJ/MM=; b=yFEKSH3nN/s0dwb55zXdlpRBkU+4U1ST38kouCtiVzUIIUpQqE66eN0837M1Lzsg/14JEN 0cXHtiTLoGPaDQDQ== Received: from ds.suse.cz (ds.suse.cz [10.100.12.205]) by relay2.suse.de (Postfix) with ESMTP id 4617EA3B89; Tue, 8 Mar 2022 17:42:59 +0000 (UTC) Received: by ds.suse.cz (Postfix, from userid 10065) id 30A87DA7DE; Tue, 8 Mar 2022 18:39:04 +0100 (CET) Date: Tue, 8 Mar 2022 18:39:04 +0100 From: David Sterba To: Josef Bacik Cc: linux-btrfs@vger.kernel.org, kernel-team@fb.com Subject: Re: [PATCH 0/7] btrfs-progs: various regression fixes Message-ID: <20220308173903.GR12643@twin.jikos.cz> Reply-To: dsterba@suse.cz Mail-Followup-To: dsterba@suse.cz, Josef Bacik , linux-btrfs@vger.kernel.org, kernel-team@fb.com References: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.23.1-rc1 (2014-03-12) Precedence: bulk List-ID: X-Mailing-List: linux-btrfs@vger.kernel.org On Tue, Feb 22, 2022 at 05:22:35PM -0500, Josef Bacik wrote: > Hello, > > In trying to test my new extent tree v2 patches I noticed I had regressed a few > of these tests with my previous prep patches. I'm not entirely sure how I > missed this before as I generally run the tests, but there are some clear things > that need fixing. I've based these patches on the devel branch, with them in > place everything passes as it should. Thanks, > > Josef > > Josef Bacik (7): > btrfs-progs: check: fix check_global_roots_uptodate > btrfs-progs: fuzz-tests: use --force for --init-csum-tree > btrfs-progs: repair: bail if we find an unaligned extent > btrfs-progs: properly populate missing trees > btrfs-progs: don't check skip_csum_check if there's no fs_info > btrfs-progs: do not try to load the free space tree if it's not > enabled > btrfs-progs: inspect-tree-stats: initialize the key properly Added to devel, thanks.