#include <linux/slab.h>
 #include <linux/blkdev.h>
 #include <linux/list_sort.h>
-#include "ctree.h"
-#include "transaction.h"
+#include "tree-log.h"
 #include "disk-io.h"
 #include "locking.h"
 #include "print-tree.h"
 #include "backref.h"
-#include "tree-log.h"
 #include "hash.h"
 
 /* magic values for the inode_only field in btrfs_log_inode:
 
        mutex_lock(&root->log_mutex);
        if (root->log_root) {
-               if (ACCESS_ONCE(root->fs_info->last_trans_log_full_commit) ==
-                   trans->transid) {
+               if (btrfs_need_log_full_commit(root->fs_info, trans)) {
                        ret = -EAGAIN;
                        goto out;
                }
-
                if (!root->log_start_pid) {
                        root->log_start_pid = current->pid;
                        clear_bit(BTRFS_ROOT_MULTI_LOG_TASKS, &root->state);
        }
 
        /* bail out if we need to do a full commit */
-       if (ACCESS_ONCE(root->fs_info->last_trans_log_full_commit) ==
-           trans->transid) {
+       if (btrfs_need_log_full_commit(root->fs_info, trans)) {
                ret = -EAGAIN;
                btrfs_free_logged_extents(log, log_transid);
                mutex_unlock(&root->log_mutex);
                blk_finish_plug(&plug);
                btrfs_abort_transaction(trans, root, ret);
                btrfs_free_logged_extents(log, log_transid);
-               ACCESS_ONCE(root->fs_info->last_trans_log_full_commit) =
-                                                               trans->transid;
+               btrfs_set_log_full_commit(root->fs_info, trans);
                mutex_unlock(&root->log_mutex);
                goto out;
        }
                        list_del_init(&root_log_ctx.list);
 
                blk_finish_plug(&plug);
-               ACCESS_ONCE(root->fs_info->last_trans_log_full_commit) =
-                                                               trans->transid;
+               btrfs_set_log_full_commit(root->fs_info, trans);
+
                if (ret != -ENOSPC) {
                        btrfs_abort_transaction(trans, root, ret);
                        mutex_unlock(&log_root_tree->log_mutex);
         * now that we've moved on to the tree of log tree roots,
         * check the full commit flag again
         */
-       if (ACCESS_ONCE(root->fs_info->last_trans_log_full_commit) ==
-           trans->transid) {
+       if (btrfs_need_log_full_commit(root->fs_info, trans)) {
                blk_finish_plug(&plug);
                btrfs_wait_marked_extents(log, &log->dirty_log_pages, mark);
                btrfs_free_logged_extents(log, log_transid);
                                         EXTENT_DIRTY | EXTENT_NEW);
        blk_finish_plug(&plug);
        if (ret) {
-               ACCESS_ONCE(root->fs_info->last_trans_log_full_commit) =
-                                                               trans->transid;
+               btrfs_set_log_full_commit(root->fs_info, trans);
                btrfs_abort_transaction(trans, root, ret);
                btrfs_free_logged_extents(log, log_transid);
                mutex_unlock(&log_root_tree->log_mutex);
         */
        ret = write_ctree_super(trans, root->fs_info->tree_root, 1);
        if (ret) {
-               ACCESS_ONCE(root->fs_info->last_trans_log_full_commit) =
-                                                               trans->transid;
+               btrfs_set_log_full_commit(root->fs_info, trans);
                btrfs_abort_transaction(trans, root, ret);
                goto out_wake_log_root;
        }
 out_unlock:
        mutex_unlock(&BTRFS_I(dir)->log_mutex);
        if (ret == -ENOSPC) {
-               root->fs_info->last_trans_log_full_commit = trans->transid;
+               btrfs_set_log_full_commit(root->fs_info, trans);
                ret = 0;
        } else if (ret < 0)
                btrfs_abort_transaction(trans, root, ret);
                                  dirid, &index);
        mutex_unlock(&BTRFS_I(inode)->log_mutex);
        if (ret == -ENOSPC) {
-               root->fs_info->last_trans_log_full_commit = trans->transid;
+               btrfs_set_log_full_commit(root->fs_info, trans);
                ret = 0;
        } else if (ret < 0 && ret != -ENOENT)
                btrfs_abort_transaction(trans, root, ret);
                         * make sure any commits to the log are forced
                         * to be full commits
                         */
-                       root->fs_info->last_trans_log_full_commit =
-                               trans->transid;
+                       btrfs_set_log_full_commit(root->fs_info, trans);
                        ret = 1;
                        break;
                }
                goto end_no_trans;
        }
 
+       /*
+        * The prev transaction commit doesn't complete, we need do
+        * full commit by ourselves.
+        */
        if (root->fs_info->last_trans_log_full_commit >
            root->fs_info->last_trans_committed) {
                ret = 1;
 end_trans:
        dput(old_parent);
        if (ret < 0) {
-               root->fs_info->last_trans_log_full_commit = trans->transid;
+               btrfs_set_log_full_commit(root->fs_info, trans);
                ret = 1;
        }
 
 
 #ifndef __TREE_LOG_
 #define __TREE_LOG_
 
+#include "ctree.h"
+#include "transaction.h"
+
 /* return value for btrfs_log_dentry_safe that means we don't need to log it at all */
 #define BTRFS_NO_LOG_SYNC 256
 
        INIT_LIST_HEAD(&ctx->list);
 }
 
+static inline void btrfs_set_log_full_commit(struct btrfs_fs_info *fs_info,
+                                            struct btrfs_trans_handle *trans)
+{
+       ACCESS_ONCE(fs_info->last_trans_log_full_commit) = trans->transid;
+}
+
+static inline int btrfs_need_log_full_commit(struct btrfs_fs_info *fs_info,
+                                            struct btrfs_trans_handle *trans)
+{
+       return ACCESS_ONCE(fs_info->last_trans_log_full_commit) ==
+               trans->transid;
+}
+
 int btrfs_sync_log(struct btrfs_trans_handle *trans,
                   struct btrfs_root *root, struct btrfs_log_ctx *ctx);
 int btrfs_free_log(struct btrfs_trans_handle *trans, struct btrfs_root *root);