Commit f64ce7b8 authored by David Sterba's avatar David Sterba

btrfs: async-thread: convert defines to enums

Reviewed-by: default avatarNikolay Borisov <nborisov@suse.com>
Reviewed-by: default avatarAnand Jain <anand.jain@oracle.com>
Signed-off-by: default avatarDavid Sterba <dsterba@suse.com>
parent e13976cf
...@@ -12,9 +12,11 @@ ...@@ -12,9 +12,11 @@
#include "async-thread.h" #include "async-thread.h"
#include "ctree.h" #include "ctree.h"
#define WORK_DONE_BIT 0 enum {
#define WORK_ORDER_DONE_BIT 1 WORK_DONE_BIT,
#define WORK_HIGH_PRIO_BIT 2 WORK_ORDER_DONE_BIT,
WORK_HIGH_PRIO_BIT,
};
#define NO_THRESHOLD (-1) #define NO_THRESHOLD (-1)
#define DFT_THRESHOLD (32) #define DFT_THRESHOLD (32)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment