From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-alma10-1.taild15c8.ts.net [100.103.45.18]) (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 EB0C81D5ADE; Sat, 27 Jun 2026 03:20:43 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=100.103.45.18 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1782530444; cv=none; b=Px/nQEDw8qWfp/ubwyYuUpTsJI3O3EiOMWvwGP2xlk+jONm7jqOaP4VpXXUc44a3gWGfbl7qyj+sRNMj2PN9uXKdX0niMM02IouTDikfYMNYROjn0Ok22lszQsB0BWJM5hPTOQUis1szbr50n1ww429YBq5edUe6f+0rOD8G3GI= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1782530444; c=relaxed/simple; bh=cycMDWNG4DyPiR5UzMbSkNRHzx8AKI7W9DYmVznlaoY=; h=Date:From:To:Cc:Subject:Message-ID:References:MIME-Version: Content-Type:Content-Disposition:In-Reply-To; b=Ofvz57y6kjNjXmIL5hFBlxKRZ+AySZc8fQmQSytQ/Srr5GwY5qlpO9vzFR7KbrYbHt5EyDdU6JCcWCXXN3KMmqWSzpeK/DEAe0ZV5xQNBTLDhbMGc47eX1Hh9tYyu9eA4Qy4AzK5q6Zvf1U5iylx4sQugiJIn+qw7dV/i5VeVbc= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=RwNWZlfg; arc=none smtp.client-ip=100.103.45.18 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b="RwNWZlfg" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 367E51F000E9; Sat, 27 Jun 2026 03:20:43 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=kernel.org; s=k20260515; t=1782530443; bh=dLn5Ye/u1rkql2w2rInqXApZ9x5R/AHA3OMUU94o6YE=; h=Date:From:To:Cc:Subject:References:In-Reply-To; b=RwNWZlfg/u8BGWxx70gLerjkoDuAWoqh350agTA5BGW6G2ZyOiGmFDrvT0FEgPC/Q MWnERkC/kPYhzsnBr9N/tC2S//IWxsBHh0P1NMJVoC5TBDNL9VBhZWUp93MpXhUdZU e35Hfvvjn8GdmJ7ehxt++jhjAu1Kd5UGgo5LN5K8Y9K4m7qIAd/A0wkopkuM4BZ6O9 VMN98Z4G3nsjIqtP3LcUMJdyvJmr1az68lTKibMbD+QfgVAheQw1kJppCrD+w9qwVl CPYvAkVfM5LPwPpXUT88ZvjQy+xNscLAvzgcZb2nV3DgYwxGLqOz6EM28P8ivo9Tpm mFBqXsnyZ3qCQ== Date: Fri, 26 Jun 2026 23:20:42 -0400 From: Konstantin Ryabitsev To: Eric Biggers Cc: Luis Henriques , linux-fscrypt@vger.kernel.org, Theodore Ts'o , Jaegeuk Kim , Jarkko Sakkinen , linux-fsdevel@vger.kernel.org, keyrings@vger.kernel.org, linux-kernel@vger.kernel.org, syzbot+f55b043dacf43776b50c@syzkaller.appspotmail.com, Mohammed EL Kadiri , stable@vger.kernel.org Subject: Re: [PATCH] fscrypt: Replace mk_users keyring with simple list Message-ID: <20260626-capable-inventive-rhino-b9b8fa@lemur> References: <20260618221921.87896-1-ebiggers@kernel.org> <87tsqpd8d8.fsf@wotan.olymp> <20260626190232.GA1719948@google.com> Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline In-Reply-To: <20260626190232.GA1719948@google.com> On Fri, Jun 26, 2026 at 07:02:32PM +0000, Eric Biggers wrote: > It applies on top of > "[PATCH] fscrypt: Fix key setup in edge case with multiple data unit sizes" > (https://lore.kernel.org/linux-fscrypt/20260618180652.52742-1-ebiggers@kernel.org/). > This time I tried just relying on the prerequisite-patch-id footer (as > generated by 'git format-patch') to express the dependency. But > evidently that still doesn't work: for one, 'b4 am' just ignores it. FWIW, you have to use "b4 shazam" for it to apply the specified dependencies, as "b4 am" just creates a mbox file and stuffing it full of deps is not really the right approach. HTH. -K