From patchwork Thu Feb 20 15:02:43 2025 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Kent Overstreet X-Patchwork-Id: 13984114 Received: from out-181.mta0.migadu.com (out-181.mta0.migadu.com [91.218.175.181]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 570DE6FB9 for ; Thu, 20 Feb 2025 15:02:48 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=91.218.175.181 ARC-Seal: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1740063772; cv=none; b=EBp9oJKDmZplVLjzCSApCuFCZFbW3jmw2CK/vxIcWCeEolqq3H/MpHBXr4zdyQNWHoA3WtEmRfPs9w2EK7IF5NDRicsmR3eH7iRxA9PDFObG8N1pxLUuvev5hmaN+yHtff9VKX7TEDcIeb0KfpWjApVYoT/BPr/im1mpzdPLpdQ= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1740063772; c=relaxed/simple; bh=wwBHTs+sOXIL4eNZZxmDAA65fFj45C/TjQNtTRxt/Hk=; h=Date:From:To:Cc:Subject:Message-ID:MIME-Version:Content-Type: Content-Disposition; b=oMFLXIlDGBI6XL1HpbAq7KpXtDs4Hs6lZdZTP+MBwGOOVRljPF26VhVM1dH4d536fPbsCENLrqVrNAB7pWOoxxRAVi/JQnHVUGVyH5hXbUdGBQotp07UeEmObuOuuCLQIRf33fxsALW9LagZs4mXqF5+a5hIbahh97xn+paUmdA= ARC-Authentication-Results: i=1; smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=linux.dev; spf=pass smtp.mailfrom=linux.dev; dkim=pass (1024-bit key) header.d=linux.dev header.i=@linux.dev header.b=vl+IkqFz; arc=none smtp.client-ip=91.218.175.181 Authentication-Results: smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=linux.dev Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=linux.dev Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linux.dev header.i=@linux.dev header.b="vl+IkqFz" Date: Thu, 20 Feb 2025 10:02:43 -0500 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linux.dev; s=key1; t=1740063767; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type; bh=gjisulrcCfnqTrlKqKcHH5By1FD7fBePRehepSr16PA=; b=vl+IkqFzSqBd4kyg4xSX0cegw9Uh8rQCrbuopdSseUqYMl/xI/kYcX9STn2cu2ybjtkKCT 3hgHDSrLllbrQNg7/BbEhqoctSHMV6vrG2ke1FOH8JCiBafBtBVbL0qAIO3Ay8ayZL7wKf Rkn051ik5/DKk715Z5u/cDo530TCILU= X-Report-Abuse: Please report any abuse attempt to abuse@migadu.com and include these headers. From: Kent Overstreet To: Linus Torvalds Cc: linux-bcachefs@vger.kernel.org, linux-fsdevel@vger.kernel.org, linux-kernel@vger.kernel.org Subject: [GIT PULL] bcachefs fixes for 6.14-rc4 Message-ID: Precedence: bulk X-Mailing-List: linux-fsdevel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Disposition: inline X-Migadu-Flow: FLOW_OUT Hi Linus, another small one. The following changes since commit 406e445b3c6be65ab0ee961145e74bfd7ef6c9e1: bcachefs: Reuse transaction (2025-02-12 18:44:50 -0500) are available in the Git repository at: git://evilpiepirate.org/bcachefs.git tags/bcachefs-2025-02-20 for you to fetch changes up to b04974f759ac7574d8556deb7c602a8d01a0dcc6: bcachefs: Fix srcu lock warning in btree_update_nodes_written() (2025-02-19 18:52:42 -0500) ---------------------------------------------------------------- bcachefs fixes for 6.14-rc4 Small stuff: - The fsck code for Hongbo's directory i_size patch was wrong, caught by transaction restart injection: we now have the CI running another test variant with restart injection enabled - Another fixup for reflink pointers to missing indirect extents: previous fix was for fsck code, this fixes the normal runtime paths - Another small srcu lock hold time fix, reported by jpsollie ---------------------------------------------------------------- Kent Overstreet (3): bcachefs: Fix fsck directory i_size checking bcachefs: Fix bch2_indirect_extent_missing_error() bcachefs: Fix srcu lock warning in btree_update_nodes_written() fs/bcachefs/btree_update_interior.c | 2 + fs/bcachefs/fsck.c | 78 +++++++++++++++---------------------- fs/bcachefs/reflink.c | 18 ++++----- fs/bcachefs/sb-downgrade.c | 2 +- 4 files changed, 42 insertions(+), 58 deletions(-)