mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2024-01-19 02:48:24 +00:00
FUSE: do not change crtime, uid, gid on save
This commit is contained in:
parent
8dfeba8023
commit
d40de39e75
|
@ -191,14 +191,16 @@ func (fh *FileHandle) Flush(ctx context.Context, req *fuse.FlushRequest) error {
|
||||||
|
|
||||||
if fh.f.entry.Attributes != nil {
|
if fh.f.entry.Attributes != nil {
|
||||||
fh.f.entry.Attributes.Mime = fh.contentType
|
fh.f.entry.Attributes.Mime = fh.contentType
|
||||||
if req.Uid != 0 {
|
if fh.f.entry.Attributes.Uid == 0 {
|
||||||
fh.f.entry.Attributes.Uid = req.Uid
|
fh.f.entry.Attributes.Uid = req.Uid
|
||||||
}
|
}
|
||||||
if req.Gid != 0 {
|
if fh.f.entry.Attributes.Gid == 0 {
|
||||||
fh.f.entry.Attributes.Gid = req.Gid
|
fh.f.entry.Attributes.Gid = req.Gid
|
||||||
}
|
}
|
||||||
|
if fh.f.entry.Attributes.Crtime == 0 {
|
||||||
|
fh.f.entry.Attributes.Crtime = time.Now().Unix()
|
||||||
|
}
|
||||||
fh.f.entry.Attributes.Mtime = time.Now().Unix()
|
fh.f.entry.Attributes.Mtime = time.Now().Unix()
|
||||||
fh.f.entry.Attributes.Crtime = time.Now().Unix()
|
|
||||||
fh.f.entry.Attributes.FileMode = uint32(os.FileMode(fh.f.entry.Attributes.FileMode) &^ fh.f.wfs.option.Umask)
|
fh.f.entry.Attributes.FileMode = uint32(os.FileMode(fh.f.entry.Attributes.FileMode) &^ fh.f.wfs.option.Umask)
|
||||||
fh.f.entry.Attributes.Collection = fh.dirtyPages.collection
|
fh.f.entry.Attributes.Collection = fh.dirtyPages.collection
|
||||||
fh.f.entry.Attributes.Replication = fh.dirtyPages.replication
|
fh.f.entry.Attributes.Replication = fh.dirtyPages.replication
|
||||||
|
|
Loading…
Reference in a new issue