AI Trajectory


Trajectory: (Expand/Collapse All)
Seq Timestamp Type Name Duration
0/0 2026/09/14 12:52 flow patch-triage
16m Args:
null

Results:
{
  "EnableConfigs": null,
  "FocusSymbols": [],
  "KMSANReasoning": "",
  "NeedsKMSAN": false,
  "Reasoning": "The patch modifies user-space code in tools/lib/bpf (libbpf) and tools/testing/selftests/bpf, which does not alter the compiled kernel image (vmlinux) or any kernel modules.",
  "WorthFuzzing": false
}

1/1 2026/09/14 12:52 action read-patch-diff
0m Args:
null

Results:
{
  "PatchDiff": "commit 163d555887a3cb12f9455e3d56e00d0d48cfe684\nAuthor: syz-cluster \u003ctriage@syzkaller.com\u003e\nDate:   Mon Sep 14 12:52:21 2026 +0000\n\n    syz-cluster: applied patch under review\n\ndiff --git a/tools/lib/bpf/libbpf.c b/tools/lib/bpf/libbpf.c\nindex b749c01742ee0..e1fed7735614e 100644\n--- a/tools/lib/bpf/libbpf.c\n+++ b/tools/lib/bpf/libbpf.c\n@@ -9955,7 +9955,7 @@ int bpf_program__set_log_buf(struct bpf_program *prog, char *log_buf, size_t log\n {\n \tif (log_size \u0026\u0026 !log_buf)\n \t\treturn libbpf_err(-EINVAL);\n-\tif (prog-\u003elog_size \u003e UINT_MAX)\n+\tif (log_size \u003e UINT_MAX)\n \t\treturn libbpf_err(-EINVAL);\n \tif (prog-\u003eobj-\u003estate \u003e= OBJ_LOADED)\n \t\treturn libbpf_err(-EBUSY);\ndiff --git a/tools/testing/selftests/bpf/prog_tests/log_buf.c b/tools/testing/selftests/bpf/prog_tests/log_buf.c\nindex d6f14a2320025..31c842d27fb4a 100644\n--- a/tools/testing/selftests/bpf/prog_tests/log_buf.c\n+++ b/tools/testing/selftests/bpf/prog_tests/log_buf.c\n@@ -3,6 +3,8 @@\n \n #include \u003ctest_progs.h\u003e\n #include \u003cbpf/btf.h\u003e\n+#include \u003climits.h\u003e\n+#include \u003cstdint.h\u003e\n \n #include \"test_log_buf.skel.h\"\n #include \"bpf_util.h\"\n@@ -267,6 +269,27 @@ static void bpf_btf_load_log_buf(void)\n \tbtf__free(btf);\n }\n \n+static void prog_log_buf_size_limit(void)\n+{\n+#if SIZE_MAX \u003e UINT_MAX\n+\tstruct test_log_buf *skel;\n+\tchar log_buf[1];\n+\tint err;\n+\n+\tskel = test_log_buf__open();\n+\tif (!ASSERT_OK_PTR(skel, \"skel_open\"))\n+\t\treturn;\n+\n+\terr = bpf_program__set_log_buf(skel-\u003eprogs.good_prog, log_buf,\n+\t\t\t\t       (size_t)UINT_MAX + 1);\n+\tASSERT_EQ(err, -EINVAL, \"set_log_buf_too_big\");\n+\n+\ttest_log_buf__destroy(skel);\n+#else\n+\ttest__skip();\n+#endif\n+}\n+\n void test_log_buf(void)\n {\n \tif (test__start_subtest(\"obj_load_log_buf\"))\n@@ -275,4 +298,6 @@ void test_log_buf(void)\n \t\tbpf_prog_load_log_buf();\n \tif (test__start_subtest(\"bpf_btf_load_log_buf\"))\n \t\tbpf_btf_load_log_buf();\n+\tif (test__start_subtest(\"prog_log_buf_size_limit\"))\n+\t\tprog_log_buf_size_limit();\n }\n"
}

2/1 2026/09/14 12:52 agent patch-evaluator
16m Model:
core

Args:
null

Results:
{
  "EnableConfigs": null,
  "FocusSymbols": [],
  "Reasoning": "The patch modifies user-space code in tools/lib/bpf (libbpf) and tools/testing/selftests/bpf, which does not alter the compiled kernel image (vmlinux) or any kernel modules.",
  "WorthFuzzing": false
}

Instruction:
You are an expert Linux kernel maintainer and security engineer.
Your job is to review a provided patch series and evaluate whether it warrants fuzzing with syzkaller.

IMPORTANT: The changes have ALREADY been applied and committed as the HEAD commit in
your workspace. Do NOT rely on internal assumptions. You must actively use your code access
tools to inspect the actual source code, callers, and surrounding context.

================================================================================
1. CORE TRIAGE PHILOSOPHY
================================================================================
The goal of patch fuzzing is to discover crashes, regressions, exposed latent bugs,
and newly triggered assertions introduced by the patch series.

- REACHABILITY IS THE PRIMARY GATE:
  Fuzzing can only discover bugs in code that can actually execute in standard virtualized
  environments (GCE or QEMU, utilizing software-emulated devices like USB gadgets, netdev, tun/tap).
  If the modified code is structurally unreachable (see Section 2), it MUST NOT be fuzzed,
  regardless of whether it adds assertions or complex logic.

- DO NOT BLINDLY TRUST "NO FUNCTIONAL CHANGE" (NFCI) OR "REFACTORING" CLAIMS:
  Patch authors routinely label changes as "cleanups", "refactorings", or state
  "No functional change intended". Do NOT take these claims at face value.
  Code refactorings that rearrange logic, introduce helper functions, or alter state management
  in core subsystems frequently introduce subtle semantic shifts or uncover latent kernel bugs.
  If reachable executable code is modified or refactored, it MUST be fuzzed.

- NEW OR MODIFIED ASSERTIONS IN REACHABLE CODE MUST BE FUZZED:
  When a patch introduces or modifies runtime checks or assertions (e.g., WARN_ON*, VM_WARN_ON*,
  BUG_ON*, lockdep_assert*) in reachable code paths, it enforces new or stricter invariants.
  Even if the author believes the invariant always holds, fuzzing is essential to verify whether
  an unusual sequence of operations can violate it.

================================================================================
2. WHEN TO RETURN WorthFuzzing=false (NEGATIVE CRITERIA)
================================================================================
Return WorthFuzzing=false ONLY IF all modified code falls strictly into one or more of these categories:

- Non-kernel and non-executable changes:
  * Modifications to Documentation/, comments, or spelling fixes.
  * User-space directories, self-tests, samples, or scripts (e.g., tools/, samples/, scripts/, usr/)
    that do not affect the compiled kernel image (vmlinux) or kernel modules.
  * Purely decorative logging (e.g., message strings in pr_err, printk, dev_info) or tracepoints
    that do not alter control flow or data structures.
  * Build system or Kconfig changes that do not alter compiled C logic.
- Structurally unreachable hardware:
  * Vendor-specific PCIe switches, SmartNICs, or GPU drivers (e.g., mlxsw, pds_core, qed,
    ionic, amdgpu) requiring physical ASIC/PCIe cards not emulated in standard QEMU.
- Unreachable execution paths:
  * Driver teardown callbacks (.remove, .shutdown, pci_unregister_driver) executed only during
    physical PCI hot-unplug or manual sysfs driver unbinding.
  * Code paths exclusive to architectures other than the target architecture.

================================================================================
3. WHEN TO RETURN WorthFuzzing=true (POSITIVE CRITERIA)
================================================================================
Return WorthFuzzing=true whenever the patch touches reachable executable code, including:
- Core Subsystems:
  * Any logic modifications in memory management (mm/), synchronization/locking (kernel/locking/),
    BPF, scheduler, core networking, VFS, or syscall handling.
- Refactorings and Code Cleanups:
  * Any restructuring of reachable data structures, helper abstractions, or algorithm flows.
- Runtime Assertions and Defensive Checks:
  * Any introduction or alteration of assertions (WARN_ON*, VM_WARN_ON*, BUG_ON*, etc.) in reachable paths.
- Reachable Drivers and Protocols:
  * Drivers accessible via virtual buses (virtio, USB gadget, loopback, netlink, binder, sockets, etc.).

================================================================================
4. EXTRACTING FocusSymbols (PREVENTING DILUTION)
================================================================================
When WorthFuzzing=true, you must extract specific kernel functions into FocusSymbols to guide the fuzzer:

- AVOID UBIQUITOUS LIFECYCLE HOT-PATHS:
  Do NOT list generic, ubiquitous functions called by almost every program in the corpus
  (including, but not limited to: general memory allocators and deallocators, page fault
  and trap handlers, or core synchronization primitives; this is not an exhaustive list).
  Listing ubiquitous functions causes the fuzzer to classify thousands of unrelated tests as "focused",
  which severely dilutes fuzzing effort away from the actual changes.

- TARGET SPECIFIC FEATURE LOGIC AND ENTRYPOINTS:
  List functions that specifically implement the logic being added or altered, or direct API entrypoints
  for the subsystem feature under review.

- HANDLING STATIC INLINE FUNCTIONS IN HEADERS (.h):
  Compiler-inlined static functions (such as static inlines in mm/*.h or include/linux/*.h) lack
  distinct symbol addresses in vmlinux and cannot be targeted directly by symbol coverage filters.
  If the changes are primarily in static inline helpers, identify non-static, feature-specific caller
  functions in .c files that exercise them (avoiding ubiquitous lifecycle wrappers).

================================================================================
5. IDENTIFYING EnableConfigs
================================================================================
Identify any specific CONFIG_ options required to properly compile and reach the modified code:
- Inspect Kconfig files and #ifdef guards; do not make assumptions.
- Check "depends on" lines in Kconfig to include any non-standard parent subsystem configs needed.
- Strip any 'CONFIG_' prefix (e.g., return "NET_IPV4" instead of "CONFIG_NET_IPV4").
Prefer calling several tools at the same time to save round-trips.


Use set-results tool to provide results of the analysis.
It must be called exactly once before the final reply.
Ignore results of this tool.

Prompt:
Target architecture: amd64

For your convenience, here is the diff of the changes:
commit 163d555887a3cb12f9455e3d56e00d0d48cfe684
Author: syz-cluster <triage@syzkaller.com>
Date:   Mon Sep 14 12:52:21 2026 +0000

    syz-cluster: applied patch under review

diff --git a/tools/lib/bpf/libbpf.c b/tools/lib/bpf/libbpf.c
index b749c01742ee0..e1fed7735614e 100644
--- a/tools/lib/bpf/libbpf.c
+++ b/tools/lib/bpf/libbpf.c
@@ -9955,7 +9955,7 @@ int bpf_program__set_log_buf(struct bpf_program *prog, char *log_buf, size_t log
 {
 	if (log_size && !log_buf)
 		return libbpf_err(-EINVAL);
-	if (prog->log_size > UINT_MAX)
+	if (log_size > UINT_MAX)
 		return libbpf_err(-EINVAL);
 	if (prog->obj->state >= OBJ_LOADED)
 		return libbpf_err(-EBUSY);
diff --git a/tools/testing/selftests/bpf/prog_tests/log_buf.c b/tools/testing/selftests/bpf/prog_tests/log_buf.c
index d6f14a2320025..31c842d27fb4a 100644
--- a/tools/testing/selftests/bpf/prog_tests/log_buf.c
+++ b/tools/testing/selftests/bpf/prog_tests/log_buf.c
@@ -3,6 +3,8 @@
 
 #include <test_progs.h>
 #include <bpf/btf.h>
+#include <limits.h>
+#include <stdint.h>
 
 #include "test_log_buf.skel.h"
 #include "bpf_util.h"
@@ -267,6 +269,27 @@ static void bpf_btf_load_log_buf(void)
 	btf__free(btf);
 }
 
+static void prog_log_buf_size_limit(void)
+{
+#if SIZE_MAX > UINT_MAX
+	struct test_log_buf *skel;
+	char log_buf[1];
+	int err;
+
+	skel = test_log_buf__open();
+	if (!ASSERT_OK_PTR(skel, "skel_open"))
+		return;
+
+	err = bpf_program__set_log_buf(skel->progs.good_prog, log_buf,
+				       (size_t)UINT_MAX + 1);
+	ASSERT_EQ(err, -EINVAL, "set_log_buf_too_big");
+
+	test_log_buf__destroy(skel);
+#else
+	test__skip();
+#endif
+}
+
 void test_log_buf(void)
 {
 	if (test__start_subtest("obj_load_log_buf"))
@@ -275,4 +298,6 @@ void test_log_buf(void)
 		bpf_prog_load_log_buf();
 	if (test__start_subtest("bpf_btf_load_log_buf"))
 		bpf_btf_load_log_buf();
+	if (test__start_subtest("prog_log_buf_size_limit"))
+		prog_log_buf_size_limit();
 }

3/2 2026/09/14 12:52 llm patch-evaluator
14m Model:
gemini-3.8-flash

Args:
null

Results:
null

Tokens:
							input: 3514
							output: 24
							thoughts: 515
						

Thoughts:
**WorthFuzzing=False: Quick Analysis**

Okay, so I've got this patch diff here, and my initial instinct is to assess whether it warrants further fuzzing based on the guidelines. I see two files modified: `tools/lib/bpf/libbpf.c` and `tools/testing/selftests/bpf/prog_tests/log_buf.c`. Both of these are located in the `tools/` directory.

Now, let's go over the guidelines. Section 2 clearly states that we should return `WorthFuzzing=false` if the modified code falls *strictly* into one or more categories of "Non-kernel and non-executable changes." One specific category that jumps out is "User-space directories, self-tests, samples, or scripts (e.g., tools/, samples/, scripts/, usr/) that do not affect the compiled kernel image (vmlinux) or kernel modules."

Given that these files reside within `tools/` – and specifically `libbpf` which is a userspace library, and selftests which are, well, selftests – and that they *do not* affect the compiled kernel image or kernel modules, I'm pretty confident that this patch doesn't warrant fuzzing. Just to be completely sure, I'll quickly check for any other file modifications in HEAD to confirm. But based on this initial review, I'd say this is a clean pass for now.



4/2 2026/09/14 13:07 tool grepper
0m Args:
{
  "Expression": "bpf_program__set_log_buf"
}

Results:
{
  "Output": "tools/lib/bpf/libbpf.c=9948=const char *bpf_program__log_buf(const struct bpf_program *prog, size_t *log_size)\n--\ntools/lib/bpf/libbpf.c-9953-\ntools/lib/bpf/libbpf.c:9954:int bpf_program__set_log_buf(struct bpf_program *prog, char *log_buf, size_t log_size)\ntools/lib/bpf/libbpf.c-9955-{\n--\ntools/lib/bpf/libbpf.h=140=struct bpf_object_open_opts {\n--\ntools/lib/bpf/libbpf.h-187-\t * previous contents, so if you need more fine-grained control, set\ntools/lib/bpf/libbpf.h:188:\t * per-program buffer with bpf_program__set_log_buf() to preserve each\ntools/lib/bpf/libbpf.h-189-\t * individual program's verification log. Keep using kernel_log_buf\n--\ntools/lib/bpf/libbpf.h=1020=LIBBPF_API const char *bpf_program__log_buf(const struct bpf_program *prog, size_t *log_size);\ntools/lib/bpf/libbpf.h:1021:LIBBPF_API int bpf_program__set_log_buf(struct bpf_program *prog, char *log_buf, size_t log_size);\ntools/lib/bpf/libbpf.h-1022-\n--\ntools/lib/bpf/libbpf.map=315=LIBBPF_0.7.0 {\n--\ntools/lib/bpf/libbpf.map-320-\t\tbpf_program__log_level;\ntools/lib/bpf/libbpf.map:321:\t\tbpf_program__set_log_buf;\ntools/lib/bpf/libbpf.map-322-\t\tbpf_program__set_log_level;\n--\ntools/testing/selftests/bpf/prog_tests/fexit_bpf2bpf.c=350=static void test_obj_load_failure_common(const char *obj_file,\n--\ntools/testing/selftests/bpf/prog_tests/fexit_bpf2bpf.c-380-\tif (exp_msg)\ntools/testing/selftests/bpf/prog_tests/fexit_bpf2bpf.c:381:\t\tbpf_program__set_log_buf(prog, log_buf, sizeof(log_buf));\ntools/testing/selftests/bpf/prog_tests/fexit_bpf2bpf.c-382-\tif (env.verbosity \u003e VERBOSE_NONE)\n--\ntools/testing/selftests/bpf/prog_tests/global_func_dead_code.c=8=void test_global_func_dead_code(void)\n--\ntools/testing/selftests/bpf/prog_tests/global_func_dead_code.c-46-\ntools/testing/selftests/bpf/prog_tests/global_func_dead_code.c:47:\tbpf_program__set_log_buf(skel-\u003eprogs.freplace_prog, log_buf, sizeof(log_buf));\ntools/testing/selftests/bpf/prog_tests/global_func_dead_code.c-48-\terr = bpf_program__set_attach_target(skel-\u003eprogs.freplace_prog, tgt_fd, \"global_dead\");\n--\ntools/testing/selftests/bpf/prog_tests/log_buf.c=37=static void obj_load_log_buf(void)\n--\ntools/testing/selftests/bpf/prog_tests/log_buf.c-65-\t/* set very verbose level for good_prog so we always get detailed logs */\ntools/testing/selftests/bpf/prog_tests/log_buf.c:66:\tbpf_program__set_log_buf(skel-\u003eprogs.good_prog, good_log_buf, log_buf_sz);\ntools/testing/selftests/bpf/prog_tests/log_buf.c-67-\tbpf_program__set_log_level(skel-\u003eprogs.good_prog, 2);\ntools/testing/selftests/bpf/prog_tests/log_buf.c-68-\ntools/testing/selftests/bpf/prog_tests/log_buf.c:69:\tbpf_program__set_log_buf(skel-\u003eprogs.bad_prog, bad_log_buf, log_buf_sz);\ntools/testing/selftests/bpf/prog_tests/log_buf.c-70-\t/* log_level 0 with custom log_buf means that verbose logs are not\n--\ntools/testing/selftests/bpf/prog_tests/log_buf.c-116-\t/* set normal verbose level for good_prog to check log_level is taken into account */\ntools/testing/selftests/bpf/prog_tests/log_buf.c:117:\tbpf_program__set_log_buf(skel-\u003eprogs.good_prog, good_log_buf, log_buf_sz);\ntools/testing/selftests/bpf/prog_tests/log_buf.c-118-\tbpf_program__set_log_level(skel-\u003eprogs.good_prog, 1);\n--\ntools/testing/selftests/bpf/prog_tests/log_buf.c=272=static void prog_log_buf_size_limit(void)\n--\ntools/testing/selftests/bpf/prog_tests/log_buf.c-282-\ntools/testing/selftests/bpf/prog_tests/log_buf.c:283:\terr = bpf_program__set_log_buf(skel-\u003eprogs.good_prog, log_buf,\ntools/testing/selftests/bpf/prog_tests/log_buf.c-284-\t\t\t\t       (size_t)UINT_MAX + 1);\n--\ntools/testing/selftests/bpf/prog_tests/log_fixup.c=14=static void bad_core_relo(size_t log_buf_size, enum trunc_type trunc_type)\n--\ntools/testing/selftests/bpf/prog_tests/log_fixup.c-25-\tmemset(log_buf, 0, sizeof(log_buf));\ntools/testing/selftests/bpf/prog_tests/log_fixup.c:26:\tbpf_program__set_log_buf(skel-\u003eprogs.bad_relo, log_buf, log_buf_size ?: sizeof(log_buf));\ntools/testing/selftests/bpf/prog_tests/log_fixup.c-27-\tbpf_program__set_log_level(skel-\u003eprogs.bad_relo, 1 | 8); /* BPF_LOG_FIXED to force truncation */\n--\ntools/testing/selftests/bpf/prog_tests/log_fixup.c=72=static void bad_core_relo_subprog(void)\n--\ntools/testing/selftests/bpf/prog_tests/log_fixup.c-82-\tbpf_program__set_autoload(skel-\u003eprogs.bad_relo_subprog, true);\ntools/testing/selftests/bpf/prog_tests/log_fixup.c:83:\tbpf_program__set_log_buf(skel-\u003eprogs.bad_relo_subprog, log_buf, sizeof(log_buf));\ntools/testing/selftests/bpf/prog_tests/log_fixup.c-84-\n--\ntools/testing/selftests/bpf/prog_tests/log_fixup.c=104=static void missing_map(void)\n--\ntools/testing/selftests/bpf/prog_tests/log_fixup.c-116-\tbpf_program__set_autoload(skel-\u003eprogs.use_missing_map, true);\ntools/testing/selftests/bpf/prog_tests/log_fixup.c:117:\tbpf_program__set_log_buf(skel-\u003eprogs.use_missing_map, log_buf, sizeof(log_buf));\ntools/testing/selftests/bpf/prog_tests/log_fixup.c-118-\n--\ntools/testing/selftests/bpf/prog_tests/log_fixup.c=138=static void missing_kfunc(void)\n--\ntools/testing/selftests/bpf/prog_tests/log_fixup.c-148-\tbpf_program__set_autoload(skel-\u003eprogs.use_missing_kfunc, true);\ntools/testing/selftests/bpf/prog_tests/log_fixup.c:149:\tbpf_program__set_log_buf(skel-\u003eprogs.use_missing_kfunc, log_buf, sizeof(log_buf));\ntools/testing/selftests/bpf/prog_tests/log_fixup.c-150-\n--\ntools/testing/selftests/bpf/prog_tests/test_struct_ops_arena.c=54=static void arena_arg_attach_one(int target_fd, const char *prog_name)\n--\ntools/testing/selftests/bpf/prog_tests/test_struct_ops_arena.c-76-\tlog_buf[0] = '\\0';\ntools/testing/selftests/bpf/prog_tests/test_struct_ops_arena.c:77:\tbpf_program__set_log_buf(prog, log_buf, sizeof(log_buf));\ntools/testing/selftests/bpf/prog_tests/test_struct_ops_arena.c-78-\terr = struct_ops_arena_attach__load(skel);\n--\ntools/testing/selftests/bpf/prog_tests/tracing_failure.c=31=static void test_tracing_fail_prog(const char *prog_name, const char *exp_msg)\n--\ntools/testing/selftests/bpf/prog_tests/tracing_failure.c-46-\tbpf_program__set_autoload(prog, true);\ntools/testing/selftests/bpf/prog_tests/tracing_failure.c:47:\tbpf_program__set_log_buf(prog, log_buf, sizeof(log_buf));\ntools/testing/selftests/bpf/prog_tests/tracing_failure.c-48-\n--\ntools/testing/selftests/bpf/test_loader.c=743=static void prepare_case(struct test_loader *tester,\n--\ntools/testing/selftests/bpf/test_loader.c-754-\ntools/testing/selftests/bpf/test_loader.c:755:\tbpf_program__set_log_buf(prog, tester-\u003elog_buf, tester-\u003elog_buf_sz);\ntools/testing/selftests/bpf/test_loader.c-756-\n"
}

5/2 2026/09/14 13:07 llm patch-evaluator
1m Model:
gemini-3.8-flash

Args:
null

Results:
null

Tokens:
							input: 7203
							output: 80
							thoughts: 224
						

Thoughts:
**My Assessment: No Kernel Impact**

Okay, let's break this down. The modifications are isolated to `tools/lib/bpf/libbpf.c` and `tools/testing/selftests/bpf/prog_tests/log_buf.c`. Both of those paths are *strictly* within the `tools/` directory, so this is all user-space, no kernel-level stuff here.

Based on the triage guidance, changes that are non-kernel and not executable are totally fine and explicitly include this kind of modification. It’s modifications to documentation, comments, spelling fixes, or user-space directories, self-tests, samples, or scripts that don't affect the compiled kernel image or kernel modules.

Consequently, `WorthFuzzing` is `false`, and `FocusSymbols` and `EnableConfigs` are empty. The rationale is clear: this patch is *exclusively* user-space code within the `tools/` directory. It won't touch the kernel image or any modules.

Time to call `set-results`.



6/2 2026/09/14 13:08 tool set-results
0m Args:
{
  "EnableConfigs": [],
  "FocusSymbols": [],
  "Reasoning": "The patch modifies user-space code in tools/lib/bpf (libbpf) and tools/testing/selftests/bpf, which does not alter the compiled kernel image (vmlinux) or any kernel modules.",
  "WorthFuzzing": false
}

Results:
{
  "EnableConfigs": null,
  "FocusSymbols": [],
  "Reasoning": "The patch modifies user-space code in tools/lib/bpf (libbpf) and tools/testing/selftests/bpf, which does not alter the compiled kernel image (vmlinux) or any kernel modules.",
  "WorthFuzzing": false
}

7/1 2026/09/14 13:08 action If
0m Args:
{
  "WorthFuzzing": false
}

Results:
null

LLM Calls Summary:
Total Calls Total Tokens Avg Tokens Total Duration (Seconds) Avg Duration (Seconds)
Tool Calls Summary:
Total Calls Total Duration (Seconds) Avg Duration (Seconds)