- FALLOC_FL_COLLAPSE_RANGE - Static variable in class org.apache.ignite.internal.processors.compress.NativeFileSystemLinux
-
FALLOC_FL_COLLAPSE_RANGE is used to remove a range of a file
without leaving a hole in the file.
- FALLOC_FL_INSERT_RANGE - Static variable in class org.apache.ignite.internal.processors.compress.NativeFileSystemLinux
-
FALLOC_FL_INSERT_RANGE is use to insert space within the file size without
overwriting any existing data.
- FALLOC_FL_KEEP_SIZE - Static variable in class org.apache.ignite.internal.processors.compress.NativeFileSystemLinux
-
default is extend size
- FALLOC_FL_NO_HIDE_STALE - Static variable in class org.apache.ignite.internal.processors.compress.NativeFileSystemLinux
-
reserved codepoint
- FALLOC_FL_PUNCH_HOLE - Static variable in class org.apache.ignite.internal.processors.compress.NativeFileSystemLinux
-
de-allocates range
- FALLOC_FL_UNSHARE_RANGE - Static variable in class org.apache.ignite.internal.processors.compress.NativeFileSystemLinux
-
FALLOC_FL_UNSHARE_RANGE is used to unshare shared blocks within the
file size without overwriting any existing data.
- FALLOC_FL_ZERO_RANGE - Static variable in class org.apache.ignite.internal.processors.compress.NativeFileSystemLinux
-
FALLOC_FL_ZERO_RANGE is used to convert a range of file to zeros preferably
without issuing data IO.
- fallocate(int, int, long, long) - Method in interface org.apache.ignite.internal.processors.compress.NativeFileSystemLinux.LinuxNativeLibC
-
Allows the caller to directly manipulate the allocated
disk space for the file referred to by fd for the byte range starting
at off offset and continuing for len bytes.