cleanup: function attribute 'format'
[lttng-ust.git] / liblttng-ust / lttng-context-mnt-ns.c
index 6f9fe80ab397b56ea394d37ca2b0856c3b0e9131..8a2b7e867aee652007160f3275424037720426c6 100644 (file)
@@ -77,7 +77,7 @@ size_t mnt_ns_get_size(struct lttng_ust_ctx_field *field, size_t offset)
 {
        size_t size = 0;
 
-       size += 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;
 }
@@ -90,8 +90,7 @@ void mnt_ns_record(struct lttng_ust_ctx_field *field,
        ino_t mnt_ns;
 
        mnt_ns = get_mnt_ns();
-       lib_ring_buffer_align_ctx(ctx, lttng_alignof(mnt_ns));
-       chan->ops->event_write(ctx, &mnt_ns, sizeof(mnt_ns));
+       chan->ops->event_write(ctx, &mnt_ns, sizeof(mnt_ns), lttng_ust_rb_alignof(mnt_ns));
 }
 
 static
@@ -108,7 +107,7 @@ int lttng_add_mnt_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.023717 seconds and 4 git commands to generate.