X-Git-Url: http://git.lttng.org./?a=blobdiff_plain;f=src%2Fprobes%2Flttng-uprobes.c;h=816b7fc1be209c952c11eedddf5df5fcc83e1338;hb=d96a4a7a78319be3386b57d9068817e9ffac2a24;hp=bab941abe348d2c1d96a91cf118948ac0bb9c87d;hpb=c3eddb2e2effc01eee7bc778c21431bf45a8ffdc;p=lttng-modules.git diff --git a/src/probes/lttng-uprobes.c b/src/probes/lttng-uprobes.c index bab941ab..816b7fc1 100644 --- a/src/probes/lttng-uprobes.c +++ b/src/probes/lttng-uprobes.c @@ -107,13 +107,13 @@ int lttng_create_uprobe_event(const char *name, struct lttng_event *event) goto error_fields; } fields[0].name = "ip"; - fields[0].type.atype = atype_integer; + fields[0].type.type = lttng_kernel_type_integer; 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; + fields[0].type.u.integer.encoding = lttng_kernel_string_encoding_none; desc->owner = THIS_MODULE; event->desc = desc; @@ -210,7 +210,7 @@ int lttng_uprobes_add_callsite(struct lttng_uprobe *uprobe, goto end; } - /* Ensure the memory we just allocated don't event_notifier page faults. */ + /* Ensure the memory we just allocated don't notify page faults. */ wrapper_vmalloc_sync_mappings(); uprobe_handler->u.event = priv_data;