3ce82c330b
This is an automated DistroBaker update from upstream sources. If you do not know what this is about or would like to opt out, contact the OSCI team. Source: https://src.fedoraproject.org/rpms/gdb.git#ed8730b4d9720b8c71cb7de29ce2165f730955cc
26 lines
925 B
Diff
26 lines
925 B
Diff
From FEDORA_PATCHES Mon Sep 17 00:00:00 2001
|
|
From: Fedora GDB patches <invalid@email.com>
|
|
Date: Fri, 27 Oct 2017 21:07:50 +0200
|
|
Subject: gdb-moribund-utrace-workaround.patch
|
|
|
|
;; Workaround non-stop moribund locations exploited by kernel utrace (BZ 590623).
|
|
;;=push+jan: Currently it is still not fully safe.
|
|
|
|
https://bugzilla.redhat.com/show_bug.cgi?id=590623
|
|
http://sources.redhat.com/bugzilla/show_bug.cgi?id=11593
|
|
|
|
Bug in FSF GDB exploited by the ptrace-on-utrace interaction.
|
|
|
|
diff --git a/gdb/breakpoint.c b/gdb/breakpoint.c
|
|
--- a/gdb/breakpoint.c
|
|
+++ b/gdb/breakpoint.c
|
|
@@ -11948,6 +11948,8 @@ update_global_location_list (enum ugll_insert_mode insert_mode)
|
|
= 3 * (thread_count (proc_target) + 1);
|
|
else
|
|
old_loc->events_till_retirement = 1;
|
|
+ /* Red Hat Bug 590623. */
|
|
+ old_loc->events_till_retirement *= 10;
|
|
old_loc->owner = NULL;
|
|
|
|
moribund_locations.push_back (old_loc);
|