Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 2 additions & 4 deletions thorlog/v3/kernelmodule.go
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down