cleanup: rename template headers
[lttng-ust.git] / liblttng-ust / lttng-context-net-ns.c
index 5b5dbac4ab2920e059587945f8a1a569c46026fb..655759ac06ef25c854c5da1217107fd29b95dd40 100644 (file)
@@ -94,7 +94,7 @@ size_t net_ns_get_size(struct lttng_ust_ctx_field *field, size_t offset)
 {
        size_t size = 0;
 
-       size += lttng_ust_lib_ring_buffer_align(offset, lttng_alignof(ino_t));
+       size += lttng_ust_lib_ring_buffer_align(offset, lttng_ust_rb_alignof(ino_t));
        size += sizeof(ino_t);
        return size;
 }
@@ -107,8 +107,7 @@ void net_ns_record(struct lttng_ust_ctx_field *field,
        ino_t net_ns;
 
        net_ns = get_net_ns();
-       lttng_ust_lib_ring_buffer_align_ctx(ctx, lttng_alignof(net_ns));
-       chan->ops->event_write(ctx, &net_ns, sizeof(net_ns));
+       chan->ops->event_write(ctx, &net_ns, sizeof(net_ns), lttng_ust_rb_alignof(net_ns));
 }
 
 static
@@ -125,7 +124,7 @@ int lttng_add_net_ns_to_ctx(struct lttng_ust_ctx **ctx)
        int ret;
 
        type = lttng_ust_create_type_integer(sizeof(ino_t) * CHAR_BIT,
-                       lttng_alignof(ino_t) * CHAR_BIT,
+                       lttng_ust_rb_alignof(ino_t) * CHAR_BIT,
                        lttng_ust_is_signed_type(ino_t),
                        BYTE_ORDER, 10);
        if (!type)
This page took 0.023641 seconds and 4 git commands to generate.