1234567891011121314 |
-
-
- @@ -212,11 +212,6 @@
- */
- static inline int unmap_file_region(int fd, off_t offset, off_t length)
- {
- -#ifdef FALLOC_FL_PUNCH_HOLE
- - if (fallocate(fd, FALLOC_FL_KEEP_SIZE | FALLOC_FL_PUNCH_HOLE,
- - offset, length) == 0)
- - return 0;
- -#endif
- return -1;
- }
-
|