Skip to content

Commit f9537ae

Browse files
committed
fsverity_test.go: fix major/minor device number resolving
Signed-off-by: Alexey Lunev <[email protected]>
1 parent 8a8e50e commit f9537ae

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

internal/fsverity/fsverity_test.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ import (
2929
"testing"
3030

3131
"github.com/containerd/containerd/v2/pkg/testutil"
32+
"golang.org/x/sys/unix"
3233
)
3334

3435
type superblockROFeatures struct {
@@ -143,8 +144,7 @@ func resolveDevicePath(path string) (_ string, e error) {
143144
}
144145

145146
// resolve to device path
146-
maj := (stat.Dev >> 8) & 0xff
147-
min := stat.Dev & 0xff
147+
major, minor := unix.Major(stat.Dev), unix.Minor(stat.Dev)
148148

149149
m, err := os.Open("/proc/self/mountinfo")
150150
if err != nil {
@@ -162,7 +162,7 @@ func resolveDevicePath(path string) (_ string, e error) {
162162
scanner := bufio.NewScanner(m)
163163

164164
var entry string
165-
sub := fmt.Sprintf("%d:%d", maj, min)
165+
sub := fmt.Sprintf("%d:%d", major, minor)
166166
for scanner.Scan() {
167167
if strings.Contains(scanner.Text(), sub) {
168168
entry = scanner.Text()

0 commit comments

Comments
 (0)