From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from list by lists.gnu.org with archive (Exim 4.90_1) id 1mcTUU-0006QL-BY for mharc-grub-devel@gnu.org; Mon, 18 Oct 2021 10:19:50 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:38750) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1mcQFF-0006w1-3s for grub-devel@gnu.org; Mon, 18 Oct 2021 06:51:53 -0400 Received: from smtp-out1.suse.de ([195.135.220.28]:53940) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_128_GCM_SHA256:128) (Exim 4.90_1) (envelope-from ) id 1mcQFA-0005Mb-5H for grub-devel@gnu.org; Mon, 18 Oct 2021 06:51:52 -0400 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 70F6F2195F; Mon, 18 Oct 2021 10:51:45 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=suse.de; s=susede2_rsa; t=1634554305; 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: content-transfer-encoding:content-transfer-encoding; bh=kY1zjqwV7WyEAIjuvLKlVj2HUh+o6ktXvHkWFhEKrW4=; b=1Q1uvvCyeZqElU1Yxrj61RYobtDJY3L/DK8579GpWCr4ukuyoI1dhhHycNGDmsJvh65y/Z DzEnWTK1gFNP8P/UUyCQr3X43SZYsPgnIcFdkImnVj2CEo1m+jC5BsKSVSnI1pRfvtmFJD eUiWGUK1PUjCA22TUPD4cqXlvkeZlO0= DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=suse.de; s=susede2_ed25519; t=1634554305; 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: content-transfer-encoding:content-transfer-encoding; bh=kY1zjqwV7WyEAIjuvLKlVj2HUh+o6ktXvHkWFhEKrW4=; b=aKBb48wy4KJqXu/25m+CVjpb+TZD6vCugCxyL6n/O/Yl3XSdyGyxp3xjwcsCGRsEAjkIvk Y8gr6qf77rcvdhBg== 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 4970713ED6; Mon, 18 Oct 2021 10:51:45 +0000 (UTC) Received: from dovecot-director2.suse.de ([192.168.254.65]) by imap2.suse-dmz.suse.de with ESMTPSA id KZJdEMFRbWGiBQAAMHmgww (envelope-from ); Mon, 18 Oct 2021 10:51:45 +0000 Date: Mon, 18 Oct 2021 12:51:42 +0200 From: David Disseldorp To: wqu@suse.com Cc: grub-devel@gnu.org Subject: [PATCH] fs/btrfs: Make extent item iteration to handle gaps Message-ID: <20211018125142.2f741f6f@suse.de> Reply-To: 20211016014049.201556-1-wqu@suse.com MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Received-SPF: pass client-ip=195.135.220.28; envelope-from=ddiss@suse.de; helo=smtp-out1.suse.de X-Spam_score_int: -43 X-Spam_score: -4.4 X-Spam_bar: ---- X-Spam_report: (-4.4 / 5.0 requ) BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_DNSWL_MED=-2.3, SPF_HELO_NONE=0.001, SPF_PASS=-0.001 autolearn=ham autolearn_force=no X-Spam_action: no action X-Mailman-Approved-At: Mon, 18 Oct 2021 10:19:48 -0400 X-BeenThere: grub-devel@gnu.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: The development of GNU GRUB List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 18 Oct 2021 10:51:53 -0000 Tested-by: David Disseldorp This fixes the failures seen with the Dracut reflinked initramfs patchset at https://github.com/dracutdevs/dracut/pull/1531 . Thanks, David