mirror of
https://github.com/ceph/ceph-csi.git
synced 2025-01-18 02:39:30 +00:00
4a1927f2f3
Update K8s packages in go.mod to v0.32.0 Signed-off-by: Praveen M <m.praveen@ibm.com>
10 lines
147 B
Go
10 lines
147 B
Go
// +build dragonfly
|
|
|
|
package godirwalk
|
|
|
|
import "syscall"
|
|
|
|
func reclen(de *syscall.Dirent) uint64 {
|
|
return (16 + uint64(de.Namlen) + 1 + 7) &^ 7
|
|
}
|