linux-trace-devel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v5 00/20] Trace file version 7 - compression
@ 2021-12-02 12:24 Tzvetomir Stoyanov (VMware)
  2021-12-02 12:24 ` [PATCH v5 01/20] trace-cmd library: Add support for compression algorithms Tzvetomir Stoyanov (VMware)
                   ` (19 more replies)
  0 siblings, 20 replies; 21+ messages in thread
From: Tzvetomir Stoyanov (VMware) @ 2021-12-02 12:24 UTC (permalink / raw)
  To: rostedt; +Cc: linux-trace-devel

Introduced compression of the metadata and trace data in trace files version
7. The compression is optional and disabled by default. A new parameter of
"trace-cmd record" is introduced, which can be used to configure the trace
file compression:
 --compression < none / any / name of the desired algorithm >

This patch-set depends on:
 "[PATCH v6 00/23] Trace file version 7 - sections" patch set.
  https://lore.kernel.org/linux-trace-devel/20211202122152.43275-1-tz.stoyanov@gmail.com/

v5 changes:
 - Rebased on top of the latest master.
v4 changes:
 - Rebased on top of the latest master.
v3 changes:
 - Rebased on top of the latest master.
v2 changes:
 - fixed issues of split and convert commands with some corner cases

Tzvetomir Stoyanov (VMware) (20):
  trace-cmd library: Add support for compression algorithms
  trace-cmd library: Internal helpers for compressing data
  trace-cmd library: Internal helpers for uncompressing data
  trace-cmd library: Inherit compression algorithm from input file
  trace-cmd library: New API to configure compression on an output
    handler
  trace-cmd library: Write compression header in the trace file
  trace-cmd library: Compress part of the trace file
  trace-cmd library: Add local helper function for data compression
  trace-cmd library: Compress the trace data
  trace-cmd library: Decompress the options section, if it is compressed
  trace-cmd library: Read compression header
  trace-cmd library: Extend the input handler with trace data
    decompression context
  trace-cmd library: Initialize CPU data decompression logic
  trace-cmd library: Add logic for in-memory decompression
  trace-cmd library: Read compressed latency data
  trace-cmd library: Decompress file sections on reading
  trace-cmd library: Add zlib compression algorithm
  trace-cmd list: Show supported compression algorithms
  trace-cmd record: Add compression to the trace context
  trace-cmd report: Add new parameter for trace file compression

 Documentation/trace-cmd/trace-cmd-list.1.txt  |   3 +
 Makefile                                      |   7 +
 lib/trace-cmd/Makefile                        |   8 +
 .../include/private/trace-cmd-private.h       |  46 +-
 lib/trace-cmd/include/trace-cmd-local.h       |  17 +
 lib/trace-cmd/trace-compress-zlib.c           | 109 +++
 lib/trace-cmd/trace-compress.c                | 910 ++++++++++++++++++
 lib/trace-cmd/trace-input.c                   | 469 ++++++++-
 lib/trace-cmd/trace-output.c                  | 317 +++++-
 lib/trace-cmd/trace-util.c                    |  10 +
 tracecmd/Makefile                             |   4 +
 tracecmd/trace-list.c                         |  26 +
 tracecmd/trace-record.c                       |  34 +-
 tracecmd/trace-usage.c                        |   6 +
 14 files changed, 1893 insertions(+), 73 deletions(-)
 create mode 100644 lib/trace-cmd/trace-compress-zlib.c
 create mode 100644 lib/trace-cmd/trace-compress.c

-- 
2.33.1


^ permalink raw reply	[flat|nested] 21+ messages in thread

end of thread, other threads:[~2021-12-02 12:25 UTC | newest]

Thread overview: 21+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-12-02 12:24 [PATCH v5 00/20] Trace file version 7 - compression Tzvetomir Stoyanov (VMware)
2021-12-02 12:24 ` [PATCH v5 01/20] trace-cmd library: Add support for compression algorithms Tzvetomir Stoyanov (VMware)
2021-12-02 12:24 ` [PATCH v5 02/20] trace-cmd library: Internal helpers for compressing data Tzvetomir Stoyanov (VMware)
2021-12-02 12:24 ` [PATCH v5 03/20] trace-cmd library: Internal helpers for uncompressing data Tzvetomir Stoyanov (VMware)
2021-12-02 12:24 ` [PATCH v5 04/20] trace-cmd library: Inherit compression algorithm from input file Tzvetomir Stoyanov (VMware)
2021-12-02 12:24 ` [PATCH v5 05/20] trace-cmd library: New API to configure compression on an output handler Tzvetomir Stoyanov (VMware)
2021-12-02 12:24 ` [PATCH v5 06/20] trace-cmd library: Write compression header in the trace file Tzvetomir Stoyanov (VMware)
2021-12-02 12:24 ` [PATCH v5 07/20] trace-cmd library: Compress part of " Tzvetomir Stoyanov (VMware)
2021-12-02 12:24 ` [PATCH v5 08/20] trace-cmd library: Add local helper function for data compression Tzvetomir Stoyanov (VMware)
2021-12-02 12:24 ` [PATCH v5 09/20] trace-cmd library: Compress the trace data Tzvetomir Stoyanov (VMware)
2021-12-02 12:24 ` [PATCH v5 10/20] trace-cmd library: Decompress the options section, if it is compressed Tzvetomir Stoyanov (VMware)
2021-12-02 12:24 ` [PATCH v5 11/20] trace-cmd library: Read compression header Tzvetomir Stoyanov (VMware)
2021-12-02 12:24 ` [PATCH v5 12/20] trace-cmd library: Extend the input handler with trace data decompression context Tzvetomir Stoyanov (VMware)
2021-12-02 12:25 ` [PATCH v5 13/20] trace-cmd library: Initialize CPU data decompression logic Tzvetomir Stoyanov (VMware)
2021-12-02 12:25 ` [PATCH v5 14/20] trace-cmd library: Add logic for in-memory decompression Tzvetomir Stoyanov (VMware)
2021-12-02 12:25 ` [PATCH v5 15/20] trace-cmd library: Read compressed latency data Tzvetomir Stoyanov (VMware)
2021-12-02 12:25 ` [PATCH v5 16/20] trace-cmd library: Decompress file sections on reading Tzvetomir Stoyanov (VMware)
2021-12-02 12:25 ` [PATCH v5 17/20] trace-cmd library: Add zlib compression algorithm Tzvetomir Stoyanov (VMware)
2021-12-02 12:25 ` [PATCH v5 18/20] trace-cmd list: Show supported compression algorithms Tzvetomir Stoyanov (VMware)
2021-12-02 12:25 ` [PATCH v5 19/20] trace-cmd record: Add compression to the trace context Tzvetomir Stoyanov (VMware)
2021-12-02 12:25 ` [PATCH v5 20/20] trace-cmd report: Add new parameter for trace file compression Tzvetomir Stoyanov (VMware)

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).