X-Git-Url: http://git.liburcu.org/?a=blobdiff_plain;ds=sidebyside;f=probes%2Flttng-uprobes.c;h=175c0dd9d5993ddcfb63865a6971715b6f94e504;hb=ceabb767180e064629b5a9ab4ed14449da864763;hp=10f435fec989cdb3ab0829e6aea8fb924fac1c6e;hpb=0a25550c99fa5591d09238330767af7fe14e46a4;p=lttng-modules.git diff --git a/probes/lttng-uprobes.c b/probes/lttng-uprobes.c index 10f435fe..175c0dd9 100644 --- a/probes/lttng-uprobes.c +++ b/probes/lttng-uprobes.c @@ -92,12 +92,12 @@ int lttng_create_uprobe_event(const char *name, struct lttng_event *event) } fields[0].name = "ip"; fields[0].type.atype = atype_integer; - fields[0].type.u.basic.integer.size = sizeof(unsigned long) * CHAR_BIT; - fields[0].type.u.basic.integer.alignment = lttng_alignof(unsigned long) * CHAR_BIT; - fields[0].type.u.basic.integer.signedness = lttng_is_signed_type(unsigned long); - fields[0].type.u.basic.integer.reverse_byte_order = 0; - fields[0].type.u.basic.integer.base = 16; - fields[0].type.u.basic.integer.encoding = lttng_encode_none; + fields[0].type.u.integer.size = sizeof(unsigned long) * CHAR_BIT; + fields[0].type.u.integer.alignment = lttng_alignof(unsigned long) * CHAR_BIT; + fields[0].type.u.integer.signedness = lttng_is_signed_type(unsigned long); + fields[0].type.u.integer.reverse_byte_order = 0; + fields[0].type.u.integer.base = 16; + fields[0].type.u.integer.encoding = lttng_encode_none; desc->owner = THIS_MODULE; event->desc = desc;