X-Git-Url: https://git.liburcu.org/?a=blobdiff_plain;f=src%2Fcommon%2Fringbuffer%2Fbackend_internal.h;h=bd4221776794d6643d379363045efa0b4aa4536c;hb=bee7cf7546038170e69c9d52e542643f773aa6b6;hp=9ce9d1405662a150a55737c54746d208115ed2b2;hpb=8a8c2117fb26a42b19975b8745d4333c7aa1a061;p=lttng-ust.git diff --git a/src/common/ringbuffer/backend_internal.h b/src/common/ringbuffer/backend_internal.h index 9ce9d140..bd422177 100644 --- a/src/common/ringbuffer/backend_internal.h +++ b/src/common/ringbuffer/backend_internal.h @@ -205,7 +205,7 @@ int subbuffer_id_check_index(const struct lttng_ust_ring_buffer_config *config, static inline int lib_ring_buffer_backend_get_pages(const struct lttng_ust_ring_buffer_config *config, - struct lttng_ust_ring_buffer_ctx *ctx, + const struct lttng_ust_ring_buffer_ctx *ctx, struct lttng_ust_ring_buffer_backend_pages **backend_pages) { struct lttng_ust_ring_buffer_ctx_private *ctx_private = ctx->priv; @@ -244,7 +244,7 @@ static inline struct lttng_ust_ring_buffer_backend_pages * lib_ring_buffer_get_backend_pages_from_ctx( const struct lttng_ust_ring_buffer_config *config __attribute__((unused)), - struct lttng_ust_ring_buffer_ctx *ctx) + const struct lttng_ust_ring_buffer_ctx *ctx) { return ctx->priv->backend_pages; } @@ -256,9 +256,7 @@ struct lttng_ust_ring_buffer_backend_pages * #ifdef LTTNG_RING_BUFFER_COUNT_EVENTS static inline void subbuffer_count_record(const struct lttng_ust_ring_buffer_config *config, - const struct lttng_ust_ring_buffer_ctx *ctx, - struct lttng_ust_ring_buffer_backend *bufb, - unsigned long idx, struct lttng_ust_shm_handle *handle) + const struct lttng_ust_ring_buffer_ctx *ctx) { struct lttng_ust_ring_buffer_backend_pages *backend_pages; @@ -272,10 +270,7 @@ void subbuffer_count_record(const struct lttng_ust_ring_buffer_config *config, #else /* LTTNG_RING_BUFFER_COUNT_EVENTS */ static inline void subbuffer_count_record(const struct lttng_ust_ring_buffer_config *config __attribute__((unused)), - const struct lttng_ust_ring_buffer_ctx *ctx __attribute__((unused)), - struct lttng_ust_ring_buffer_backend *bufb __attribute__((unused)), - unsigned long idx __attribute__((unused)), - struct lttng_ust_shm_handle *handle __attribute__((unused))) + const struct lttng_ust_ring_buffer_ctx *ctx __attribute__((unused))) { } #endif /* #else LTTNG_RING_BUFFER_COUNT_EVENTS */