X-Git-Url: http://git.liburcu.org/?a=blobdiff_plain;f=liblttng-ust%2Flttng-context-ip.c;h=e9cc969fdc48a8488f9bddced3a2c048fe7aa6a3;hb=6ba6fd60507f8e045bdc4f1be14e9d99c6a15f7f;hp=3e7885e13c9ea0b830f395622de1b7e6d70c758f;hpb=218deb69baab57ee2f6728eef18e84697f21197b;p=lttng-ust.git diff --git a/liblttng-ust/lttng-context-ip.c b/liblttng-ust/lttng-context-ip.c index 3e7885e1..e9cc969f 100644 --- a/liblttng-ust/lttng-context-ip.c +++ b/liblttng-ust/lttng-context-ip.c @@ -1,76 +1,68 @@ /* - * lttng-context-ip.c - * - * LTTng UST Instruction Pointer Context. + * SPDX-License-Identifier: LGPL-2.1-only * * Copyright (C) 2009-2012 Mathieu Desnoyers * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; only - * version 2.1 of the License. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public - * License along with this library; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + * LTTng UST Instruction Pointer Context. */ #define _LGPL_SOURCE +#include #include #include #include #include #include -#include +#include + +#include "context-internal.h" static -size_t ip_get_size(struct lttng_ctx_field *field, size_t offset) +size_t ip_get_size(void *priv __attribute__((unused)), + size_t offset) { size_t size = 0; - size += lib_ring_buffer_align(offset, lttng_alignof(void *)); + size += lttng_ust_lib_ring_buffer_align(offset, lttng_ust_rb_alignof(void *)); size += sizeof(void *); return size; } static -void ip_record(struct lttng_ctx_field *field, +void ip_record(void *priv __attribute__((unused)), struct lttng_ust_lib_ring_buffer_ctx *ctx, - struct lttng_channel *chan) + struct lttng_ust_channel_buffer *chan) { void *ip; ip = ctx->ip; - lib_ring_buffer_align_ctx(ctx, lttng_alignof(ip)); - chan->ops->event_write(ctx, &ip, sizeof(ip)); + chan->ops->event_write(ctx, &ip, sizeof(ip), lttng_ust_rb_alignof(ip)); } -int lttng_add_ip_to_ctx(struct lttng_ctx **ctx) +static const struct lttng_ust_ctx_field *ctx_field = lttng_ust_static_ctx_field( + lttng_ust_static_event_field("ip", + lttng_ust_static_type_integer(sizeof(void *) * CHAR_BIT, + lttng_ust_rb_alignof(void *) * CHAR_BIT, + lttng_ust_is_signed_type(void *), + BYTE_ORDER, 10), + false, false), + ip_get_size, + ip_record, + NULL, NULL, NULL); + +int lttng_add_ip_to_ctx(struct lttng_ust_ctx **ctx) { - struct lttng_ctx_field *field; + int ret; - field = lttng_append_context(ctx); - if (!field) - return -ENOMEM; - if (lttng_find_context(*ctx, "ip")) { - lttng_remove_context_field(ctx, field); - return -EEXIST; + if (lttng_find_context(*ctx, ctx_field->event_field->name)) { + ret = -EEXIST; + goto error_find_context; } - field->event_field.name = "ip"; - field->event_field.type.atype = atype_integer; - field->event_field.type.u.integer.size = sizeof(void *) * CHAR_BIT; - field->event_field.type.u.integer.alignment = lttng_alignof(void *) * CHAR_BIT; - field->event_field.type.u.integer.signedness = lttng_is_signed_type(void *); - field->event_field.type.u.integer.reverse_byte_order = 0; - field->event_field.type.u.integer.base = 16; - field->event_field.type.u.integer.encoding = lttng_encode_none; - field->get_size = ip_get_size; - field->record = ip_record; - lttng_context_update(*ctx); + ret = lttng_ust_context_append(ctx, ctx_field); + if (ret) + return ret; return 0; + +error_find_context: + return ret; }