From 376fe49a5514933175b79df0be410dca517f8e42 Mon Sep 17 00:00:00 2001 From: Pierre Baron Date: Tue, 14 Oct 2025 13:56:58 +0200 Subject: [PATCH] fix: remove DependsOn field --- thorlog/v3/kernelmodule.go | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/thorlog/v3/kernelmodule.go b/thorlog/v3/kernelmodule.go index 9c0b0c1..82e9bc1 100644 --- a/thorlog/v3/kernelmodule.go +++ b/thorlog/v3/kernelmodule.go @@ -9,10 +9,8 @@ type LinuxKernelModule struct { // Whether this modules was compiled into the kernel IncludedInKernel bool `json:"included_in_kernel" textlog:"included_in_kernel"` - Refcount int `json:"ref_count"` - UsedBy StringList `json:"used_by"` - // List of modules that this module depends on (from /proc/modules) - DependsOn StringList `json:"depends_on,omitempty"` + Refcount int `json:"ref_count"` + UsedBy StringList `json:"used_by"` Version string `json:"version"` Parameters KeyValueList `json:"parameters,omitempty" textlog:"parameters,omitempty"` // Current load state of the module: "Live", "Loading", or "Unloading" (from /proc/modules)