Note: This bug is displayed in read-only format because
the product is no longer active in Red Hat Bugzilla.
RHEL Engineering is moving the tracking of its product development work on RHEL 6 through RHEL 9 to Red Hat Jira (issues.redhat.com). If you're a Red Hat customer, please continue to file support cases via the Red Hat customer portal. If you're not, please head to the "RHEL project" in Red Hat Jira and file new tickets here. Individual Bugzilla bugs in the statuses "NEW", "ASSIGNED", and "POST" are being migrated throughout September 2023. Bugs of Red Hat partners with an assigned Engineering Partner Manager (EPM) are migrated in late September as per pre-agreed dates. Bugs against components "kernel", "kernel-rt", and "kpatch" are only migrated if still in "NEW" or "ASSIGNED". If you cannot log in to RH Jira, please consult article #7032570. That failing, please send an e-mail to the RH Jira admins at rh-issues@redhat.com to troubleshoot your issue as a user management inquiry. The email creates a ServiceNow ticket with Red Hat. Individual Bugzilla bugs that are migrated will be moved to status "CLOSED", resolution "MIGRATED", and set with "MigratedToJIRA" in "Keywords". The link to the successor Jira issue will be found under "Links", have a little "two-footprint" icon next to it, and direct you to the "RHEL project" in Red Hat Jira (issue links are of type "https://issues.redhat.com/browse/RHEL-XXXX", where "X" is a digit). This same link will be available in a blue banner at the top of the page informing you that that bug has been migrated.
I cannot rebuild trace-cmd from source against the current buildroot. The errors start with:
In file included from /usr/include/traceevent/event-utils.h:13,
from trace-hooks.c:12:
/usr/include/traceevent/event-parse.h:25:8: error: redefinition of 'struct tep_record'
25 | struct tep_record {
| ^~~~~~~~~~
In file included from /builddir/build/BUILD/trace-cmd-v2.9.2/lib/trace-cmd/include/private/trace-cmd-private.h:11,
from trace-hooks.c:11:
/builddir/build/BUILD/trace-cmd-v2.9.2/include/traceevent/event-parse.h:26:8: note: originally defined here
26 | struct tep_record {
| ^~~~~~~~~~
In file included from /usr/include/traceevent/event-utils.h:13,
from trace-hooks.c:12:
/usr/include/traceevent/event-parse.h:48:15: error: conflicting types for 'tep_event_handler_func'; have 'int (*)(struct trace_seq *, struct tep_record *, struct tep_event *, void *)'
48 | typedef int (*tep_event_handler_func)(struct trace_seq *s,
| ^~~~~~~~~~~~~~~~~~~~~~
In file included from /builddir/build/BUILD/trace-cmd-v2.9.2/lib/trace-cmd/include/private/trace-cmd-private.h:11,
from trace-hooks.c:11:
/builddir/build/BUILD/trace-cmd-v2.9.2/include/traceevent/event-parse.h:49:15: note: previous declaration of 'tep_event_handler_func' with type 'tep_event_handler_func' {aka 'int (*)(struct trace_seq *, struct tep_record *, struct tep_event *, void *)'}
49 | typedef int (*tep_event_handler_func)(struct trace_seq *s,
| ^~~~~~~~~~~~~~~~~~~~~~
In file included from /usr/include/traceevent/event-utils.h:13,
from trace-hooks.c:12:
/usr/include/traceevent/event-parse.h:56:8: error: redefinition of 'struct tep_plugin_option'
56 | struct tep_plugin_option {
| ^~~~~~~~~~~~~~~~~
In file included from /builddir/build/BUILD/trace-cmd-v2.9.2/lib/trace-cmd/include/private/trace-cmd-private.h:11,
from trace-hooks.c:11:
/builddir/build/BUILD/trace-cmd-v2.9.2/include/traceevent/event-parse.h:57:8: note: originally defined here
57 | struct tep_plugin_option {
| ^~~~~~~~~~~~~~~~~
In file included from /usr/include/traceevent/event-utils.h:13,
from trace-hooks.c:12:
I believe it's because these two headers now have conflicting inclusion guards:
#ifndef _PARSE_EVENTS_H
#define _PARSE_EVENTS_H
vs
#ifndef __TEP_PARSE_EVENTS_H
#define __TEP_PARSE_EVENTS_H
I believe upstream fixed it by dropping these headers in this commit:
commit 6ad8a8a250abaaad0f674a9700cc89a973ba708c
Author: Steven Rostedt (VMware) <rostedt>
Date: Fri Apr 9 15:47:30 2021 -0400
trace-cmd: Remove last elements of local libtracefs and libtraceevent
Even though trace-cmd no longer holds the libraries libtracefs and
libtraceevent, there were some header files still lingering and worse,
still being used!
Link: https://lore.kernel.org/linux-trace-devel/20210409154730.2c24e7d1@gandalf.local.home
Signed-off-by: Steven Rostedt (VMware) <rostedt>
Since the problem described in this bug report should be
resolved in a recent advisory, it has been closed with a
resolution of ERRATA.
For information on the advisory (trace-cmd bug fix and enhancement update), and where to find the updated
files, follow the link below.
If the solution does not work for you, open a new bug report.
https://access.redhat.com/errata/RHBA-2023:6690
I cannot rebuild trace-cmd from source against the current buildroot. The errors start with: In file included from /usr/include/traceevent/event-utils.h:13, from trace-hooks.c:12: /usr/include/traceevent/event-parse.h:25:8: error: redefinition of 'struct tep_record' 25 | struct tep_record { | ^~~~~~~~~~ In file included from /builddir/build/BUILD/trace-cmd-v2.9.2/lib/trace-cmd/include/private/trace-cmd-private.h:11, from trace-hooks.c:11: /builddir/build/BUILD/trace-cmd-v2.9.2/include/traceevent/event-parse.h:26:8: note: originally defined here 26 | struct tep_record { | ^~~~~~~~~~ In file included from /usr/include/traceevent/event-utils.h:13, from trace-hooks.c:12: /usr/include/traceevent/event-parse.h:48:15: error: conflicting types for 'tep_event_handler_func'; have 'int (*)(struct trace_seq *, struct tep_record *, struct tep_event *, void *)' 48 | typedef int (*tep_event_handler_func)(struct trace_seq *s, | ^~~~~~~~~~~~~~~~~~~~~~ In file included from /builddir/build/BUILD/trace-cmd-v2.9.2/lib/trace-cmd/include/private/trace-cmd-private.h:11, from trace-hooks.c:11: /builddir/build/BUILD/trace-cmd-v2.9.2/include/traceevent/event-parse.h:49:15: note: previous declaration of 'tep_event_handler_func' with type 'tep_event_handler_func' {aka 'int (*)(struct trace_seq *, struct tep_record *, struct tep_event *, void *)'} 49 | typedef int (*tep_event_handler_func)(struct trace_seq *s, | ^~~~~~~~~~~~~~~~~~~~~~ In file included from /usr/include/traceevent/event-utils.h:13, from trace-hooks.c:12: /usr/include/traceevent/event-parse.h:56:8: error: redefinition of 'struct tep_plugin_option' 56 | struct tep_plugin_option { | ^~~~~~~~~~~~~~~~~ In file included from /builddir/build/BUILD/trace-cmd-v2.9.2/lib/trace-cmd/include/private/trace-cmd-private.h:11, from trace-hooks.c:11: /builddir/build/BUILD/trace-cmd-v2.9.2/include/traceevent/event-parse.h:57:8: note: originally defined here 57 | struct tep_plugin_option { | ^~~~~~~~~~~~~~~~~ In file included from /usr/include/traceevent/event-utils.h:13, from trace-hooks.c:12: I believe it's because these two headers now have conflicting inclusion guards: #ifndef _PARSE_EVENTS_H #define _PARSE_EVENTS_H vs #ifndef __TEP_PARSE_EVENTS_H #define __TEP_PARSE_EVENTS_H I believe upstream fixed it by dropping these headers in this commit: commit 6ad8a8a250abaaad0f674a9700cc89a973ba708c Author: Steven Rostedt (VMware) <rostedt> Date: Fri Apr 9 15:47:30 2021 -0400 trace-cmd: Remove last elements of local libtracefs and libtraceevent Even though trace-cmd no longer holds the libraries libtracefs and libtraceevent, there were some header files still lingering and worse, still being used! Link: https://lore.kernel.org/linux-trace-devel/20210409154730.2c24e7d1@gandalf.local.home Signed-off-by: Steven Rostedt (VMware) <rostedt>