aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/os_unix.c6
1 files changed, 1 insertions, 5 deletions
diff --git a/src/os_unix.c b/src/os_unix.c
index f45c86cb6..430c5386e 100644
--- a/src/os_unix.c
+++ b/src/os_unix.c
@@ -3910,11 +3910,7 @@ static void setDeviceCharacteristics(unixFile *pFd){
/* Check for support for F2FS atomic batch writes. */
res = osIoctl(pFd->h, F2FS_IOC_GET_FEATURES, &f);
if( res==0 && (f & F2FS_FEATURE_ATOMIC_WRITE) ){
- pFd->deviceCharacteristics =
- SQLITE_IOCAP_BATCH_ATOMIC |
- SQLITE_IOCAP_ATOMIC |
- SQLITE_IOCAP_SEQUENTIAL |
- SQLITE_IOCAP_SAFE_APPEND;
+ pFd->deviceCharacteristics = SQLITE_IOCAP_BATCH_ATOMIC;
}
#endif /* __linux__ && SQLITE_ENABLE_BATCH_ATOMIC_WRITE */