Skip to content

Commit 236e5d9

Browse files
committed
Add nsfs to special devices
1 parent 01459c8 commit 236e5d9

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

filesystems_linux.go

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -264,6 +264,10 @@ func isNetworkFs(m Mount) bool {
264264
}
265265

266266
func isSpecialFs(m Mount) bool {
267+
if m.Device == "nsfs" {
268+
return true
269+
}
270+
267271
return specialMap[int64(m.Stat().Type)]
268272
}
269273

0 commit comments

Comments
 (0)