From 7b9d02491f7b0866ad2699ddfdbf3887c47c1ea0 Mon Sep 17 00:00:00 2001 From: EpicPlayerA10 Date: Thu, 29 Feb 2024 20:54:49 +0100 Subject: [PATCH] optimize --- server/filesystem/disk_space.go | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/server/filesystem/disk_space.go b/server/filesystem/disk_space.go index 30b0f99..6abac42 100644 --- a/server/filesystem/disk_space.go +++ b/server/filesystem/disk_space.go @@ -188,13 +188,14 @@ 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) + // Hard links have the same inode number + if slices.Contains(hardLinks, st.Ino) { + // Don't add hard links size twice + return godirwalk.SkipThis + } else { + hardLinks = append(hardLinks, st.Ino) + } } atomic.AddInt64(&size, st.Size)