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=-16.8 required=3.0 tests=BAYES_00, HEADER_FROM_DIFFERENT_DOMAINS,INCLUDES_PULL_REQUEST,MAILING_LIST_MULTI, MENTIONS_GIT_HOSTING,SPF_HELO_NONE,SPF_PASS,USER_AGENT_GIT autolearn=unavailable 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 1B52BC433E2 for ; Sat, 12 Sep 2020 17:02:51 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id D94262087C for ; Sat, 12 Sep 2020 17:02:50 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1725881AbgILRCq (ORCPT ); Sat, 12 Sep 2020 13:02:46 -0400 Received: from mx2.suse.de ([195.135.220.15]:35168 "EHLO mx2.suse.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1725850AbgILRCl (ORCPT ); Sat, 12 Sep 2020 13:02:41 -0400 X-Virus-Scanned: by amavisd-new at test-mx.suse.de Received: from relay2.suse.de (unknown [195.135.221.27]) by mx2.suse.de (Postfix) with ESMTP id C1B24B02A; Sat, 12 Sep 2020 17:02:54 +0000 (UTC) Received: by ds.suse.cz (Postfix, from userid 10065) id 6619DDA7C5; Sat, 12 Sep 2020 19:01:19 +0200 (CEST) From: David Sterba To: torvalds@linux-foundation.org Cc: David Sterba , linux-btrfs@vger.kernel.org, linux-kernel@vger.kernel.org Subject: [GIT PULL] Btrfs fixes for 5.9-rc5 Date: Sat, 12 Sep 2020 19:01:18 +0200 Message-Id: X-Mailer: git-send-email 2.25.0 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Hi, a few more fixes: - regression fix, crash after failed snapshot creation - one more lockep fix, use nofs allocation when allocating missing device - fix reloc tree leak on degraded mount - make some extent buffer alignment checks less strict to mount filesystems created by btrfs-convert Please pull, thanks. ---------------------------------------------------------------- The following changes since commit f96d6960abbc52e26ad124e69e6815283d3e1674: btrfs: tree-checker: fix the error message for transid error (2020-08-27 14:16:05 +0200) are available in the Git repository at: git://git.kernel.org/pub/scm/linux/kernel/git/kdave/linux.git for-5.9-rc4-tag for you to fetch changes up to 2d892ccdc163a3d2e08c5ed1cea8b61bf7e4f531: btrfs: fix NULL pointer dereference after failure to create snapshot (2020-09-07 21:18:35 +0200) ---------------------------------------------------------------- Filipe Manana (1): btrfs: fix NULL pointer dereference after failure to create snapshot Josef Bacik (2): btrfs: fix lockdep splat in add_missing_dev btrfs: free data reloc tree on failed mount Qu Wenruo (1): btrfs: require only sector size alignment for parent eb bytenr fs/btrfs/disk-io.c | 2 ++ fs/btrfs/extent-tree.c | 19 +++++++++---------- fs/btrfs/print-tree.c | 12 +++++++----- fs/btrfs/transaction.c | 1 + fs/btrfs/volumes.c | 10 ++++++++++ 5 files changed, 29 insertions(+), 15 deletions(-)