From bf7ecb7cfe9145d8e169454ff6538a307124f82c Mon Sep 17 00:00:00 2001 From: Dmitry Vyukov Date: Fri, 3 May 2024 14:16:11 +0200 Subject: pkg/cover: move KernelModule from pkg/host In preparation for pkg/host removal. Nothing in pkg/host uses KernelModule, and pkg/cover is effectively the only user of KernelModule. --- pkg/host/machine_info.go | 6 ------ 1 file changed, 6 deletions(-) (limited to 'pkg/host') diff --git a/pkg/host/machine_info.go b/pkg/host/machine_info.go index 698a575a1..ee344dd0b 100644 --- a/pkg/host/machine_info.go +++ b/pkg/host/machine_info.go @@ -9,12 +9,6 @@ import ( "strings" ) -type KernelModule struct { - Name string `json:"Name"` - Addr uint64 `json:"Addr"` - Size uint64 `json:"Size"` -} - type FileInfo struct { Name string Exists bool -- cgit mrf-deployment