Message ID | 0b7805d6bd5f16d06656093d964d5d90030958d7.1694702259.git.oleksii.kurochko@gmail.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Series | Introduce stub headers necessary for full Xen build | expand |
On 14.09.2023 16:56, Oleksii Kurochko wrote: > --- /dev/null > +++ b/xen/include/asm-generic/xenoprof.h > @@ -0,0 +1,14 @@ > +/* SPDX-License-Identifier: GPL-2.0-only */ > +#ifndef __ASM_GENERIC_XENOPROF_H__ > +#define __ASM_GENERIC_XENOPROF_H__ > + > +#endif /* __ASM_GENERIC_XENOPROF_H__ */ I've made a patch to move #include-s in xen/xenoprof.h, dropping Arm's header (and none going to be needed for RISC-V or PPC). I'll send that patch in due course. Jan
On Thu, 2023-10-19 at 12:09 +0200, Jan Beulich wrote: > I've made a patch to move #include-s in xen/xenoprof.h, dropping > Arm's > header (and none going to be needed for RISC-V or PPC). I'll send > that > patch in due course. Could you please share a link with me? I can't find for some reason... ~ Oleksii
On 23.10.2023 13:17, Oleksii wrote: > On Thu, 2023-10-19 at 12:09 +0200, Jan Beulich wrote: >> I've made a patch to move #include-s in xen/xenoprof.h, dropping >> Arm's >> header (and none going to be needed for RISC-V or PPC). I'll send >> that >> patch in due course. > Could you please share a link with me? I can't find for some reason... I said "I'll send"; I didn't do, yet. I don't really like sending minor patches while the tree is closed anyway. Jan
diff --git a/xen/include/asm-generic/xenoprof.h b/xen/include/asm-generic/xenoprof.h new file mode 100644 index 0000000000..8ee3408b77 --- /dev/null +++ b/xen/include/asm-generic/xenoprof.h @@ -0,0 +1,14 @@ +/* SPDX-License-Identifier: GPL-2.0-only */ +#ifndef __ASM_GENERIC_XENOPROF_H__ +#define __ASM_GENERIC_XENOPROF_H__ + +#endif /* __ASM_GENERIC_XENOPROF_H__ */ + +/* + * Local variables: + * mode: C + * c-file-style: BSD + * c-basic-offset: 4 + * indent-tabs-mode: nil + * End: + */
The patch introduces header stub necessry for full Xen build. Signed-off-by: Oleksii Kurochko <oleksii.kurochko@gmail.com> --- xen/include/asm-generic/xenoprof.h | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 xen/include/asm-generic/xenoprof.h