From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 6958 invoked by alias); 26 Sep 2014 12:25:38 -0000 Mailing-List: contact gdb-patches-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sourceware.org Received: (qmail 6802 invoked by uid 89); 26 Sep 2014 12:25:37 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-2.3 required=5.0 tests=AWL,BAYES_00,RP_MATCHES_RCVD,SPF_HELO_PASS autolearn=ham version=3.3.2 X-HELO: mx1.redhat.com Received: from mx1.redhat.com (HELO mx1.redhat.com) (209.132.183.28) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES256-GCM-SHA384 encrypted) ESMTPS; Fri, 26 Sep 2014 12:25:32 +0000 Received: from int-mx13.intmail.prod.int.phx2.redhat.com (int-mx13.intmail.prod.int.phx2.redhat.com [10.5.11.26]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id s8QCPVT9018684 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=FAIL) for ; Fri, 26 Sep 2014 08:25:31 -0400 Received: from brno.lan (ovpn01.gateway.prod.ext.ams2.redhat.com [10.39.146.11]) by int-mx13.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id s8QCPTNL001088 for ; Fri, 26 Sep 2014 08:25:30 -0400 From: Pedro Alves To: gdb-patches@sourceware.org Subject: [PATCH 0/3] Work around PR libc/13097 "linux-vdso.so.1" Date: Fri, 26 Sep 2014 12:25:00 -0000 Message-Id: <1411734329-4707-1-git-send-email-palves@redhat.com> X-SW-Source: 2014-09/txt/msg00780.txt.bz2 Following up to: https://sourceware.org/ml/gdb-patches/2014-09/msg00777.html This series works around PR libc/13097 in GDB. See patch 2/3 for details. Pedro Alves (3): Split vDSO range lookup to a gdbarch hook Work around PR libc/13097 "linux-vdso.so.1" Cache the vsyscall/vDSO range per-inferior gdb/arch-utils.c | 8 ++ gdb/arch-utils.h | 4 + gdb/gdbarch.c | 23 ++++++ gdb/gdbarch.h | 10 +++ gdb/gdbarch.sh | 7 ++ gdb/linux-tdep.c | 133 ++++++++++++++++++++++++++++++++ gdb/memrange.c | 9 +++ gdb/memrange.h | 5 ++ gdb/solib-svr4.c | 81 ++++++++++++++++++- gdb/symfile-mem.c | 31 ++------ gdb/testsuite/gdb.base/vdso-warning.c | 22 ++++++ gdb/testsuite/gdb.base/vdso-warning.exp | 54 +++++++++++++ 12 files changed, 359 insertions(+), 28 deletions(-) create mode 100644 gdb/testsuite/gdb.base/vdso-warning.c create mode 100644 gdb/testsuite/gdb.base/vdso-warning.exp -- 1.9.3