Commit e13976cf authored by David Sterba's avatar David Sterba

btrfs: tree-log: convert defines to enums

Used only for in-memory state tracking.
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 82253cb6
...@@ -24,10 +24,12 @@ ...@@ -24,10 +24,12 @@
* LOG_INODE_EXISTS means to log just enough to recreate the inode * LOG_INODE_EXISTS means to log just enough to recreate the inode
* during log replay * during log replay
*/ */
#define LOG_INODE_ALL 0 enum {
#define LOG_INODE_EXISTS 1 LOG_INODE_ALL,
#define LOG_OTHER_INODE 2 LOG_INODE_EXISTS,
#define LOG_OTHER_INODE_ALL 3 LOG_OTHER_INODE,
LOG_OTHER_INODE_ALL,
};
/* /*
* directory trouble cases * directory trouble cases
...@@ -81,10 +83,12 @@ ...@@ -81,10 +83,12 @@
* The last stage is to deal with directories and links and extents * The last stage is to deal with directories and links and extents
* and all the other fun semantics * and all the other fun semantics
*/ */
#define LOG_WALK_PIN_ONLY 0 enum {
#define LOG_WALK_REPLAY_INODES 1 LOG_WALK_PIN_ONLY,
#define LOG_WALK_REPLAY_DIR_INDEX 2 LOG_WALK_REPLAY_INODES,
#define LOG_WALK_REPLAY_ALL 3 LOG_WALK_REPLAY_DIR_INDEX,
LOG_WALK_REPLAY_ALL,
};
static int btrfs_log_inode(struct btrfs_trans_handle *trans, static int btrfs_log_inode(struct btrfs_trans_handle *trans,
struct btrfs_root *root, struct btrfs_inode *inode, struct btrfs_root *root, struct btrfs_inode *inode,
......
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