am d71b0943: am 2d4a347e: am fad9b3eb: Merge "sdcard: Turn on noatime for fuse mounted sdcard"
* commit 'd71b0943de271d308ec1aeb1fa834dd35fedee50': sdcard: Turn on noatime for fuse mounted sdcard
This commit is contained in:
commit
bfe72ddb20
|
@ -1860,7 +1860,8 @@ static int run(const char* source_path, const char* dest_path, uid_t uid,
|
|||
"fd=%i,rootmode=40000,default_permissions,allow_other,user_id=%d,group_id=%d",
|
||||
fd, uid, gid);
|
||||
|
||||
res = mount("/dev/fuse", dest_path, "fuse", MS_NOSUID | MS_NODEV | MS_NOEXEC, opts);
|
||||
res = mount("/dev/fuse", dest_path, "fuse", MS_NOSUID | MS_NODEV | MS_NOEXEC |
|
||||
MS_NOATIME, opts);
|
||||
if (res < 0) {
|
||||
ERROR("cannot mount fuse filesystem: %s\n", strerror(errno));
|
||||
goto error;
|
||||
|
|
Loading…
Reference in New Issue