From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 21920 invoked by alias); 25 Apr 2017 19:41:33 -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 21904 invoked by uid 89); 25 Apr 2017 19:41:33 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-1.4 required=5.0 tests=BAYES_00,RCVD_IN_DNSWL_NONE,RCVD_IN_SORBS_SPAM,SPF_PASS autolearn=no version=3.3.2 spammy=reasonably X-HELO: gproxy7-pub.mail.unifiedlayer.com Received: from gproxy7-pub.mail.unifiedlayer.com (HELO gproxy7-pub.mail.unifiedlayer.com) (70.40.196.235) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with SMTP; Tue, 25 Apr 2017 19:41:32 +0000 Received: (qmail 22625 invoked by uid 0); 25 Apr 2017 19:41:31 -0000 Received: from unknown (HELO cmgw3) (10.0.90.84) by gproxy7.mail.unifiedlayer.com with SMTP; 25 Apr 2017 19:41:31 -0000 Received: from box522.bluehost.com ([74.220.219.122]) by cmgw3 with id CjhU1v00d2f2jeq01jhXnm; Tue, 25 Apr 2017 13:41:31 -0600 X-Authority-Analysis: v=2.2 cv=VKStp5HX c=1 sm=1 tr=0 a=GsOEXm/OWkKvwdLVJsfwcA==:117 a=GsOEXm/OWkKvwdLVJsfwcA==:17 a=AzvcPWV-tVgA:10 a=N8O0YCqZOnlNLW5ABG4A:9 Received: from 75-166-63-71.hlrn.qwest.net ([75.166.63.71]:40598 helo=bapiya.Home) by box522.bluehost.com with esmtpsa (TLSv1.2:ECDHE-RSA-AES256-GCM-SHA384:256) (Exim 4.87) (envelope-from ) id 1d36L2-0000OG-F8 for gdb-patches@sourceware.org; Tue, 25 Apr 2017 13:41:28 -0600 From: Tom Tromey To: gdb-patches@sourceware.org Subject: [RFA 00/10] various frame filter fixes and cleanups Date: Tue, 25 Apr 2017 19:41:00 -0000 Message-Id: <20170425194113.17862-1-tom@tromey.com> X-BWhitelist: no X-Exim-ID: 1d36L2-0000OG-F8 X-Source-Sender: 75-166-63-71.hlrn.qwest.net (bapiya.Home) [75.166.63.71]:40598 X-Source-Auth: tom+tromey.com X-Email-Count: 1 X-Source-Cap: ZWx5bnJvYmk7ZWx5bnJvYmk7Ym94NTIyLmJsdWVob3N0LmNvbQ== X-SW-Source: 2017-04/txt/msg00671.txt.bz2 This series fixes a few frame filter bugs. Some of them have been reported, but some not. There are some documentation changes in patch #1 and patch #3. For the most part I think each patch is reasonably self-explanatory. However, there are a couple of things to note here: * You might wonder about the choice of constant in patch #3. I chose 32 rather than 16 so as not to conflict with my earlier frame-filter patch, in review. * In some cases writing a test seemed pretty difficult, and also maybe low-impact, so I didn't. This applies to patch #6, #9, and #10. A future direction for patch #3 would be to add a new "set" command so that a user can choose "bt elide" as the default. Tested on the buildbot. Tom