Message ID | 79ed96f65e7c7f4036cf62ba6b5b44a371c758ee.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/mem_access.h > @@ -0,0 +1,14 @@ > +/* SPDX-License-Identifier: GPL-2.0-only */ > +#ifndef __ASM_GENERIC_MEM_ACCESS > +#define __ASM_GENERIC_MEM_ACCESS > + > +#endif Does xen/mem_access.h actually need to include asm/mem_access.h when !CONFIG_MEM_ACCESS? Without that, I don't think this header is needed. Jan
On Thu, 2023-10-19 at 11:51 +0200, Jan Beulich wrote: > On 14.09.2023 16:56, Oleksii Kurochko wrote: > > --- /dev/null > > +++ b/xen/include/asm-generic/mem_access.h > > @@ -0,0 +1,14 @@ > > +/* SPDX-License-Identifier: GPL-2.0-only */ > > +#ifndef __ASM_GENERIC_MEM_ACCESS > > +#define __ASM_GENERIC_MEM_ACCESS > > + > > +#endif > > Does xen/mem_access.h actually need to include asm/mem_access.h when > !CONFIG_MEM_ACCESS? Without that, I don't think this header is > needed. Yes, it won't needed. I'll update xen/mem_access.h header and push a separate patch. Thanks. ~ Oleksii
diff --git a/xen/include/asm-generic/mem_access.h b/xen/include/asm-generic/mem_access.h new file mode 100644 index 0000000000..d2a0b545a4 --- /dev/null +++ b/xen/include/asm-generic/mem_access.h @@ -0,0 +1,14 @@ +/* SPDX-License-Identifier: GPL-2.0-only */ +#ifndef __ASM_GENERIC_MEM_ACCESS +#define __ASM_GENERIC_MEM_ACCESS + +#endif + +/* + * 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/mem_access.h | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 xen/include/asm-generic/mem_access.h