mirror of
https://github.com/torvalds/linux.git
synced 2024-11-18 10:01:43 +00:00
bb3dd7e7c4
As traceevent is going to be transferred into a proper library, its local data should be protected from the library users. This patch encapsulates struct tep_handler into a local header, not visible outside of the library. It implements also a bunch of new APIs, which library users can use to access tep_handler members. Signed-off-by: Tzvetomir Stoyanov <tstoyanov@vmware.com> Cc: Jiri Olsa <jolsa@redhat.com> Cc: Namhyung Kim <namhyung@kernel.org> Cc: linux trace devel <linux-trace-devel@vger.kernel.org> Cc: tzvetomir stoyanov <tstoyanov@vmware.com> Link: http://lkml.kernel.org/r/20181005122225.522155df@gandalf.local.home Signed-off-by: Steven Rostedt (VMware) <rostedt@goodmis.org> Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
20 lines
683 B
Plaintext
20 lines
683 B
Plaintext
libtraceevent-y += event-parse.o
|
|
libtraceevent-y += event-plugin.o
|
|
libtraceevent-y += trace-seq.o
|
|
libtraceevent-y += parse-filter.o
|
|
libtraceevent-y += parse-utils.o
|
|
libtraceevent-y += kbuffer-parse.o
|
|
libtraceevent-y += tep_strerror.o
|
|
libtraceevent-y += event-parse-api.o
|
|
|
|
plugin_jbd2-y += plugin_jbd2.o
|
|
plugin_hrtimer-y += plugin_hrtimer.o
|
|
plugin_kmem-y += plugin_kmem.o
|
|
plugin_kvm-y += plugin_kvm.o
|
|
plugin_mac80211-y += plugin_mac80211.o
|
|
plugin_sched_switch-y += plugin_sched_switch.o
|
|
plugin_function-y += plugin_function.o
|
|
plugin_xen-y += plugin_xen.o
|
|
plugin_scsi-y += plugin_scsi.o
|
|
plugin_cfg80211-y += plugin_cfg80211.o
|