add, import, assistant: Better preserve the mtime of symlinks, when when adding content that gets deduplicated.
Note that this turned out to remove a syscall, not add any expense. Otherwise, I would not have done it.
This commit is contained in:
parent
5ff9224b10
commit
98fc7e8a19
8 changed files with 40 additions and 33 deletions
|
@ -49,6 +49,9 @@ instance Eq InodeCacheKey where
|
|||
inodeCacheToKey :: InodeComparisonType -> InodeCache -> InodeCacheKey
|
||||
inodeCacheToKey ct (InodeCache prim) = InodeCacheKey ct prim
|
||||
|
||||
inodeCacheToMtime :: InodeCache -> EpochTime
|
||||
inodeCacheToMtime (InodeCache (InodeCachePrim _ _ mtime)) = mtime
|
||||
|
||||
showInodeCache :: InodeCache -> String
|
||||
showInodeCache (InodeCache (InodeCachePrim inode size mtime)) = unwords
|
||||
[ show inode
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue