When Cscope-ing through Xen, one occasionally finds themselves in xen-hypercall-defs.h and needing to find the originating file.
This is substantially magic, and even reading the Makefile that produces xen-hypercall-defs.h is of little help if you're not aware of of the %.i : %.c pattern rule, and that the header is generated from a .c file in practice. No functional change. Signed-off-by: Andrew Cooper <[email protected]> --- CC: Anthony PERARD <[email protected]> CC: Michal Orzel <[email protected]> CC: Jan Beulich <[email protected]> CC: Julien Grall <[email protected]> CC: Roger Pau Monné <[email protected]> CC: Stefano Stabellini <[email protected]> CC: Juergen Gross <[email protected]> --- xen/scripts/gen_hypercall.awk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xen/scripts/gen_hypercall.awk b/xen/scripts/gen_hypercall.awk index b544fe1c4df7..c137f8fc4e6d 100644 --- a/xen/scripts/gen_hypercall.awk +++ b/xen/scripts/gen_hypercall.awk @@ -4,7 +4,7 @@ BEGIN { printf("#ifndef XEN_HYPERCALL_DEFS_H\n"); printf("#define XEN_HYPERCALL_DEFS_H\n\n"); - printf("/* Generated file, do not edit! */\n\n"); + printf("/* Automatically generated from xen/include/hypercall-defs.c - do not edit! */\n\n"); e = 0; n = 0; p = 0; -- 2.39.5
