X-Git-Url: http://git.lttng.org./?a=blobdiff_plain;f=src%2Flttng-context-hostname.c;h=68e142c159191c1ad14c8107e44b29c7b7009425;hb=d4c1b1de04e5b67db563ed5dd3d229239720c3fb;hp=c34ed5cd1a6814a3da7c1d1ae886cea6a5085557;hpb=8a57ec025ffbe56153748fd69b60118862707182;p=lttng-modules.git diff --git a/src/lttng-context-hostname.c b/src/lttng-context-hostname.c index c34ed5cd..68e142c1 100644 --- a/src/lttng-context-hostname.c +++ b/src/lttng-context-hostname.c @@ -31,7 +31,7 @@ size_t hostname_get_size(void *priv, struct lttng_kernel_probe_ctx *probe_ctx, s static void hostname_record(void *priv, struct lttng_kernel_probe_ctx *probe_ctx, struct lttng_kernel_ring_buffer_ctx *ctx, - struct lttng_channel *chan) + struct lttng_kernel_channel_buffer *chan) { struct nsproxy *nsproxy; struct uts_namespace *ns; @@ -46,7 +46,7 @@ void hostname_record(void *priv, struct lttng_kernel_probe_ctx *probe_ctx, ns = nsproxy->uts_ns; hostname = ns->name.nodename; chan->ops->event_write(ctx, hostname, - LTTNG_HOSTNAME_CTX_LEN); + LTTNG_HOSTNAME_CTX_LEN, 1); } else { chan->ops->event_memset(ctx, 0, LTTNG_HOSTNAME_CTX_LEN); @@ -79,7 +79,7 @@ void hostname_get_value(void *priv, static const struct lttng_kernel_ctx_field *ctx_field = lttng_kernel_static_ctx_field( lttng_kernel_static_event_field("hostname", lttng_kernel_static_type_array_text(LTTNG_HOSTNAME_CTX_LEN), - false, false, false), + false, false), hostname_get_size, hostname_record, hostname_get_value,