X-Git-Url: http://git.liburcu.org/?a=blobdiff_plain;f=libust%2Fbuffers.c;h=b7b2318cb748c47acf924ace7c6aacde4f2b1652;hb=c9dab68ab1bf1dcc41d24cfc0881683a65824ad9;hp=f3331d0899f523677be93f7c5e17b84007d9ee38;hpb=b5b073e22d34bec71259d39b8946354f170f01a9;p=ust.git 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);