int index = (root->log_transid + 1) % 2;
 
                if (btrfs_need_log_full_commit(trans)) {
-                       ret = -EAGAIN;
+                       ret = BTRFS_LOG_FORCE_COMMIT;
                        goto out;
                }
 
                 * writing.
                 */
                if (zoned && !created) {
-                       ret = -EAGAIN;
+                       ret = BTRFS_LOG_FORCE_COMMIT;
                        goto out;
                }
 
 
        /* bail out if we need to do a full commit */
        if (btrfs_need_log_full_commit(trans)) {
-               ret = -EAGAIN;
+               ret = BTRFS_LOG_FORCE_COMMIT;
                mutex_unlock(&root->log_mutex);
                goto out;
        }
                }
                btrfs_wait_tree_log_extents(log, mark);
                mutex_unlock(&log_root_tree->log_mutex);
-               ret = -EAGAIN;
+               ret = BTRFS_LOG_FORCE_COMMIT;
                goto out;
        }
 
                blk_finish_plug(&plug);
                btrfs_wait_tree_log_extents(log, mark);
                mutex_unlock(&log_root_tree->log_mutex);
-               ret = -EAGAIN;
+               ret = BTRFS_LOG_FORCE_COMMIT;
                goto out_wake_log_root;
        }
 
            inode_only == LOG_INODE_ALL &&
            inode->last_unlink_trans >= trans->transid) {
                btrfs_set_log_full_commit(trans);
-               ret = 1;
+               ret = BTRFS_LOG_FORCE_COMMIT;
                goto out_unlock;
        }
 
        bool log_dentries = false;
 
        if (btrfs_test_opt(fs_info, NOTREELOG)) {
-               ret = 1;
+               ret = BTRFS_LOG_FORCE_COMMIT;
                goto end_no_trans;
        }
 
        if (btrfs_root_refs(&root->root_item) == 0) {
-               ret = 1;
+               ret = BTRFS_LOG_FORCE_COMMIT;
                goto end_no_trans;
        }
 
 end_trans:
        if (ret < 0) {
                btrfs_set_log_full_commit(trans);
-               ret = 1;
+               ret = BTRFS_LOG_FORCE_COMMIT;
        }
 
        if (ret)
 
 /* return value for btrfs_log_dentry_safe that means we don't need to log it at all */
 #define BTRFS_NO_LOG_SYNC 256
 
+/* We can't use the tree log for whatever reason, force a transaction commit */
+#define BTRFS_LOG_FORCE_COMMIT                         (1)
+
 struct btrfs_log_ctx {
        int log_ret;
        int log_transid;