mirror of
https://github.com/ceph/ceph-csi.git
synced 2025-01-30 08:39:29 +00:00
10 lines
157 B
Go
10 lines
157 B
Go
|
// +build dragonfly freebsd openbsd netbsd
|
||
|
|
||
|
package godirwalk
|
||
|
|
||
|
import "syscall"
|
||
|
|
||
|
func inoFromDirent(de *syscall.Dirent) uint64 {
|
||
|
return uint64(de.Fileno)
|
||
|
}
|