Merge pull request #4767 from lamyj/1.1-maint-missing_st_birthtime

Backport #4763 to 1.1-maint (FUSE mount missing st_birthtime)
This commit is contained in:
TW 2019-09-27 16:45:23 +02:00 committed by GitHub
commit 3d012c1dd4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -541,10 +541,12 @@ class FuseOperations(llfuse.Operations):
entry.st_mtime_ns = mtime_ns
entry.st_atime_ns = item.get('atime', mtime_ns)
entry.st_ctime_ns = item.get('ctime', mtime_ns)
entry.st_birthtime_ns = item.get('birthtime', mtime_ns)
else:
entry.st_mtime = mtime_ns / 1e9
entry.st_atime = item.get('atime', mtime_ns) / 1e9
entry.st_ctime = item.get('ctime', mtime_ns) / 1e9
entry.st_birthtime = item.get('birthtime', mtime_ns) / 1e9
return entry
def listxattr(self, inode, ctx=None):