#include #include #include #include #include #include #include #include #include #include #include #include #include "trace-event.h" #include "machine.h" #include "util.h" /* * global trace_event object used by trace_event__tp_format * * TODO There's no cleanup call for this. Add some sort of * __exit function support and call trace_event__cleanup * there. */ static struct trace_event tevent; static bool tevent_initialized; int trace_event__init(struct trace_event *t) { struct pevent *pevent = pevent_alloc(); if (pevent) { t->plugin_list = traceevent_load_plugins(pevent); t->pevent = pevent; } return pevent ? 0 : -1; } static int trace_event__init2(void) { int be = traceevent_host_bigendian(); struct pevent *pevent; if (trace_event__init(&tevent)) return -1; pevent = tevent.pevent; pevent_set_flag(pevent, PEVENT_NSEC_OUTPUT); pevent_set_file_bigendian(pevent, be); pevent_set_host_bigendian(pevent, be); tevent_initialized = true; return 0; } int trace_event__register_resolver(struct machine *machine, pevent_func_resolver_t *func) { if (!tevent_initialized && trace_event__init2()) return -1; return pevent_set_function_resolver(tevent.pevent, func, machine); } void trace_event__cleanup(struct trace_event *t) { traceevent_unload_plugins(t->plugin_list, t->pevent); pevent_free(t->pevent); } /* * Returns pointer with encoded error via interface. */ static struct event_format* tp_format(const char *sys, const char *name) { struct pevent *pevent = tevent.pevent; struct event_format *event = NULL; char path[PATH_MAX]; size_t size; char *data; int err; scnprintf(path, PATH_MAX, "%s/%s/%s/format", tracing_events_path, sys, name); err = filename__read_str(path, &data, &size); if (err) return ERR_PTR(err); pevent_parse_format(pevent, &event, data, size, sys); free(data); return event; } /* * Returns pointer with encoded error via interface. */ struct event_format* trace_event__tp_format(const char *sys, const char *name) { if (!tevent_initialized && trace_event__init2()) return ERR_PTR(-ENOMEM); return tp_format(sys, name); } struct event_format *trace_event__tp_format_id(int id) { if (!tevent_initialized && trace_event__init2()) return ERR_PTR(-ENOMEM); return pevent_find_event(tevent.pevent, id); } ion value='author'>author
diff options
context:
space:
mode:
authorLinus Torvalds <torvalds@linux-foundation.org>2017-01-29 10:56:56 -0800
committerLinus Torvalds <torvalds@linux-foundation.org>2017-01-29 10:56:56 -0800
commit2c5d9555d6d937966d79d4c6529a5f7b9206e405 (patch)
tree4f3d220ea3aeaadcae0796c5456e0ef9a908071d /drivers/usb/gadget/function/u_uac1.c
parent53cd1ad1a68fd10f677445e04ed63aa9ce39b36b (diff)
parent2ad5d52d42810bed95100a3d912679d8864421ec (diff)
Merge branch 'parisc-4.10-3' of git://git.kernel.org/pub/scm/linux/kernel/git/deller/parisc-linux
Pull two parisc fixes from Helge Deller: "One fix to avoid usage of BITS_PER_LONG in user-space exported swab.h header which breaks compiling qemu, and one trivial fix for printk continuation in the parisc parport driver" * 'parisc-4.10-3' of git://git.kernel.org/pub/scm/linux/kernel/git/deller/parisc-linux: parisc: Don't use BITS_PER_LONG in userspace-exported swab.h header parisc, parport_gsc: Fixes for printk continuation lines
Diffstat (limited to 'drivers/usb/gadget/function/u_uac1.c')
ion for powersave=off Doc: Correct typo, "Introdution" => "Introduction" Documentation/atomic_ops.txt: convert to ReST markup Documentation/local_ops.txt: convert to ReST markup Documentation/assoc_array.txt: convert to ReST markup docs-rst: parse-headers.pl: cleanup the documentation docs-rst: fix media cleandocs target docs-rst: media/Makefile: reorganize the rules docs-rst: media: build SVG from graphviz files docs-rst: replace bayer.png by a SVG image ...
Diffstat (limited to 'include/dt-bindings/memory/tegra114-mc.h')