This is a note to let you know that I've just added the patch titled blk-crypto: Add a missing include directive to the 6.1-stable tree which can be found at: http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary The filename of the patch is: blk-crypto-add-a-missing-include-directive.patch and it can be found in the queue-6.1 subdirectory. If you, or anyone else, feels it should not be added to the stable tree, please let <stable@xxxxxxxxxxxxxxx> know about it. >From stable-owner@xxxxxxxxxxxxxxx Thu May 4 12:55:02 2023 From: Eric Biggers <ebiggers@xxxxxxxxxx> Date: Wed, 3 May 2023 20:54:14 -0700 Subject: blk-crypto: Add a missing include directive To: stable@xxxxxxxxxxxxxxx Cc: linux-block@xxxxxxxxxxxxxxx, Eric Biggers <ebiggers@xxxxxxxxxx>, Bart Van Assche <bvanassche@xxxxxxx>, Jens Axboe <axboe@xxxxxxxxx> Message-ID: <20230504035417.61435-5-ebiggers@xxxxxxxxxx> From: Bart Van Assche <bvanassche@xxxxxxx> commit 85168d416e5d3184b77dbec8fee75c9439894afa upstream. Allow the compiler to verify consistency of function declarations and function definitions. This patch fixes the following sparse errors: block/blk-crypto-profile.c:241:14: error: no previous prototype for ‘blk_crypto_get_keyslot’ [-Werror=missing-prototypes] 241 | blk_status_t blk_crypto_get_keyslot(struct blk_crypto_profile *profile, | ^~~~~~~~~~~~~~~~~~~~~~ block/blk-crypto-profile.c:318:6: error: no previous prototype for ‘blk_crypto_put_keyslot’ [-Werror=missing-prototypes] 318 | void blk_crypto_put_keyslot(struct blk_crypto_keyslot *slot) | ^~~~~~~~~~~~~~~~~~~~~~ block/blk-crypto-profile.c:344:6: error: no previous prototype for ‘__blk_crypto_cfg_supported’ [-Werror=missing-prototypes] 344 | bool __blk_crypto_cfg_supported(struct blk_crypto_profile *profile, | ^~~~~~~~~~~~~~~~~~~~~~~~~~ block/blk-crypto-profile.c:373:5: error: no previous prototype for ‘__blk_crypto_evict_key’ [-Werror=missing-prototypes] 373 | int __blk_crypto_evict_key(struct blk_crypto_profile *profile, | ^~~~~~~~~~~~~~~~~~~~~~ Cc: Eric Biggers <ebiggers@xxxxxxxxxx> Signed-off-by: Bart Van Assche <bvanassche@xxxxxxx> Link: https://lore.kernel.org/r/20221123172923.434339-1-bvanassche@xxxxxxx Signed-off-by: Jens Axboe <axboe@xxxxxxxxx> Signed-off-by: Eric Biggers <ebiggers@xxxxxxxxxx> Signed-off-by: Greg Kroah-Hartman <gregkh@xxxxxxxxxxxxxxxxxxx> --- block/blk-crypto-profile.c | 1 + 1 file changed, 1 insertion(+) --- a/block/blk-crypto-profile.c +++ b/block/blk-crypto-profile.c @@ -32,6 +32,7 @@ #include <linux/wait.h> #include <linux/blkdev.h> #include <linux/blk-integrity.h> +#include "blk-crypto-internal.h" struct blk_crypto_keyslot { atomic_t slot_refs; Patches currently in stable-queue which might be from stable-owner@xxxxxxxxxxxxxxx are queue-6.1/blk-crypto-don-t-use-struct-request_queue-for-public-interfaces.patch queue-6.1/blk-crypto-move-internal-only-declarations-to-blk-crypto-internal.h.patch queue-6.1/blk-crypto-make-blk_crypto_evict_key-more-robust.patch queue-6.1/blk-crypto-add-a-blk_crypto_config_supported_natively-helper.patch queue-6.1/blk-mq-release-crypto-keyslot-before-reporting-i-o-complete.patch queue-6.1/blk-crypto-add-a-missing-include-directive.patch queue-6.1/blk-crypto-make-blk_crypto_evict_key-return-void.patch