On Sat, 9 May 2020, Kamalesh Babulal wrote: > > Commit 1d05334d2899 ("livepatch: Remove .klp.arch") removed > > arch/x86/kernel/livepatch.c, but missed to adjust the LIVE PATCHING entry > > in MAINTAINERS. > > > > Since then, ./scripts/get_maintainer.pl --self-test=patterns complains: > > > > warning: no file matches F: arch/x86/kernel/livepatch.c > > > > So, drop that obsolete file entry in MAINTAINERS. > > Patch looks good to me, you probably want to add following architecture > specific livepatching header files to the list: > > arch/s390/include/asm/livepatch.h > arch/powerpc/include/asm/livepatch.h Good point, thanks for spotting it Kamalesh. I've queued the patch below on top. From: Jiri Kosina <jkosina@xxxxxxx> Subject: [PATCH] livepatch: add arch-specific headers to MAINTAINERS Add arch-specific livepatch.h for s390 and powerpc to MAINTAINERS F: patterns. Reported-by: Kamalesh Babulal <kamalesh@xxxxxxxxxxxxxxxxxx> Signed-off-by: Jiri Kosina <jkosina@xxxxxxx> --- MAINTAINERS | 2 ++ 1 file changed, 2 insertions(+) diff --git a/MAINTAINERS b/MAINTAINERS index 7e0827670425..8e14444eb98d 100644 --- a/MAINTAINERS +++ b/MAINTAINERS @@ -9854,6 +9854,8 @@ S: Maintained T: git git://git.kernel.org/pub/scm/linux/kernel/git/livepatching/livepatching.git F: Documentation/ABI/testing/sysfs-kernel-livepatch F: Documentation/livepatch/ +F: arch/powerpc/include/asm/livepatch.h +F: arch/s390/include/asm/livepatch.h F: arch/x86/include/asm/livepatch.h F: include/linux/livepatch.h F: kernel/livepatch/ -- Jiri Kosina SUSE Labs