From e32f7eeefc4a217dfd9851468bb33dd3eafeffb6 Mon Sep 17 00:00:00 2001 From: Eugene Syromyatnikov Date: Thu, 22 Sep 2016 00:21:07 +0300 Subject: [PATCH] xlat: add default values for falloc_flags constants In order to avoid dependence of declared constants to headers available on build system. * xlat/falloc_flags.in: Add default values for constants. --- xlat/falloc_flags.in | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/xlat/falloc_flags.in b/xlat/falloc_flags.in index 936e960e..9d8ecf21 100644 --- a/xlat/falloc_flags.in +++ b/xlat/falloc_flags.in @@ -1,6 +1,6 @@ -FALLOC_FL_KEEP_SIZE -FALLOC_FL_PUNCH_HOLE -FALLOC_FL_NO_HIDE_STALE -FALLOC_FL_COLLAPSE_RANGE -FALLOC_FL_ZERO_RANGE -FALLOC_FL_INSERT_RANGE +FALLOC_FL_KEEP_SIZE 0x01 +FALLOC_FL_PUNCH_HOLE 0x02 +FALLOC_FL_NO_HIDE_STALE 0x04 +FALLOC_FL_COLLAPSE_RANGE 0x08 +FALLOC_FL_ZERO_RANGE 0x10 +FALLOC_FL_INSERT_RANGE 0x20 -- 2.40.0