falloc.h 186 B

123456789
  1. #ifndef _FALLOC_H_
  2. #define _FALLOC_H_
  3. #define FALLOC_FL_KEEP_SIZE 0x01 /* default is extend size */
  4. #define FALLOC_FL_PUNCH_HOLE 0x02 /* de-allocates range */
  5. #endif /* _FALLOC_H_ */