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 1FE00C433EF for ; Sat, 15 Jan 2022 04:18:36 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S232395AbiAOESc (ORCPT ); Fri, 14 Jan 2022 23:18:32 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:39976 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229964AbiAOESb (ORCPT ); Fri, 14 Jan 2022 23:18:31 -0500 Received: from ams.source.kernel.org (ams.source.kernel.org [IPv6:2604:1380:4601:e00::1]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 4FBC3C061574; Fri, 14 Jan 2022 20:18:31 -0800 (PST) Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ams.source.kernel.org (Postfix) with ESMTPS id 0A129B823FF; Sat, 15 Jan 2022 04:18:30 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id C0196C36AE7; Sat, 15 Jan 2022 04:18:28 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1642220308; bh=k0atcHtgaWeGiHnP2Zrbr4aBUxlc9yeItlXDfZjNuvk=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=Z36AcdpK5HGZK1tncLOCsDxMR9DnE6qWKyBdoq+q2pIyc3tB/rt0bW9SddTRAezQ5 1H7xpyJFZaL4Yykt1XaL15sycCcZTDMqUQOStKwNjhcsKaZqhZePf7HvlUKx7/07UU C0Ri5XjzvpAEOC4EBQFdqUOqcCQEToE2gwYWaCfpySyFfp0a9rwWJPXyvKm7HqS4nz KrVtjfR/VrcauPS3tQntHHayWODcTl3I5hQvxH3iSkOb+FscmWj4fDl6glyFBbklCu 5X3Heggv5QpYoNCOXGwbDxI06vZk7zk7ebGuTYmRQSJ228faPQp8IbtDF8Bgvx0dOX HiXYUFgJ3mwbQ== Date: Fri, 14 Jan 2022 20:18:28 -0800 From: "Darrick J. Wong" To: Linus Torvalds Cc: linux-fsdevel@vger.kernel.org, linux-xfs@vger.kernel.org, david@fromorbit.com, linux-kernel@vger.kernel.org, sandeen@sandeen.net, hch@lst.de Subject: Re: [GIT PULL] xfs: new code for 5.17 Message-ID: <20220115041828.GE90423@magnolia> References: <20220110220615.GA656707@magnolia> <20220115041712.GD90423@magnolia> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20220115041712.GD90423@magnolia> Precedence: bulk List-ID: X-Mailing-List: linux-fsdevel@vger.kernel.org On Fri, Jan 14, 2022 at 08:17:12PM -0800, Darrick J. Wong wrote: > Hi Linus, Oops, sent this as a reply by accident. I'll resend this as a new thread; sorry for the noise. --D > > Please pull these bug fixes for Linux 5.17. These are the last few > obvious fixes that I found while stress testing online fsck for XFS > prior to initiating a design review of the whole giant machinery. > > The branch merges cleanly against upstream as of a few minutes ago. > Please let me know if anything else strange happens during the merge > process. There will definitely be a third pull request coming with a > removal of the recently troublesome ALLOCSP/FREESP ioctl family and the > long dead SGI XFS HSM ioctls. > > --D > > The following changes since commit 7e937bb3cbe1f6b9840a43f879aa6e3f1a5e6537: > > xfs: warn about inodes with project id of -1 (2022-01-06 10:43:30 -0800) > > are available in the Git repository at: > > git://git.kernel.org/pub/scm/fs/xfs/xfs-linux.git tags/xfs-5.17-merge-3 > > for you to fetch changes up to 4a9bca86806fa6fc4fbccf050c1bd36a4778948a: > > xfs: fix online fsck handling of v5 feature bits on secondary supers (2022-01-12 09:45:21 -0800) > > ---------------------------------------------------------------- > New code for 5.17: > > - Fix a minor locking inconsistency in readdir > - Fix incorrect fs feature bit validation for secondary superblocks > > ---------------------------------------------------------------- > Darrick J. Wong (2): > xfs: take the ILOCK when readdir inspects directory mapping data > xfs: fix online fsck handling of v5 feature bits on secondary supers > > fs/xfs/scrub/agheader.c | 53 ++++++++++++++++++++-------------------- > fs/xfs/scrub/agheader_repair.c | 12 +++++++++ > fs/xfs/xfs_dir2_readdir.c | 55 +++++++++++++++++++++++++++--------------- > 3 files changed, 73 insertions(+), 47 deletions(-)