X-Git-Url: http://git.lttng.org/?p=ust.git;a=blobdiff_plain;f=ustd%2Flowlevel.c;h=48bd580ee71d59d93a8be604561b148081e7119f;hp=6a91accbb5bac43c7a55f0233fd447c473338461;hb=b5b073e22d34bec71259d39b8946354f170f01a9;hpb=a2dc02e0e0a685b8814b68a2f07ce73c08e0ef50 diff --git a/ustd/lowlevel.c b/ustd/lowlevel.c index 6a91acc..48bd580 100644 --- a/ustd/lowlevel.c +++ b/ustd/lowlevel.c @@ -27,10 +27,10 @@ void finish_consuming_dead_subbuffer(struct buffer_info *buf) { - struct ltt_channel_buf_struct *ltt_buf = buf->bufstruct_mem; + struct ust_buffer *ustbuf = buf->bufstruct_mem; - long write_offset = local_read(<t_buf->offset); - long consumed_offset = atomic_long_read(<t_buf->consumed); + long write_offset = local_read(&ustbuf->offset); + long consumed_offset = atomic_long_read(&ustbuf->consumed); long i_subbuf; @@ -59,7 +59,7 @@ void finish_consuming_dead_subbuffer(struct buffer_info *buf) void *tmp; /* commit_seq is the offset in the buffer of the end of the last sequential commit. * Bytes beyond this limit cannot be recovered. This is a free-running counter. */ - long commit_seq = local_read(<t_buf->commit_seq[i_subbuf]); + long commit_seq = local_read(&ustbuf->commit_seq[i_subbuf]); unsigned long valid_length = buf->subbuf_size; long n_subbufs_order = get_count_order(buf->n_subbufs);