[PATCH] MAINTAINERS: minor file line updates

Frediano Ziglio posted 1 patch 1 year ago
Patches applied successfully (tree, apply log)
git fetch https://gitlab.com/xen-project/patchew/xen tags/patchew/20241004095526.889790-1-frediano.ziglio@cloud.com
MAINTAINERS | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
[PATCH] MAINTAINERS: minor file line updates
Posted by Frediano Ziglio 1 year ago
"xen/arch/arm/include/asm/tee" is a directory and should be terminated
by a slash ("/").
"xen/arch/*/include/asm/*/mem_access.h" did not match any files
from shell, all "mem_access.h" files are directly under "asm" directory.

Signed-off-by: Frediano Ziglio <frediano.ziglio@cloud.com>
---
 MAINTAINERS | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/MAINTAINERS b/MAINTAINERS
index fb0ebf0939..13d718f7f0 100644
--- a/MAINTAINERS
+++ b/MAINTAINERS
@@ -517,7 +517,7 @@ F:	stubdom/
 TEE MEDIATORS
 M:	Volodymyr Babchuk <volodymyr_babchuk@epam.com>
 S:	Supported
-F:	xen/arch/arm/include/asm/tee
+F:	xen/arch/arm/include/asm/tee/
 F:	xen/arch/arm/tee/
 
 TOOLSTACK
@@ -545,7 +545,7 @@ F:	tools/misc/xen-access.c
 F:	xen/arch/*/*/mem_access.c
 F:	xen/arch/*/*/monitor.c
 F:	xen/arch/*/*/vm_event.c
-F:	xen/arch/*/include/asm/*/mem_access.h
+F:	xen/arch/*/include/asm/mem_access.h
 F:	xen/arch/*/include/asm/*/monitor.h
 F:	xen/arch/*/include/asm/*/vm_event.h
 F:	xen/arch/*/include/asm/mem_access.h
-- 
2.34.1
Re: [PATCH] MAINTAINERS: minor file line updates
Posted by Jan Beulich 1 year ago
On 04.10.2024 11:55, Frediano Ziglio wrote:
> "xen/arch/arm/include/asm/tee" is a directory and should be terminated
> by a slash ("/").
> "xen/arch/*/include/asm/*/mem_access.h" did not match any files
> from shell, all "mem_access.h" files are directly under "asm" directory.

The latter is intentional though to allow sub-arch-specific files; in fact ...

> --- a/MAINTAINERS
> +++ b/MAINTAINERS
> @@ -517,7 +517,7 @@ F:	stubdom/
>  TEE MEDIATORS
>  M:	Volodymyr Babchuk <volodymyr_babchuk@epam.com>
>  S:	Supported
> -F:	xen/arch/arm/include/asm/tee
> +F:	xen/arch/arm/include/asm/tee/
>  F:	xen/arch/arm/tee/
>  
>  TOOLSTACK
> @@ -545,7 +545,7 @@ F:	tools/misc/xen-access.c
>  F:	xen/arch/*/*/mem_access.c
>  F:	xen/arch/*/*/monitor.c
>  F:	xen/arch/*/*/vm_event.c
> -F:	xen/arch/*/include/asm/*/mem_access.h
> +F:	xen/arch/*/include/asm/mem_access.h
>  F:	xen/arch/*/include/asm/*/monitor.h
>  F:	xen/arch/*/include/asm/*/vm_event.h
>  F:	xen/arch/*/include/asm/mem_access.h

... you're now duplicating this last line visible in context.

Jan