From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from verein.lst.de (verein.lst.de [213.95.11.211]) (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 5B6558248B; Mon, 26 Jan 2026 04:27:38 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=213.95.11.211 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1769401659; cv=none; b=OMrVwpDpFmtAD+xZSamugpWkC0bcPwKByTQii4uYSGilVBbA/dV7CLOaqrEJekXcCp3VK2OjBEFgAOPBQgGpoPgQ2d2ot5+y9+1P5HATSoblqjtXS3far5bAmk70o2F113MinxIbM7gFISYLadKLHCvRKa9GlwKsqa+wifLtYmw= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1769401659; c=relaxed/simple; bh=AKjb1ReuQh11kWYO1exSMJ+pOg7SYRVbkRVhxcjnin4=; h=Date:From:To:Cc:Subject:Message-ID:References:MIME-Version: Content-Type:Content-Disposition:In-Reply-To; b=dNsYwcXSCqagfyKwe5lkALmA4TPuxNbG8ZvQW32ZgktOj9K6WhUcIkDXrec4tQqsmdrhNLjfPLqU/cv5V8ODEBXk07pB0Kl7sIqk5+XqkBDRT+ALR2zgVu8vp/pYbkr+ftCdp9Uw837HsOAmAzMG/i6GE8ySFuGXYqYEn0eiefA= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=lst.de; spf=pass smtp.mailfrom=lst.de; arc=none smtp.client-ip=213.95.11.211 Authentication-Results: smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=lst.de Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=lst.de Received: by verein.lst.de (Postfix, from userid 2407) id 57D11227A88; Mon, 26 Jan 2026 05:27:27 +0100 (CET) Date: Mon, 26 Jan 2026 05:27:27 +0100 From: Christoph Hellwig To: Eric Biggers Cc: Christoph Hellwig , Al Viro , Christian Brauner , Jan Kara , David Sterba , Theodore Ts'o , Jaegeuk Kim , Chao Yu , Andrey Albershteyn , "Matthew Wilcox (Oracle)" , linux-fsdevel@vger.kernel.org, linux-btrfs@vger.kernel.org, linux-ext4@vger.kernel.org, linux-f2fs-devel@lists.sourceforge.net, fsverity@lists.linux.dev Subject: Re: [PATCH 04/11] fsverity: start consolidating pagecache code Message-ID: <20260126042726.GA30803@lst.de> References: <20260122082214.452153-1-hch@lst.de> <20260122082214.452153-5-hch@lst.de> <20260124192747.GD2762@quark> Precedence: bulk X-Mailing-List: linux-btrfs@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20260124192747.GD2762@quark> User-Agent: Mutt/1.5.17 (2007-11-01) On Sat, Jan 24, 2026 at 11:27:47AM -0800, Eric Biggers wrote: > On Thu, Jan 22, 2026 at 09:22:00AM +0100, Christoph Hellwig wrote: > > fs/ext4/verity.c | 17 +---------------- > > fs/f2fs/verity.c | 17 +---------------- > > fs/verity/pagecache.c | 38 ++++++++++++++++++++++++++++++++++++++ > > include/linux/fsverity.h | 3 +++ > > 4 files changed, 43 insertions(+), 32 deletions(-) > > This creates a bisection hazard: the new file fs/verity/pagecache.c > isn't added to fs/verity/Makefile until the next commit. Fixed, that was of course not intentional :) Still surprised the build bot didn't complain about it.