Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id ; Tue, 22 Oct 2002 19:27:10 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id ; Tue, 22 Oct 2002 19:27:10 -0400 Received: from mailout05.sul.t-online.com ([194.25.134.82]:7304 "EHLO mailout05.sul.t-online.com") by vger.kernel.org with ESMTP id ; Tue, 22 Oct 2002 19:27:08 -0400 To: linux-kernel@vger.kernel.org Subject: 2.5.44: How to decode call trace From: Olaf Dietsche Date: Wed, 23 Oct 2002 01:33:04 +0200 Message-ID: <87elai82xb.fsf@goat.bogus.local> User-Agent: Gnus/5.090005 (Oort Gnus v0.05) XEmacs/21.4 (Honest Recruiter, i386-debian-linux) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: linux-kernel-owner@vger.kernel.org X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1891 Lines: 36 I have the following call tree: Oct 22 22:35:36 goat kernel: rm D 00000246 0 615 387 (NOTLB) Oct 22 22:35:36 goat kernel: Call Trace: Oct 22 22:35:36 goat kernel: [] __down+0x67/0xb8 Oct 22 22:35:36 goat kernel: [] default_wake_function+0x0/0x34 Oct 22 22:35:36 goat kernel: [] __down_failed+0x8/0xc Oct 22 22:35:36 goat kernel: [] .text.lock.namei+0x5/0x174 Oct 22 22:35:36 goat kernel: [] do_lookup+0x9c/0x1bc Oct 22 22:35:36 goat kernel: [] link_path_walk+0x556/0x868 Oct 22 22:35:36 goat kernel: [] ext2_commit_chunk+0x38/0x6c Oct 22 22:35:36 goat kernel: [] name.810+0xd/0x10 [fscaps] Oct 22 22:35:36 goat kernel: [] ext2_commit_chunk+0x65/0x6c Oct 22 22:35:36 goat kernel: [] name.810+0x0/0x10 [fscaps] Oct 22 22:35:36 goat kernel: [] path_walk+0x27/0x28 Oct 22 22:35:36 goat kernel: [] __fscap_lookup+0x3f/0x40 [fscaps] Oct 22 22:35:36 goat kernel: [] fscap_drop_op+0x1a/0x5c [fscaps] Oct 22 22:35:36 goat kernel: [] vfs_unlink+0x14e/0x178 Oct 22 22:35:36 goat kernel: [] sys_unlink+0xaa/0x120 Oct 22 22:35:36 goat kernel: [] syscall_call+0x7/0xb and this is the code: static int __fscap_lookup(struct vfsmount *mnt, struct nameidata *nd) { static char name[] = ".capabilities"; nd->mnt = mntget(mnt); nd->dentry = dget(mnt->mnt_sb->s_root); nd->flags = 0; return path_walk(name, nd); } What does .text.lock.namei and name.810 mean? Is there a way to get the line number out of these hex values? TIA Regards, Olaf. - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/