diff options
Diffstat (limited to 'vendor/github.com/ncruces/go-sqlite3/vfs/os_f2fs_linux.go')
-rw-r--r-- | vendor/github.com/ncruces/go-sqlite3/vfs/os_f2fs_linux.go | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/vendor/github.com/ncruces/go-sqlite3/vfs/os_f2fs_linux.go b/vendor/github.com/ncruces/go-sqlite3/vfs/os_f2fs_linux.go index 487f0c7d9..6ecb60edb 100644 --- a/vendor/github.com/ncruces/go-sqlite3/vfs/os_f2fs_linux.go +++ b/vendor/github.com/ncruces/go-sqlite3/vfs/os_f2fs_linux.go @@ -1,4 +1,4 @@ -//go:build (amd64 || arm64 || riscv64) && !sqlite3_nosys +//go:build (amd64 || arm64 || riscv64 || ppc64le) && !sqlite3_nosys package vfs @@ -9,6 +9,7 @@ import ( ) const ( + // https://godbolt.org/z/1PcK5vea3 _F2FS_IOC_START_ATOMIC_WRITE = 62721 _F2FS_IOC_COMMIT_ATOMIC_WRITE = 62722 _F2FS_IOC_ABORT_ATOMIC_WRITE = 62725 |