diff options
author | Jonathan Rajotte <jonathan.rajotte-julien@efficios.com> | 2019-05-31 17:56:05 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2019-06-01 11:27:06 +0100 |
commit | eb952de8fdfab362360e8b987c07a223e4807280 (patch) | |
tree | f4a5b15211619ed3626bcc501ff88ab1a8a7f502 /meta/recipes-support/liburcu | |
parent | 44607330cdb3e426e6ea6ce9d6df682597b3ff88 (diff) | |
download | poky-eb952de8fdfab362360e8b987c07a223e4807280.tar.gz |
liburcu: update to 0.11.0
Drop backported patch.
Update paths to files that establish the licensing.
(From OE-Core rev: 93b7a4f6c2149242d2390a8cbb9af86d09f1d7ca)
Signed-off-by: Jonathan Rajotte <jonathan.rajotte-julien@efficios.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-support/liburcu')
-rw-r--r-- | meta/recipes-support/liburcu/files/Add-support-for-the-RISC-V-architecture.patch | 157 | ||||
-rw-r--r-- | meta/recipes-support/liburcu/liburcu_0.11.0.bb (renamed from meta/recipes-support/liburcu/liburcu_0.10.2.bb) | 10 |
2 files changed, 4 insertions, 163 deletions
diff --git a/meta/recipes-support/liburcu/files/Add-support-for-the-RISC-V-architecture.patch b/meta/recipes-support/liburcu/files/Add-support-for-the-RISC-V-architecture.patch deleted file mode 100644 index b026782bd5..0000000000 --- a/meta/recipes-support/liburcu/files/Add-support-for-the-RISC-V-architecture.patch +++ /dev/null | |||
@@ -1,157 +0,0 @@ | |||
1 | From fdfad81006c2c964781b616f0a75578507be809c Mon Sep 17 00:00:00 2001 | ||
2 | From: Michael Jeanson <mjeanson@efficios.com> | ||
3 | Date: Wed, 21 Mar 2018 17:38:41 -0400 | ||
4 | Subject: [PATCH] Add support for the RISC-V architecture | ||
5 | |||
6 | Tested in QEMU 2.12.0-rc0, requires --disable-compiler-tls to go | ||
7 | through the benchmarks reliably. | ||
8 | |||
9 | Signed-off-by: Michael Jeanson <mjeanson@efficios.com> | ||
10 | Signed-off-by: Mathieu Desnoyers <mathieu.desnoyers@efficios.com> | ||
11 | Upstream-Status: Backport | ||
12 | --- | ||
13 | configure.ac | 1 + | ||
14 | include/Makefile.am | 2 ++ | ||
15 | include/urcu/arch/riscv.h | 49 ++++++++++++++++++++++++++++++++++++++++++++ | ||
16 | include/urcu/uatomic/riscv.h | 44 +++++++++++++++++++++++++++++++++++++++ | ||
17 | 4 files changed, 96 insertions(+) | ||
18 | create mode 100644 include/urcu/arch/riscv.h | ||
19 | create mode 100644 include/urcu/uatomic/riscv.h | ||
20 | |||
21 | diff --git a/configure.ac b/configure.ac | ||
22 | index d0b4a9ac..9145081a 100644 | ||
23 | --- a/configure.ac | ||
24 | +++ b/configure.ac | ||
25 | @@ -151,6 +151,7 @@ AS_CASE([$host_cpu], | ||
26 | [tile*], [ARCHTYPE="tile"], | ||
27 | [hppa*], [ARCHTYPE="hppa"], | ||
28 | [m68k], [ARCHTYPE="m68k"], | ||
29 | + [riscv*], [ARCHTYPE="riscv"], | ||
30 | [ARCHTYPE="unknown"] | ||
31 | ) | ||
32 | |||
33 | diff --git a/include/Makefile.am b/include/Makefile.am | ||
34 | index dcdf304b..36667b43 100644 | ||
35 | --- a/include/Makefile.am | ||
36 | +++ b/include/Makefile.am | ||
37 | @@ -27,6 +27,7 @@ EXTRA_DIST = urcu/arch/aarch64.h \ | ||
38 | urcu/arch/mips.h \ | ||
39 | urcu/arch/nios2.h \ | ||
40 | urcu/arch/ppc.h \ | ||
41 | + urcu/arch/riscv.h \ | ||
42 | urcu/arch/s390.h \ | ||
43 | urcu/arch/sparc64.h \ | ||
44 | urcu/arch/tile.h \ | ||
45 | @@ -43,6 +44,7 @@ EXTRA_DIST = urcu/arch/aarch64.h \ | ||
46 | urcu/uatomic/mips.h \ | ||
47 | urcu/uatomic/nios2.h \ | ||
48 | urcu/uatomic/ppc.h \ | ||
49 | + urcu/uatomic/riscv.h \ | ||
50 | urcu/uatomic/s390.h \ | ||
51 | urcu/uatomic/sparc64.h \ | ||
52 | urcu/uatomic/tile.h \ | ||
53 | diff --git a/include/urcu/arch/riscv.h b/include/urcu/arch/riscv.h | ||
54 | new file mode 100644 | ||
55 | index 00000000..1fd7d62b | ||
56 | --- /dev/null | ||
57 | +++ b/include/urcu/arch/riscv.h | ||
58 | @@ -0,0 +1,49 @@ | ||
59 | +#ifndef _URCU_ARCH_RISCV_H | ||
60 | +#define _URCU_ARCH_RISCV_H | ||
61 | + | ||
62 | +/* | ||
63 | + * arch/riscv.h: definitions for the RISC-V architecture | ||
64 | + * | ||
65 | + * Copyright (c) 2018 Michael Jeanson <mjeanson@efficios.com> | ||
66 | + * | ||
67 | + * This library is free software; you can redistribute it and/or | ||
68 | + * modify it under the terms of the GNU Lesser General Public | ||
69 | + * License as published by the Free Software Foundation; either | ||
70 | + * version 2.1 of the License, or (at your option) any later version. | ||
71 | + * | ||
72 | + * This library is distributed in the hope that it will be useful, | ||
73 | + * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
74 | + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | ||
75 | + * Lesser General Public License for more details. | ||
76 | + * | ||
77 | + * You should have received a copy of the GNU Lesser General Public | ||
78 | + * License along with this library; if not, write to the Free Software | ||
79 | + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA | ||
80 | + */ | ||
81 | + | ||
82 | +#include <urcu/compiler.h> | ||
83 | +#include <urcu/config.h> | ||
84 | +#include <urcu/syscall-compat.h> | ||
85 | + | ||
86 | +#ifdef __cplusplus | ||
87 | +extern "C" { | ||
88 | +#endif | ||
89 | + | ||
90 | +#include <stdlib.h> | ||
91 | +#include <sys/time.h> | ||
92 | + | ||
93 | +/* | ||
94 | + * On Linux, define the membarrier system call number if not yet available in | ||
95 | + * the system headers. | ||
96 | + */ | ||
97 | +#if (defined(__linux__) && !defined(__NR_membarrier)) | ||
98 | +#define __NR_membarrier 283 | ||
99 | +#endif | ||
100 | + | ||
101 | +#ifdef __cplusplus | ||
102 | +} | ||
103 | +#endif | ||
104 | + | ||
105 | +#include <urcu/arch/generic.h> | ||
106 | + | ||
107 | +#endif /* _URCU_ARCH_RISCV_H */ | ||
108 | diff --git a/include/urcu/uatomic/riscv.h b/include/urcu/uatomic/riscv.h | ||
109 | new file mode 100644 | ||
110 | index 00000000..a6700e17 | ||
111 | --- /dev/null | ||
112 | +++ b/include/urcu/uatomic/riscv.h | ||
113 | @@ -0,0 +1,44 @@ | ||
114 | +/* | ||
115 | + * Atomic exchange operations for the RISC-V architecture. Let GCC do it. | ||
116 | + * | ||
117 | + * Copyright (c) 2018 Michael Jeanson <mjeanson@efficios.com> | ||
118 | + * | ||
119 | + * Permission is hereby granted, free of charge, to any person obtaining a copy | ||
120 | + * of this software and associated documentation files (the "Software"), to | ||
121 | + * deal in the Software without restriction, including without limitation the | ||
122 | + * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or | ||
123 | + * sell copies of the Software, and to permit persons to whom the Software is | ||
124 | + * furnished to do so, subject to the following conditions: | ||
125 | + * | ||
126 | + * The above copyright notice and this permission notice shall be included in | ||
127 | + * all copies or substantial portions of the Software. | ||
128 | + * | ||
129 | + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
130 | + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
131 | + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
132 | + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
133 | + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING | ||
134 | + * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS | ||
135 | + * IN THE SOFTWARE. | ||
136 | + */ | ||
137 | + | ||
138 | +#ifndef _URCU_ARCH_UATOMIC_RISCV_H | ||
139 | +#define _URCU_ARCH_UATOMIC_RISCV_H | ||
140 | + | ||
141 | +#include <urcu/compiler.h> | ||
142 | +#include <urcu/system.h> | ||
143 | + | ||
144 | +#ifdef __cplusplus | ||
145 | +extern "C" { | ||
146 | +#endif | ||
147 | + | ||
148 | +#define UATOMIC_HAS_ATOMIC_BYTE | ||
149 | +#define UATOMIC_HAS_ATOMIC_SHORT | ||
150 | + | ||
151 | +#ifdef __cplusplus | ||
152 | +} | ||
153 | +#endif | ||
154 | + | ||
155 | +#include <urcu/uatomic/generic.h> | ||
156 | + | ||
157 | +#endif /* _URCU_ARCH_UATOMIC_RISCV_H */ | ||
diff --git a/meta/recipes-support/liburcu/liburcu_0.10.2.bb b/meta/recipes-support/liburcu/liburcu_0.11.0.bb index b4b6e2323d..df41ffc73e 100644 --- a/meta/recipes-support/liburcu/liburcu_0.10.2.bb +++ b/meta/recipes-support/liburcu/liburcu_0.11.0.bb | |||
@@ -4,15 +4,13 @@ BUGTRACKER = "http://lttng.org/project/issues" | |||
4 | 4 | ||
5 | LICENSE = "LGPLv2.1+ & MIT-style" | 5 | LICENSE = "LGPLv2.1+ & MIT-style" |
6 | LIC_FILES_CHKSUM = "file://LICENSE;md5=e548d28737289d75a8f1e01ba2fd7825 \ | 6 | LIC_FILES_CHKSUM = "file://LICENSE;md5=e548d28737289d75a8f1e01ba2fd7825 \ |
7 | file://src/urcu.h;beginline=4;endline=32;md5=4de0d68d3a997643715036d2209ae1d9 \ | 7 | file://include/urcu/urcu.h;beginline=4;endline=32;md5=4de0d68d3a997643715036d2209ae1d9 \ |
8 | file://include/urcu/uatomic/x86.h;beginline=4;endline=21;md5=58e50bbd8a2f073bb5500e6554af0d0b" | 8 | file://include/urcu/uatomic/x86.h;beginline=4;endline=21;md5=58e50bbd8a2f073bb5500e6554af0d0b" |
9 | 9 | ||
10 | SRC_URI = "http://lttng.org/files/urcu/userspace-rcu-${PV}.tar.bz2 \ | 10 | SRC_URI = "http://lttng.org/files/urcu/userspace-rcu-${PV}.tar.bz2" |
11 | file://Add-support-for-the-RISC-V-architecture.patch \ | ||
12 | " | ||
13 | 11 | ||
14 | SRC_URI[md5sum] = "7c424c5183ec009d87e0f70c23e92f1b" | 12 | SRC_URI[md5sum] = "102184afa99e64e3ecefb320092ac1e4" |
15 | SRC_URI[sha256sum] = "b3f6888daf6fe02c1f8097f4a0898e41b5fe9975e121dc792b9ddef4b17261cc" | 13 | SRC_URI[sha256sum] = "1af5694c4f6266f4eba5eb4b832daee600d1e7055fce6da5d514d735d72eb3e7" |
16 | 14 | ||
17 | S = "${WORKDIR}/userspace-rcu-${PV}" | 15 | S = "${WORKDIR}/userspace-rcu-${PV}" |
18 | inherit autotools multilib_header | 16 | inherit autotools multilib_header |