Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753909AbcDUQOG (ORCPT ); Thu, 21 Apr 2016 12:14:06 -0400 Received: from mail-yw0-f181.google.com ([209.85.161.181]:32956 "EHLO mail-yw0-f181.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752649AbcDUQOC (ORCPT ); Thu, 21 Apr 2016 12:14:02 -0400 Date: Thu, 21 Apr 2016 12:14:00 -0400 From: Tejun Heo To: Dmitry Vyukov Cc: Alexander Viro , "linux-fsdevel@vger.kernel.org" , LKML , syzkaller , Kostya Serebryany , Alexander Potapenko Subject: Re: fs: GPF in locked_inode_to_wb_and_lock_list Message-ID: <20160421161400.GN7822@mtj.duckdns.org> References: <20160420211456.GE4775@htj.duckdns.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.24 (2015-08-30) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 832 Lines: 21 Hello, On Thu, Apr 21, 2016 at 10:25:12AM +0200, Dmitry Vyukov wrote: > I use this script for symbolization: > https://github.com/google/sanitizers/blob/master/address-sanitizer/tools/kasan_symbolize.py > It invokes addr2line to provide file:line info, adds inline frames, > strips ? frames (are they ever useful?) and strips timestamps. Heh, sometimes they are. They obviously are useful when backlinks are broken for some reason. Through the remnants of the old call stacks, they also can sometimes tell the history of the task - where it was before it got to the current backtrace. It isn't reliable at all but I can recall several occasions where they were useful in root causing issues. It *might* make a sense to have an option to not strip them. And, yeah, I'm all for it being in the kernel tree. Thanks. -- tejun