X-Git-Url: http://git.lttng.org/?a=blobdiff_plain;f=liblttng-ust%2Fevent-notifier-notification.c;h=5f7d9d58f24b67bf04fb4cf5fef6b2e8854f8895;hb=c30ad764fc2500598086902cf3bd2801b9c05c64;hp=6fce4357fe85fe5d1511495b675449b5e10797a6;hpb=d37ecb3fc622dee6f80f84c21f38d32eef407262;p=lttng-ust.git diff --git a/liblttng-ust/event-notifier-notification.c b/liblttng-ust/event-notifier-notification.c index 6fce4357..5f7d9d58 100644 --- a/liblttng-ust/event-notifier-notification.c +++ b/liblttng-ust/event-notifier-notification.c @@ -21,9 +21,9 @@ #define _LGPL_SOURCE #include -#include #include #include +#include #include #include "../libmsgpack/msgpack.h" @@ -280,8 +280,28 @@ void notification_append_empty_capture( lttng_msgpack_write_nil(¬if->writer); } +static void record_error(struct lttng_event_notifier *event_notifier) +{ + struct lttng_event_notifier_group *event_notifier_group = + event_notifier->group; + size_t dimension_index[1]; + int ret; + + /* This group may not have an error counter attached to it. */ + if (!event_notifier_group->error_counter) + return; + + dimension_index[0] = event_notifier->error_counter_index; + ret = event_notifier_group->error_counter->ops->counter_add( + event_notifier_group->error_counter->counter, + dimension_index, 1); + if (ret) + WARN_ON_ONCE(1); +} + static -void notification_send(struct lttng_event_notifier_notification *notif) +void notification_send(struct lttng_event_notifier_notification *notif, + struct lttng_event_notifier *event_notifier) { ssize_t ret; size_t content_len; @@ -291,7 +311,7 @@ void notification_send(struct lttng_event_notifier_notification *notif) assert(notif); - ust_notif.token = notif->event_notifier_token; + ust_notif.token = event_notifier->user_token; /* * Prepare sending the notification from multiple buffers using an @@ -329,7 +349,8 @@ void notification_send(struct lttng_event_notifier_notification *notif) ret = patient_writev(notif->notification_fd, iov, iovec_count); if (ret == -1) { if (errno == EAGAIN) { - DBG("Cannot send event notifier notification without blocking: %s", + record_error(event_notifier); + DBG("Cannot send event_notifier notification without blocking: %s", strerror(errno)); } else { DBG("Error to sending event notifier notification: %s", @@ -339,7 +360,8 @@ void notification_send(struct lttng_event_notifier_notification *notif) } } -void lttng_event_notifier_notification_send(struct lttng_event_notifier *event_notifier, +void lttng_event_notifier_notification_send( + struct lttng_event_notifier *event_notifier, const char *stack_data) { /* @@ -375,5 +397,5 @@ void lttng_event_notifier_notification_send(struct lttng_event_notifier *event_n * Send the notification (including the capture buffer) to the * sessiond. */ - notification_send(¬if); + notification_send(¬if, event_notifier); }