Skip to content

Commit

Permalink
Merge pull request #252 from FrankYu/master
Browse files Browse the repository at this point in the history
lib: fix the build error on centos
  • Loading branch information
mitake committed Jun 15, 2016
2 parents 44d864b + f4863a7 commit a629775
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions lib/common.c
Expand Up @@ -23,6 +23,13 @@
#include "work.h"
#include "common.h"

#ifndef FALLOC_FL_KEEP_SIZE
#define FALLOC_FL_KEEP_SIZE 0x01
#endif
#ifndef FALLOC_FL_PUNCH_HOLE
#define FALLOC_FL_PUNCH_HOLE 0x02
#endif

static struct work_queue *util_wqueue;

void register_util_wq(struct work_queue *wq)
Expand Down

0 comments on commit a629775

Please sign in to comment.