From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id 63FCF3858C31; Wed, 20 Mar 2024 14:19:26 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 63FCF3858C31 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=sourceware.org; s=default; t=1710944366; bh=E99ZoyHBnR7aG5EeVnRhwbKJv7F88bjv6GdO/dgQejw=; h=From:To:Subject:Date:In-Reply-To:References:From; b=r1Q0Ad5IM59Ox27Awj8kgz5P8Y3g3ujYADhYu+E647rhzSxdF6LMSNsCNZEbJrx1Q baZ2dl+Xtlxtd6LuS52B7lTEWY9vXfo8hQ7l4QERoiSfoqRCkrvmW2t7mHud8WO10y KHE8Gsj6oDybMgi65PuelUbxjS1E/xMKaD2Nr05E= From: "wcohen at redhat dot com" To: systemtap@sourceware.org Subject: [Bug runtime/31500] stapio exited with irqs disabled Date: Wed, 20 Mar 2024 14:19:24 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: systemtap X-Bugzilla-Component: runtime X-Bugzilla-Version: unspecified X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: wcohen at redhat dot com X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P2 X-Bugzilla-Assigned-To: systemtap at sourceware dot org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://sourceware.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 List-Id: https://sourceware.org/bugzilla/show_bug.cgi?id=3D31500 --- Comment #5 from William Cohen --- On the machine that observed the problem poll_map.exp is using -g to compile poll_map.stp. poll_map.stp uses 'kernel.function("vfs_*").call' insert kpro= bes. With -g mode one of the probe points it attempts to instrument is 'kernel.function("vfs_caches_init").call'. This is an initialization funct= ion on a page that is freed up after initialization. This problem appears to o= ccur on one particular machine. I suspect that it might happening on other mach= ines for other for tests/functions. It might be helpful to look to see if anyth= ing in /proc/kallsyms match up with the lower 24-bits of ffffffffa64a65c0 (4a65= c0) on the machine that the problem initially occurred on: sudo cat /proc/kallsyms |grep 4a65c0 Then take a look to see if any of those functions have and __init in front = of the of them using the function lookup on https://elixir.bootlin.com/linux/v6.8.1/source. --=20 You are receiving this mail because: You are the assignee for the bug.=