mirror of
https://github.com/s3fs-fuse/s3fs-fuse.git
synced 2024-11-18 02:05:13 +00:00
Merge pull request #820 from gaul/big-writes
Enable big writes if capable
This commit is contained in:
commit
c5af62b023
@ -3420,6 +3420,10 @@ static void* s3fs_init(struct fuse_conn_info* conn)
|
|||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
if((unsigned int)conn->capable & FUSE_CAP_BIG_WRITES){
|
||||||
|
conn->want |= FUSE_CAP_BIG_WRITES;
|
||||||
|
}
|
||||||
|
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user