From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 9979 invoked by alias); 12 Dec 2017 15:04:57 -0000 Mailing-List: contact systemtap-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Post: List-Help: , Sender: systemtap-owner@sourceware.org Received: (qmail 9800 invoked by uid 48); 12 Dec 2017 15:04:55 -0000 From: "dsmith at redhat dot com" To: systemtap@sourceware.org Subject: [Bug runtime/22582] SystemTap 3.2 stap script compilation error opt Date: Tue, 12 Dec 2017 15:04:00 -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: dsmith at redhat dot com X-Bugzilla-Status: WAITING 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 X-SW-Source: 2017-q4/txt/msg00192.txt.bz2 https://sourceware.org/bugzilla/show_bug.cgi?id=3D22582 --- Comment #5 from David Smith --- I took a look at your attachments. Your stapconf_1ddada75a347accc585e3d1a06438f1e_713.h file doesn't contain STAPCONF_UTRACE_VIA_TRACEPOINTS. This means that your kernel doesn't support the 5 tracepoints systemtap needs to do userspace tracing. They are: sched_process_fork, sched_process_exit, sched_process_exec, sys_enter, and sys_exit You can check for these tracepoints via the following: =3D=3D=3D # stap -l 'kernel.trace("sched_process_*")' kernel.trace("sched:sched_process_exec") kernel.trace("sched:sched_process_exit") kernel.trace("sched:sched_process_fork") kernel.trace("sched:sched_process_free") kernel.trace("sched:sched_process_wait") # stap -l 'kernel.trace("sys_*")' kernel.trace("raw_syscalls:sys_enter") kernel.trace("raw_syscalls:sys_exit") =3D=3D=3D If the sys_enter/sys_exit tracepoints are missing, that would mean your ker= nel doesn't have CONFIG_HAVE_SYSCALL_TRACEPOINTS. --=20 You are receiving this mail because: You are the assignee for the bug.