SYNOPSIS
#include <tracefs.h> int tracefs_snapshot_snap(struct tracefs_instance *instance); int tracefs_snapshot_clear(struct tracefs_instance *instance); int tracefs_snapshot_free(struct tracefs_instance *instance);
DESCRIPTION
The Linux kernel tracing provides a "snapshot" feature. The kernel has two ring buffers. One that is written to by the tracing system and another one that is the "snapshot" buffer. When a snapshot happens, the two buffers are swapped, and the current snapshot buffer becomes the one being written to, and the buffer that was being written to becomes the saved snapshot.
Note, the snapshot buffer is allocated the first time it is taken, so it is best to take a snapshot at the start before one is needed so that it is allocated and a snapshot is ready, then the snapshot will happen immediately.
The tracefs_snapshot_snap() will allocate (if not already allocated) the snapshot buffer and then take a "snapshot" (swap the main buffer that’s being written to with the allocated snapshot buffer). It will do this to the given instance buffer or the top instance if instance is NULL.
The tracefs_snapshot_clear() will erase the content of the snapshot buffer for the given instance or the top level instance if instance is NULL.
The tracefs_snapshot_free() will free the allocated snapshot for the given instance or the top level instance if instance is NULL. That is, if another call to tracefs_snapshot_snap() is done after this, then it will need to allocate the snapshot buffer again before it can take a snapshot. This function should be used to free up the kernel memory used by hte snapshot buffer when no longer in use.
RETURN VALUE
The tracefs_snapshot_snap(), tracefs_snapshot_clear() and the tracefs_snapshot_free() all return 0 on success and -1 on failure.
EXAMPLE
FILES
tracefs.h Header file to include in order to have access to the library APIs. -ltracefs Linker switch to add when building a program that uses the library.
SEE ALSO
tracefs_iterate_snapshot_events(3) libtracefs(3), libtraceevent(3), trace-cmd(1)
AUTHOR
Steven Rostedt <rostedt@goodmis.org>
REPORTING BUGS
Report bugs to <linux-trace-devel@vger.kernel.org>
LICENSE
libtracefs is Free Software licensed under the GNU LGPL 2.1
COPYING
Copyright (C) 2023 Google, LLC. Free use of this software is granted under the terms of the GNU Public License (GPL).