X-Git-Url: http://git.lttng.org/?a=blobdiff_plain;f=lttng-context-mnt-ns.c;h=7fce5dd151d16b30fc743eeea3cb31617fed09e9;hb=4f47ccf08dfac3d5db7553eb8b40bdab19764727;hp=9443f40996086a77e1d81c608c3e633fa10aef1e;hpb=b7cdc18250880cc44edeef4a4b42c8ac7a135a6d;p=lttng-modules.git diff --git a/lttng-context-mnt-ns.c b/lttng-context-mnt-ns.c index 9443f409..7fce5dd1 100644 --- a/lttng-context-mnt-ns.c +++ b/lttng-context-mnt-ns.c @@ -12,12 +12,12 @@ #include #include #include -#include +#include #include -#include +#include #include #include -#include +#include #if !defined(LTTNG_MNT_NS_MISSING_HEADER) && \ (LINUX_VERSION_CODE >= KERNEL_VERSION(3,8,0)) @@ -88,17 +88,17 @@ int lttng_add_mnt_ns_to_ctx(struct lttng_ctx **ctx) } field->event_field.name = "mnt_ns"; field->event_field.type.atype = atype_integer; - field->event_field.type.u.basic.integer.size = sizeof(unsigned int) * CHAR_BIT; - field->event_field.type.u.basic.integer.alignment = lttng_alignof(unsigned int) * CHAR_BIT; - field->event_field.type.u.basic.integer.signedness = lttng_is_signed_type(unsigned int); - field->event_field.type.u.basic.integer.reverse_byte_order = 0; - field->event_field.type.u.basic.integer.base = 10; - field->event_field.type.u.basic.integer.encoding = lttng_encode_none; + field->event_field.type.u.integer.size = sizeof(unsigned int) * CHAR_BIT; + field->event_field.type.u.integer.alignment = lttng_alignof(unsigned int) * CHAR_BIT; + field->event_field.type.u.integer.signedness = lttng_is_signed_type(unsigned int); + field->event_field.type.u.integer.reverse_byte_order = 0; + field->event_field.type.u.integer.base = 10; + field->event_field.type.u.integer.encoding = lttng_encode_none; field->get_size = mnt_ns_get_size; field->record = mnt_ns_record; field->get_value = mnt_ns_get_value; lttng_context_update(*ctx); - wrapper_vmalloc_sync_all(); + wrapper_vmalloc_sync_mappings(); return 0; } EXPORT_SYMBOL_GPL(lttng_add_mnt_ns_to_ctx);