Don't add hard links size twice

This commit is contained in:
EpicPlayerA10 2024-02-29 17:10:17 +01:00
parent f68965e7c9
commit 51c2d40639
No known key found for this signature in database
GPG Key ID: F3110BF7F9F1AB74

View File

@ -1,6 +1,7 @@
package filesystem
import (
"slices"
"sync"
"sync/atomic"
"syscall"
@ -166,6 +167,8 @@ func (fs *Filesystem) DirectorySize(dir string) (int64, error) {
var size int64
var st syscall.Stat_t
var hardLinks []uint64
err = godirwalk.Walk(d, &godirwalk.Options{
Unsorted: true,
Callback: func(p string, e *godirwalk.Dirent) error {
@ -184,6 +187,16 @@ func (fs *Filesystem) DirectorySize(dir string) (int64, error) {
if !e.IsDir() {
_ = syscall.Lstat(p, &st)
// Hard links have the same inode number
if slices.Contains(hardLinks, st.Ino) {
// Don't add hard links size twice
return godirwalk.SkipThis
}
if st.Nlink > 1 {
hardLinks = append(hardLinks, st.Ino)
}
atomic.AddInt64(&size, st.Size)
}