Skip to content

Commit a2bc65c

Browse files
committed
fix imports for linux
Signed-off-by: Niclas Schad <niclas.schad@stackit.cloud>
1 parent 5726292 commit a2bc65c

1 file changed

Lines changed: 10 additions & 1 deletion

File tree

pkg/csi/util/mount/mount_linux.go

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,16 @@
22

33
package mount
44

5-
import "golang.org/x/sys/unix"
5+
import (
6+
"fmt"
7+
"os"
8+
"path/filepath"
9+
"regexp"
10+
"strings"
11+
12+
"golang.org/x/sys/unix"
13+
"k8s.io/klog/v2"
14+
)
615

716
var (
817
pciAddressRegex = regexp.MustCompile(`^[0-9a-fA-F]{4}:[0-9a-fA-F]{2}:[0-9a-fA-F]{2}\.[0-9a-fA-F]$`)

0 commit comments

Comments
 (0)