diff mbox series

libtracefs: Remove "traceevent/" from referencing libtraceevent headers

Message ID 20210716220649.46aab3f7@rorschach.local.home (mailing list archive)
State Accepted
Commit 880885d9c22e9c89f6713805399e93fe799959b3
Headers show
Series libtracefs: Remove "traceevent/" from referencing libtraceevent headers | expand

Commit Message

Steven Rostedt July 17, 2021, 2:06 a.m. UTC
From: "Steven Rostedt (VMware)" <rostedt@goodmis.org>

"pkg-config --cflags --libtraceevent" produces the full path to the
libtraceevent headers (including the "traceevent/" portion). There is no
need to add that part in the headers.

Particularly the one in the main tracefs.h that trace-cmd uses. The
version 2.9.4 causes the header to include the libtraceevent/event-parse.h
that is local, when it should be using the system headers, and causes it
to fail the build.

Signed-off-by: Steven Rostedt (VMware) <rostedt@goodmis.org>
---
 include/tracefs.h    | 2 +-
 src/tracefs-events.c | 2 +-
 src/tracefs-utils.c  | 4 ++--
 3 files changed, 4 insertions(+), 4 deletions(-)

Comments

Steven Rostedt July 17, 2021, 3 a.m. UTC | #1
John,

It was libtracefs that had the flaw that made trace-cmd 2.9 fail to build.
This patch fixes it. I pushed it to the main branch, and also released
a libtracefs-1.2.3 that has this fix as well.

-- Steve


On Fri, 16 Jul 2021 22:06:49 -0400
Steven Rostedt <rostedt@goodmis.org> wrote:

> From: "Steven Rostedt (VMware)" <rostedt@goodmis.org>
> 
> "pkg-config --cflags --libtraceevent" produces the full path to the
> libtraceevent headers (including the "traceevent/" portion). There is no
> need to add that part in the headers.
> 
> Particularly the one in the main tracefs.h that trace-cmd uses. The
> version 2.9.4 causes the header to include the libtraceevent/event-parse.h
> that is local, when it should be using the system headers, and causes it
> to fail the build.
> 
> Signed-off-by: Steven Rostedt (VMware) <rostedt@goodmis.org>
> ---
>  include/tracefs.h    | 2 +-
>  src/tracefs-events.c | 2 +-
>  src/tracefs-utils.c  | 4 ++--
>  3 files changed, 4 insertions(+), 4 deletions(-)
> 
> diff --git a/include/tracefs.h b/include/tracefs.h
> index 7e1927b..2649417 100644
> --- a/include/tracefs.h
> +++ b/include/tracefs.h
> @@ -9,7 +9,7 @@
>  #include <sys/stat.h>
>  #include <fcntl.h>
>  #include <sched.h>
> -#include <traceevent/event-parse.h>
> +#include <event-parse.h>
>  
>  char *tracefs_get_tracing_file(const char *name);
>  void tracefs_put_tracing_file(char *name);
> diff --git a/src/tracefs-events.c b/src/tracefs-events.c
> index 7febc2a..8d84838 100644
> --- a/src/tracefs-events.c
> +++ b/src/tracefs-events.c
> @@ -15,7 +15,7 @@
>  #include <fcntl.h>
>  #include <limits.h>
>  
> -#include <traceevent/kbuffer.h>
> +#include <kbuffer.h>
>  
>  #include "tracefs.h"
>  #include "tracefs-local.h"
> diff --git a/src/tracefs-utils.c b/src/tracefs-utils.c
> index 6750336..600cdf2 100644
> --- a/src/tracefs-utils.c
> +++ b/src/tracefs-utils.c
> @@ -15,8 +15,8 @@
>  #include <unistd.h>
>  #include <errno.h>
>  
> -#include <traceevent/event-parse.h>
> -#include <traceevent/event-utils.h>
> +#include <event-parse.h>
> +#include <event-utils.h>
>  #include "tracefs.h"
>  #include "tracefs-local.h"
>
Yordan Karadzhov July 26, 2021, 10:25 a.m. UTC | #2
On 17.07.21 г. 5:06, Steven Rostedt wrote:
> From: "Steven Rostedt (VMware)" <rostedt@goodmis.org>
> 
> "pkg-config --cflags --libtraceevent" produces the full path to the
> libtraceevent headers (including the "traceevent/" portion). There is no
> need to add that part in the headers.
> 
> Particularly the one in the main tracefs.h that trace-cmd uses. The
> version 2.9.4 causes the header to include the libtraceevent/event-parse.h
> that is local, when it should be using the system headers, and causes it
> to fail the build.
> 
> Signed-off-by: Steven Rostedt (VMware) <rostedt@goodmis.org>
> ---
>   include/tracefs.h    | 2 +-
>   src/tracefs-events.c | 2 +-
>   src/tracefs-utils.c  | 4 ++--
>   3 files changed, 4 insertions(+), 4 deletions(-)
> 
> diff --git a/include/tracefs.h b/include/tracefs.h
> index 7e1927b..2649417 100644
> --- a/include/tracefs.h
> +++ b/include/tracefs.h
> @@ -9,7 +9,7 @@
>   #include <sys/stat.h>
>   #include <fcntl.h>
>   #include <sched.h>
> -#include <traceevent/event-parse.h>
> +#include <event-parse.h>

Perhaps we need a similar patch for "trace-cmd.h".

Thanks!
Yordan


>   
>   char *tracefs_get_tracing_file(const char *name);
>   void tracefs_put_tracing_file(char *name);
> diff --git a/src/tracefs-events.c b/src/tracefs-events.c
> index 7febc2a..8d84838 100644
> --- a/src/tracefs-events.c
> +++ b/src/tracefs-events.c
> @@ -15,7 +15,7 @@
>   #include <fcntl.h>
>   #include <limits.h>
>   
> -#include <traceevent/kbuffer.h>
> +#include <kbuffer.h>
>   
>   #include "tracefs.h"
>   #include "tracefs-local.h"
> diff --git a/src/tracefs-utils.c b/src/tracefs-utils.c
> index 6750336..600cdf2 100644
> --- a/src/tracefs-utils.c
> +++ b/src/tracefs-utils.c
> @@ -15,8 +15,8 @@
>   #include <unistd.h>
>   #include <errno.h>
>   
> -#include <traceevent/event-parse.h>
> -#include <traceevent/event-utils.h>
> +#include <event-parse.h>
> +#include <event-utils.h>
>   #include "tracefs.h"
>   #include "tracefs-local.h"
>   
>
Steven Rostedt July 26, 2021, 3:24 p.m. UTC | #3
On Mon, 26 Jul 2021 13:25:41 +0300
"Yordan Karadzhov (VMware)" <y.karadz@gmail.com> wrote:

> > diff --git a/include/tracefs.h b/include/tracefs.h
> > index 7e1927b..2649417 100644
> > --- a/include/tracefs.h
> > +++ b/include/tracefs.h
> > @@ -9,7 +9,7 @@
> >   #include <sys/stat.h>
> >   #include <fcntl.h>
> >   #include <sched.h>
> > -#include <traceevent/event-parse.h>
> > +#include <event-parse.h>  
> 
> Perhaps we need a similar patch for "trace-cmd.h".

Like this?

  https://git.kernel.org/pub/scm/utils/trace-cmd/trace-cmd.git/commit/?h=trace-cmd-stable-v2.9&id=c3bf2ced24528debba6e6c48c77e3868cdb3dec1


I pushed it for v2.9 because it was broken if libtraceeevent was
installed. I'll make sure it's there for the development branch as well.

-- Steve
diff mbox series

Patch

diff --git a/include/tracefs.h b/include/tracefs.h
index 7e1927b..2649417 100644
--- a/include/tracefs.h
+++ b/include/tracefs.h
@@ -9,7 +9,7 @@ 
 #include <sys/stat.h>
 #include <fcntl.h>
 #include <sched.h>
-#include <traceevent/event-parse.h>
+#include <event-parse.h>
 
 char *tracefs_get_tracing_file(const char *name);
 void tracefs_put_tracing_file(char *name);
diff --git a/src/tracefs-events.c b/src/tracefs-events.c
index 7febc2a..8d84838 100644
--- a/src/tracefs-events.c
+++ b/src/tracefs-events.c
@@ -15,7 +15,7 @@ 
 #include <fcntl.h>
 #include <limits.h>
 
-#include <traceevent/kbuffer.h>
+#include <kbuffer.h>
 
 #include "tracefs.h"
 #include "tracefs-local.h"
diff --git a/src/tracefs-utils.c b/src/tracefs-utils.c
index 6750336..600cdf2 100644
--- a/src/tracefs-utils.c
+++ b/src/tracefs-utils.c
@@ -15,8 +15,8 @@ 
 #include <unistd.h>
 #include <errno.h>
 
-#include <traceevent/event-parse.h>
-#include <traceevent/event-utils.h>
+#include <event-parse.h>
+#include <event-utils.h>
 #include "tracefs.h"
 #include "tracefs-local.h"