diff options
| author | Christopher Clark <christopher.w.clark@gmail.com> | 2022-05-21 12:04:44 -0700 |
|---|---|---|
| committer | Bruce Ashfield <bruce.ashfield@gmail.com> | 2022-05-25 12:18:18 -0400 |
| commit | d9f49b8818bf62532ffd8126e89bf2cee401d6a7 (patch) | |
| tree | 9b228fb9d33235342ace30f65e3c3af248def86d | |
| parent | 7148a0664ae6cddaddca3f337e7ada6899d44f24 (diff) | |
| download | meta-virtualization-d9f49b8818bf62532ffd8126e89bf2cee401d6a7.tar.gz | |
xen: drop patch to workaround prelink on aarch64
Patch is not needed for image prelinking since the gcc toolchain
in this branch successfully links Xen without it.
Remove the patch from the stable branch since the BSD license of the
modified header file differs vs the GPLv2 source code referenced.
Removal preferred to replacement with a new patch that moves the function
into GPLv2 .c source files since the build now succeeds without it.
Signed-off-by: Christopher Clark <christopher.w.clark@gmail.com>
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
| -rw-r--r-- | recipes-extended/xen/files/xen-arm64-implement-atomic-fetch-add.patch | 50 | ||||
| -rw-r--r-- | recipes-extended/xen/xen_4.14.bb | 1 | ||||
| -rw-r--r-- | recipes-extended/xen/xen_4.15.bb | 1 | ||||
| -rw-r--r-- | recipes-extended/xen/xen_git.bb | 1 |
4 files changed, 0 insertions, 53 deletions
diff --git a/recipes-extended/xen/files/xen-arm64-implement-atomic-fetch-add.patch b/recipes-extended/xen/files/xen-arm64-implement-atomic-fetch-add.patch deleted file mode 100644 index 6e957a50..00000000 --- a/recipes-extended/xen/files/xen-arm64-implement-atomic-fetch-add.patch +++ /dev/null | |||
| @@ -1,50 +0,0 @@ | |||
| 1 | From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001 | ||
| 2 | From: Christopher Clark <christopher.w.clark@gmail.com> | ||
| 3 | Date: Fri, 26 June 2020 16:34:00 -0800 | ||
| 4 | Subject: [PATCH] xen: implement atomic op to fix arm64 compilation | ||
| 5 | |||
| 6 | Xen's ARM implementation of arch_fetch_and_add since f9cc3cd9 | ||
| 7 | uses a builtin, despite the build being performed with -fno-builtin. | ||
| 8 | With gcc 10.1.0, this now breaks prelinking spinlock.c, so | ||
| 9 | implement the one atomic operation that is required with logic | ||
| 10 | derived from Linux's atomic_ll_sc.h: ATOMIC_FETCH_OP and comparison with | ||
| 11 | the binary produced with and without the patch with gcc 9.2.0. | ||
| 12 | |||
| 13 | Signed-off-by: Christopher Clark <christopher.w.clark@gmail.com> | ||
| 14 | diff --git a/xen/include/asm-arm/system.h b/xen/include/asm-arm/system.h | ||
| 15 | index e5d062667d..c46dd3ac71 100644 | ||
| 16 | --- a/xen/include/asm-arm/system.h | ||
| 17 | +++ b/xen/include/asm-arm/system.h | ||
| 18 | @@ -55,7 +55,32 @@ static inline int local_abort_is_enabled(void) | ||
| 19 | return !(flags & PSR_ABT_MASK); | ||
| 20 | } | ||
| 21 | |||
| 22 | +#ifdef CONFIG_ARM_64 | ||
| 23 | + | ||
| 24 | +/* see atomic_ll_sc.h: ATOMIC_FETCH_OP(name, mb, acq, rel, cl, op, asm_op, constraint) */ | ||
| 25 | +static inline int arch_fetch_and_add(unsigned int *ptr, unsigned long i) | ||
| 26 | +{ | ||
| 27 | + int register lptr asm("x0"); | ||
| 28 | + int register result asm("w1"); | ||
| 29 | + int register newval asm("w2"); | ||
| 30 | + int register status asm("w3"); | ||
| 31 | + | ||
| 32 | + asm volatile( | ||
| 33 | + " mov %[lptr], %[ptr]\n" | ||
| 34 | + "1: ldxr %w[result], [%[lptr]]\n" | ||
| 35 | + " add %w[newval], %w[result], %w[i]\n" | ||
| 36 | + " stlxr %w[status], %w[newval], [%[lptr]]\n" | ||
| 37 | + " cbnz %w[status], 1b\n" | ||
| 38 | + " dmb ish\n" | ||
| 39 | + : [result] "=&r" (result), [lptr] "=&r" (lptr), [newval] "=&r" (newval), [status] "=&r" (status), [i] "+r" (i), "+Q" (*ptr) | ||
| 40 | + : [ptr] "r" (ptr), "r" (i) | ||
| 41 | + : "memory"); | ||
| 42 | + | ||
| 43 | + return result; | ||
| 44 | +} | ||
| 45 | +#else | ||
| 46 | #define arch_fetch_and_add(x, v) __sync_fetch_and_add(x, v) | ||
| 47 | +#endif | ||
| 48 | |||
| 49 | extern struct vcpu *__context_switch(struct vcpu *prev, struct vcpu *next); | ||
| 50 | |||
diff --git a/recipes-extended/xen/xen_4.14.bb b/recipes-extended/xen/xen_4.14.bb index 0d7d20bf..267db16c 100644 --- a/recipes-extended/xen/xen_4.14.bb +++ b/recipes-extended/xen/xen_4.14.bb | |||
| @@ -6,7 +6,6 @@ XEN_BRANCH ?= "stable-${XEN_REL}" | |||
| 6 | 6 | ||
| 7 | SRC_URI = " \ | 7 | SRC_URI = " \ |
| 8 | git://xenbits.xen.org/xen.git;branch=${XEN_BRANCH} \ | 8 | git://xenbits.xen.org/xen.git;branch=${XEN_BRANCH} \ |
| 9 | file://xen-arm64-implement-atomic-fetch-add.patch \ | ||
| 10 | file://0001-menuconfig-mconf-cfg-Allow-specification-of-ncurses-location.patch \ | 9 | file://0001-menuconfig-mconf-cfg-Allow-specification-of-ncurses-location.patch \ |
| 11 | " | 10 | " |
| 12 | 11 | ||
diff --git a/recipes-extended/xen/xen_4.15.bb b/recipes-extended/xen/xen_4.15.bb index 0cfaf0ca..1b87ae8d 100644 --- a/recipes-extended/xen/xen_4.15.bb +++ b/recipes-extended/xen/xen_4.15.bb | |||
| @@ -6,7 +6,6 @@ XEN_BRANCH ?= "stable-${XEN_REL}" | |||
| 6 | 6 | ||
| 7 | SRC_URI = " \ | 7 | SRC_URI = " \ |
| 8 | git://xenbits.xen.org/xen.git;branch=${XEN_BRANCH} \ | 8 | git://xenbits.xen.org/xen.git;branch=${XEN_BRANCH} \ |
| 9 | file://xen-arm64-implement-atomic-fetch-add.patch \ | ||
| 10 | file://0001-menuconfig-mconf-cfg-Allow-specification-of-ncurses-location.patch \ | 9 | file://0001-menuconfig-mconf-cfg-Allow-specification-of-ncurses-location.patch \ |
| 11 | " | 10 | " |
| 12 | 11 | ||
diff --git a/recipes-extended/xen/xen_git.bb b/recipes-extended/xen/xen_git.bb index 3957de12..2fbfb548 100644 --- a/recipes-extended/xen/xen_git.bb +++ b/recipes-extended/xen/xen_git.bb | |||
| @@ -6,7 +6,6 @@ XEN_BRANCH ?= "master" | |||
| 6 | 6 | ||
| 7 | SRC_URI = " \ | 7 | SRC_URI = " \ |
| 8 | git://xenbits.xen.org/xen.git;branch=${XEN_BRANCH} \ | 8 | git://xenbits.xen.org/xen.git;branch=${XEN_BRANCH} \ |
| 9 | file://xen-arm64-implement-atomic-fetch-add.patch \ | ||
| 10 | file://0001-menuconfig-mconf-cfg-Allow-specification-of-ncurses-location.patch \ | 9 | file://0001-menuconfig-mconf-cfg-Allow-specification-of-ncurses-location.patch \ |
| 11 | " | 10 | " |
| 12 | 11 | ||
