X-Git-Url: http://git.lttng.org/?a=blobdiff_plain;f=liblttng-ust%2Flttng-ring-buffer-metadata-client.h;h=cdf48b3bdb5a3982b348ee0f3dc8a8c9e57963c7;hb=418446732612a7d47c019cf839f09f7d86621b34;hp=45340a7b67f052dbe52467bfe8b53eae2cb44ae9;hpb=b2c5f61a9cb94a79c35167450666e540b3e0fffe;p=lttng-ust.git diff --git a/liblttng-ust/lttng-ring-buffer-metadata-client.h b/liblttng-ust/lttng-ring-buffer-metadata-client.h index 45340a7b..cdf48b3b 100644 --- a/liblttng-ust/lttng-ring-buffer-metadata-client.h +++ b/liblttng-ust/lttng-ring-buffer-metadata-client.h @@ -20,6 +20,7 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ +#include #include #include #include "lttng/bitfield.h" @@ -138,7 +139,7 @@ static void client_buffer_end(struct lttng_ust_lib_ring_buffer *buf, uint64_t ts if (!header) return; header->content_size = data_size * CHAR_BIT; /* in bits */ - header->packet_size = PAGE_ALIGN(data_size) * CHAR_BIT; /* in bits */ + header->packet_size = LTTNG_UST_PAGE_ALIGN(data_size) * CHAR_BIT; /* in bits */ /* * We do not care about the records lost count, because the metadata * channel waits and retry. @@ -272,7 +273,6 @@ void lttng_event_write(struct lttng_ust_lib_ring_buffer_ctx *ctx, const void *sr static size_t lttng_packet_avail_size(struct channel *chan, struct lttng_ust_shm_handle *handle) - { unsigned long o_begin; struct lttng_ust_lib_ring_buffer *buf;