From: Pierre-Marc Fournier Date: Mon, 7 Dec 2009 19:23:22 +0000 (-0500) Subject: fix save_last_tsc() and last_tsc_overflow() args X-Git-Tag: v0.1~44 X-Git-Url: https://git.lttng.org/?p=ust.git;a=commitdiff_plain;h=c9dab68ab1bf1dcc41d24cfc0881683a65824ad9 fix save_last_tsc() and last_tsc_overflow() args --- diff --git a/libust/buffers.c b/libust/buffers.c index f3331d0..b7b2318 100644 --- a/libust/buffers.c +++ b/libust/buffers.c @@ -250,13 +250,13 @@ void *ltt_buffers_offset_address(struct ust_buffer *buf, size_t offset) /* FIXME: does this test work properly? */ #if (BITS_PER_LONG == 32) -static inline void save_last_tsc(struct ltt_channel_buf_struct *ltt_buf, +static inline void save_last_tsc(struct ust_buffer *ltt_buf, u64 tsc) { ltt_buf->last_tsc = (unsigned long)(tsc >> LTT_TSC_BITS); } -static inline int last_tsc_overflow(struct ltt_channel_buf_struct *ltt_buf, +static inline int last_tsc_overflow(struct ust_buffer *ltt_buf, u64 tsc) { unsigned long tsc_shifted = (unsigned long)(tsc >> LTT_TSC_BITS);