diff options
author | Sebastian Andrzej Siewior <bigeasy@linutronix.de> | 2017-10-17 17:13:28 +0200 |
---|---|---|
committer | Sebastian Andrzej Siewior <bigeasy@linutronix.de> | 2017-10-17 17:13:28 +0200 |
commit | 4aca7bf0252fb2fd2017ac18d3997776162a99c0 (patch) | |
tree | ce0b44cfbff890448774f7878e962870f354bd7c /patches/0002-tracing-Add-support-to-detect-and-avoid-duplicates.patch | |
parent | 163c99cd5cc3ffff6f0ac886236223e72ae989fb (diff) | |
download | linux-rt-db58c74ffbc7fb1c568c9155abe39ccf16c4b9d2.tar.gz |
[ANNOUNCE] v4.13.7-rt1v4.13.7-rt1-patches
Dear RT folks!
I'm pleased to announce the v4.13.7-rt1 patch set.
Changes since v4.11.12-rt16:
- Rebase to v4.13.7
- We have now only the reader bias version of RWLOCK. In v4.11 it was
possible to choose between both implementations but since the reader
bias version makes no problems it is now the only implementation.
- The lockdep self test is now disabled. While it produced some false
positives on v4.11 it now completly locks up the system and needs
investigation before re-enabling.
Known issues
None
You can get this release via the git tree at:
git://git.kernel.org/pub/scm/linux/kernel/git/rt/linux-rt-devel.git v4.13.7-rt1
The RT patch against v4.13.7 can be found here:
https://cdn.kernel.org/pub/linux/kernel/projects/rt/4.13/older/patch-4.13.7-rt1.patch.xz
The split quilt queue is available at:
https://cdn.kernel.org/pub/linux/kernel/projects/rt/4.13/older/patches-4.13.7-rt1.tar.xz
Sebastian
Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de>
Diffstat (limited to 'patches/0002-tracing-Add-support-to-detect-and-avoid-duplicates.patch')
-rw-r--r-- | patches/0002-tracing-Add-support-to-detect-and-avoid-duplicates.patch | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/patches/0002-tracing-Add-support-to-detect-and-avoid-duplicates.patch b/patches/0002-tracing-Add-support-to-detect-and-avoid-duplicates.patch index 17e926674fef..78c4112ee8d6 100644 --- a/patches/0002-tracing-Add-support-to-detect-and-avoid-duplicates.patch +++ b/patches/0002-tracing-Add-support-to-detect-and-avoid-duplicates.patch @@ -48,7 +48,7 @@ Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> --- a/kernel/trace/tracing_map.c +++ b/kernel/trace/tracing_map.c -@@ -411,6 +411,7 @@ static inline struct tracing_map_elt * +@@ -414,6 +414,7 @@ static inline struct tracing_map_elt * __tracing_map_insert(struct tracing_map *map, void *key, bool lookup_only) { u32 idx, key_hash, test_key; @@ -56,7 +56,7 @@ Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> struct tracing_map_entry *entry; key_hash = jhash(key, map->key_size, 0); -@@ -423,10 +424,31 @@ static inline struct tracing_map_elt * +@@ -426,10 +427,31 @@ static inline struct tracing_map_elt * entry = TRACING_MAP_ENTRY(map->map, idx); test_key = entry->key; @@ -92,7 +92,7 @@ Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> } if (!test_key) { -@@ -448,6 +470,13 @@ static inline struct tracing_map_elt * +@@ -451,6 +473,13 @@ static inline struct tracing_map_elt * atomic64_inc(&map->hits); return entry->val; |