Message ID | 19dfd66d1a446bf1f5cdccd74b7a64f56baa8f5c.1687178053.git.oleksii.kurochko@gmail.com (mailing list archive) |
---|---|
State | Superseded |
Headers | show |
Series | xen/riscv: introduce identity mapping | expand |
On Mon, Jun 19, 2023 at 11:35 PM Oleksii Kurochko <oleksii.kurochko@gmail.com> wrote: > > Signed-off-by: Oleksii Kurochko <oleksii.kurochko@gmail.com> > Suggested-by: Andrew Cooper <andrew.cooper3@citrix.com> Reviewed-by: Alistair Francis <alistair.francis@wdc.com> Alistair > --- > Changes in V2: > - change SPDX tags from GPL-2.0-or-later to GPL-2.0-only. > - add Suggested-by: Andrew Cooper <andrew.cooper3@citrix.com>. > --- > xen/arch/riscv/include/asm/current.h | 2 ++ > xen/arch/riscv/include/asm/early_printk.h | 2 ++ > xen/arch/riscv/include/asm/mm.h | 2 ++ > xen/arch/riscv/include/asm/page-bits.h | 2 ++ > xen/arch/riscv/include/asm/page.h | 2 ++ > xen/arch/riscv/include/asm/traps.h | 2 ++ > xen/arch/riscv/include/asm/types.h | 2 ++ > xen/arch/riscv/mm.c | 2 ++ > xen/arch/riscv/setup.c | 2 ++ > 9 files changed, 18 insertions(+) > > diff --git a/xen/arch/riscv/include/asm/current.h b/xen/arch/riscv/include/asm/current.h > index d87e6717e0..d84f15dc50 100644 > --- a/xen/arch/riscv/include/asm/current.h > +++ b/xen/arch/riscv/include/asm/current.h > @@ -1,3 +1,5 @@ > +/* SPDX-License-Identifier: GPL-2.0-only */ > + > #ifndef __ASM_CURRENT_H > #define __ASM_CURRENT_H > > diff --git a/xen/arch/riscv/include/asm/early_printk.h b/xen/arch/riscv/include/asm/early_printk.h > index 05106e160d..85e60df33a 100644 > --- a/xen/arch/riscv/include/asm/early_printk.h > +++ b/xen/arch/riscv/include/asm/early_printk.h > @@ -1,3 +1,5 @@ > +/* SPDX-License-Identifier: GPL-2.0-only */ > + > #ifndef __EARLY_PRINTK_H__ > #define __EARLY_PRINTK_H__ > > diff --git a/xen/arch/riscv/include/asm/mm.h b/xen/arch/riscv/include/asm/mm.h > index 500fdc9c5a..3f694a43ef 100644 > --- a/xen/arch/riscv/include/asm/mm.h > +++ b/xen/arch/riscv/include/asm/mm.h > @@ -1,3 +1,5 @@ > +/* SPDX-License-Identifier: GPL-2.0-only */ > + > #ifndef _ASM_RISCV_MM_H > #define _ASM_RISCV_MM_H > > diff --git a/xen/arch/riscv/include/asm/page-bits.h b/xen/arch/riscv/include/asm/page-bits.h > index 4a3e33589a..8f1f474371 100644 > --- a/xen/arch/riscv/include/asm/page-bits.h > +++ b/xen/arch/riscv/include/asm/page-bits.h > @@ -1,3 +1,5 @@ > +/* SPDX-License-Identifier: GPL-2.0-only */ > + > #ifndef __RISCV_PAGE_BITS_H__ > #define __RISCV_PAGE_BITS_H__ > > diff --git a/xen/arch/riscv/include/asm/page.h b/xen/arch/riscv/include/asm/page.h > index 22b36e03a4..95074e29b3 100644 > --- a/xen/arch/riscv/include/asm/page.h > +++ b/xen/arch/riscv/include/asm/page.h > @@ -1,3 +1,5 @@ > +/* SPDX-License-Identifier: GPL-2.0-only */ > + > #ifndef _ASM_RISCV_PAGE_H > #define _ASM_RISCV_PAGE_H > > diff --git a/xen/arch/riscv/include/asm/traps.h b/xen/arch/riscv/include/asm/traps.h > index f3fb6b25d1..3fef318478 100644 > --- a/xen/arch/riscv/include/asm/traps.h > +++ b/xen/arch/riscv/include/asm/traps.h > @@ -1,3 +1,5 @@ > +/* SPDX-License-Identifier: GPL-2.0-only */ > + > #ifndef __ASM_TRAPS_H__ > #define __ASM_TRAPS_H__ > > diff --git a/xen/arch/riscv/include/asm/types.h b/xen/arch/riscv/include/asm/types.h > index 0c0ce78c8f..c2cdfd9caa 100644 > --- a/xen/arch/riscv/include/asm/types.h > +++ b/xen/arch/riscv/include/asm/types.h > @@ -1,3 +1,5 @@ > +/* SPDX-License-Identifier: GPL-2.0-only */ > + > #ifndef __RISCV_TYPES_H__ > #define __RISCV_TYPES_H__ > > diff --git a/xen/arch/riscv/mm.c b/xen/arch/riscv/mm.c > index 2693b817c5..663048c783 100644 > --- a/xen/arch/riscv/mm.c > +++ b/xen/arch/riscv/mm.c > @@ -1,3 +1,5 @@ > +/* SPDX-License-Identifier: GPL-2.0-only */ > + > #include <xen/cache.h> > #include <xen/compiler.h> > #include <xen/init.h> > diff --git a/xen/arch/riscv/setup.c b/xen/arch/riscv/setup.c > index c4ef0b3165..6593f601c1 100644 > --- a/xen/arch/riscv/setup.c > +++ b/xen/arch/riscv/setup.c > @@ -1,3 +1,5 @@ > +/* SPDX-License-Identifier: GPL-2.0-only */ > + > #include <xen/compile.h> > #include <xen/init.h> > > -- > 2.40.1 > >
diff --git a/xen/arch/riscv/include/asm/current.h b/xen/arch/riscv/include/asm/current.h index d87e6717e0..d84f15dc50 100644 --- a/xen/arch/riscv/include/asm/current.h +++ b/xen/arch/riscv/include/asm/current.h @@ -1,3 +1,5 @@ +/* SPDX-License-Identifier: GPL-2.0-only */ + #ifndef __ASM_CURRENT_H #define __ASM_CURRENT_H diff --git a/xen/arch/riscv/include/asm/early_printk.h b/xen/arch/riscv/include/asm/early_printk.h index 05106e160d..85e60df33a 100644 --- a/xen/arch/riscv/include/asm/early_printk.h +++ b/xen/arch/riscv/include/asm/early_printk.h @@ -1,3 +1,5 @@ +/* SPDX-License-Identifier: GPL-2.0-only */ + #ifndef __EARLY_PRINTK_H__ #define __EARLY_PRINTK_H__ diff --git a/xen/arch/riscv/include/asm/mm.h b/xen/arch/riscv/include/asm/mm.h index 500fdc9c5a..3f694a43ef 100644 --- a/xen/arch/riscv/include/asm/mm.h +++ b/xen/arch/riscv/include/asm/mm.h @@ -1,3 +1,5 @@ +/* SPDX-License-Identifier: GPL-2.0-only */ + #ifndef _ASM_RISCV_MM_H #define _ASM_RISCV_MM_H diff --git a/xen/arch/riscv/include/asm/page-bits.h b/xen/arch/riscv/include/asm/page-bits.h index 4a3e33589a..8f1f474371 100644 --- a/xen/arch/riscv/include/asm/page-bits.h +++ b/xen/arch/riscv/include/asm/page-bits.h @@ -1,3 +1,5 @@ +/* SPDX-License-Identifier: GPL-2.0-only */ + #ifndef __RISCV_PAGE_BITS_H__ #define __RISCV_PAGE_BITS_H__ diff --git a/xen/arch/riscv/include/asm/page.h b/xen/arch/riscv/include/asm/page.h index 22b36e03a4..95074e29b3 100644 --- a/xen/arch/riscv/include/asm/page.h +++ b/xen/arch/riscv/include/asm/page.h @@ -1,3 +1,5 @@ +/* SPDX-License-Identifier: GPL-2.0-only */ + #ifndef _ASM_RISCV_PAGE_H #define _ASM_RISCV_PAGE_H diff --git a/xen/arch/riscv/include/asm/traps.h b/xen/arch/riscv/include/asm/traps.h index f3fb6b25d1..3fef318478 100644 --- a/xen/arch/riscv/include/asm/traps.h +++ b/xen/arch/riscv/include/asm/traps.h @@ -1,3 +1,5 @@ +/* SPDX-License-Identifier: GPL-2.0-only */ + #ifndef __ASM_TRAPS_H__ #define __ASM_TRAPS_H__ diff --git a/xen/arch/riscv/include/asm/types.h b/xen/arch/riscv/include/asm/types.h index 0c0ce78c8f..c2cdfd9caa 100644 --- a/xen/arch/riscv/include/asm/types.h +++ b/xen/arch/riscv/include/asm/types.h @@ -1,3 +1,5 @@ +/* SPDX-License-Identifier: GPL-2.0-only */ + #ifndef __RISCV_TYPES_H__ #define __RISCV_TYPES_H__ diff --git a/xen/arch/riscv/mm.c b/xen/arch/riscv/mm.c index 2693b817c5..663048c783 100644 --- a/xen/arch/riscv/mm.c +++ b/xen/arch/riscv/mm.c @@ -1,3 +1,5 @@ +/* SPDX-License-Identifier: GPL-2.0-only */ + #include <xen/cache.h> #include <xen/compiler.h> #include <xen/init.h> diff --git a/xen/arch/riscv/setup.c b/xen/arch/riscv/setup.c index c4ef0b3165..6593f601c1 100644 --- a/xen/arch/riscv/setup.c +++ b/xen/arch/riscv/setup.c @@ -1,3 +1,5 @@ +/* SPDX-License-Identifier: GPL-2.0-only */ + #include <xen/compile.h> #include <xen/init.h>
Signed-off-by: Oleksii Kurochko <oleksii.kurochko@gmail.com> Suggested-by: Andrew Cooper <andrew.cooper3@citrix.com> --- Changes in V2: - change SPDX tags from GPL-2.0-or-later to GPL-2.0-only. - add Suggested-by: Andrew Cooper <andrew.cooper3@citrix.com>. --- xen/arch/riscv/include/asm/current.h | 2 ++ xen/arch/riscv/include/asm/early_printk.h | 2 ++ xen/arch/riscv/include/asm/mm.h | 2 ++ xen/arch/riscv/include/asm/page-bits.h | 2 ++ xen/arch/riscv/include/asm/page.h | 2 ++ xen/arch/riscv/include/asm/traps.h | 2 ++ xen/arch/riscv/include/asm/types.h | 2 ++ xen/arch/riscv/mm.c | 2 ++ xen/arch/riscv/setup.c | 2 ++ 9 files changed, 18 insertions(+)