Re: [PATCH v2] xen/console: print Xen version via keyhandler

2025-02-13 Thread Denis Mukhin
On Thursday, February 13th, 2025 at 1:10 AM, Jan Beulich wrote: > > > On 13.02.2025 09:28, dm...@proton.me wrote: > > > --- a/xen/include/xen/version.h > > +++ b/xen/include/xen/version.h > > @@ -29,4 +29,7 @@ int xen_build_id_check(const Elf_Note *n, unsigned int > > n_sz, > > static inli

Re: [PATCH v2] xen/console: print Xen version via keyhandler

2025-02-13 Thread Jan Beulich
On 13.02.2025 09:28, dm...@proton.me wrote: > --- a/xen/include/xen/version.h > +++ b/xen/include/xen/version.h > @@ -29,4 +29,7 @@ int xen_build_id_check(const Elf_Note *n, unsigned int n_sz, > static inline void xen_build_init(void) {}; > #endif > > +void xen_print_version(void); > +void xen_

[PATCH v2] xen/console: print Xen version via keyhandler

2025-02-13 Thread dmkhn
From: Denis Mukhin Add Xen version printout to 'h' keyhandler output. That is useful for debugging systems that have been left intact for a long time. Signed-off-by: Denis Mukhin --- Changes since v1: - Moved version printout to 'h' keyhandler - Kept the build-id reporting past Xen version pri