X-Git-Url: http://git.lttng.org./?a=blobdiff_plain;f=lib%2Fringbuffer%2Fring_buffer_vfs.c;h=97be835655a8c0f665526f8471aa1030e140b561;hb=e1cdd6e9b490108e3810e9223799c2c7acbc9622;hp=274e976c974ecacf4edf293f648a428448bf8f55;hpb=4dce5a4879ae1989d091f6969b143a41ba76ba1f;p=lttng-modules.git diff --git a/lib/ringbuffer/ring_buffer_vfs.c b/lib/ringbuffer/ring_buffer_vfs.c index 274e976c..97be8356 100644 --- a/lib/ringbuffer/ring_buffer_vfs.c +++ b/lib/ringbuffer/ring_buffer_vfs.c @@ -191,15 +191,6 @@ long lib_ring_buffer_ioctl(struct file *filp, unsigned int cmd, switch (cmd) { case RING_BUFFER_SNAPSHOT: - /* - * First, ensure we perform a "final" flush onto the - * stream. This will ensure we create a packet of - * padding if we encounter an empty packet. This ensures - * the time-stamps right before the snapshot is used as - * end of packet timestamp. - */ - if (!buf->quiescent) - lib_ring_buffer_switch_remote_empty(buf); return lib_ring_buffer_snapshot(buf, &buf->cons_snapshot, &buf->prod_snapshot); case RING_BUFFER_SNAPSHOT_SAMPLE_POSITIONS: @@ -282,6 +273,9 @@ long lib_ring_buffer_ioctl(struct file *filp, unsigned int cmd, case RING_BUFFER_FLUSH: lib_ring_buffer_switch_remote(buf); return 0; + case RING_BUFFER_FLUSH_EMPTY: + lib_ring_buffer_switch_remote_empty(buf); + return 0; default: return -ENOIOCTLCMD; } @@ -332,15 +326,6 @@ long lib_ring_buffer_compat_ioctl(struct file *filp, unsigned int cmd, switch (cmd) { case RING_BUFFER_COMPAT_SNAPSHOT: - /* - * First, ensure we perform a "final" flush onto the - * stream. This will ensure we create a packet of - * padding if we encounter an empty packet. This ensures - * the time-stamps right before the snapshot is used as - * end of packet timestamp. - */ - if (!buf->quiescent) - lib_ring_buffer_switch_remote_empty(buf); return lib_ring_buffer_snapshot(buf, &buf->cons_snapshot, &buf->prod_snapshot); case RING_BUFFER_COMPAT_SNAPSHOT_SAMPLE_POSITIONS: @@ -439,6 +424,9 @@ long lib_ring_buffer_compat_ioctl(struct file *filp, unsigned int cmd, case RING_BUFFER_COMPAT_FLUSH: lib_ring_buffer_switch_remote(buf); return 0; + case RING_BUFFER_COMPAT_FLUSH_EMPTY: + lib_ring_buffer_switch_remote_empty(buf); + return 0; default: return -ENOIOCTLCMD; }