This is a note to let you know that I've just added the patch titled Fix up backport of 136191703038 ("interconnect: Teach lockdep about icc_bw_lock order") to the 5.15-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: fix-up-backport-of-136191703038-interconnect-teach-l.patch and it can be found in the queue-5.15 subdirectory. If you, or anyone else, feels it should not be added to the stable tree, please let <stable@xxxxxxxxxxxxxxx> know about it. commit 16c572ef0646f8b0fa19fbf81b302de8a03127f2 Author: Sasha Levin <sashal@xxxxxxxxxx> Date: Sun Sep 24 14:30:44 2023 -0400 Fix up backport of 136191703038 ("interconnect: Teach lockdep about icc_bw_lock order") Add a missing include to fix the following build error: drivers/interconnect/core.c: In function 'icc_init': drivers/interconnect/core.c:1148:9: error: implicit declaration of function 'fs_reclaim_acquire' [-Werror=implicit-function-declaration] 1148 | fs_reclaim_acquire(GFP_KERNEL); | ^~~~~~~~~~~~~~~~~~ drivers/interconnect/core.c:1150:9: error: implicit declaration of function 'fs_reclaim_release' [-Werror=implicit-function-declaration] 1150 | fs_reclaim_release(GFP_KERNEL); | ^~~~~~~~~~~~~~~~~~ Signed-off-by: Sasha Levin <sashal@xxxxxxxxxx> diff --git a/drivers/interconnect/core.c b/drivers/interconnect/core.c index ab654b33f5d24..b7c41bd7409cd 100644 --- a/drivers/interconnect/core.c +++ b/drivers/interconnect/core.c @@ -13,6 +13,7 @@ #include <linux/interconnect.h> #include <linux/interconnect-provider.h> #include <linux/list.h> +#include <linux/sched/mm.h> #include <linux/module.h> #include <linux/mutex.h> #include <linux/slab.h>