blob: 122e68b89a5ade4d64dcaf7ce887980c17fc9d5e [file] [log] [blame]
David Sterba9888c342018-04-03 19:16:55 +02001/* SPDX-License-Identifier: GPL-2.0 */
Chris Masone02119d2008-09-05 16:13:11 -04002/*
3 * Copyright (C) 2008 Oracle. All rights reserved.
Chris Masone02119d2008-09-05 16:13:11 -04004 */
5
David Sterba9888c342018-04-03 19:16:55 +02006#ifndef BTRFS_TREE_LOG_H
7#define BTRFS_TREE_LOG_H
Chris Masone02119d2008-09-05 16:13:11 -04008
Miao Xie995946d2014-04-02 19:51:06 +08009#include "ctree.h"
10#include "transaction.h"
11
Chris Mason257c62e2009-10-13 13:21:08 -040012/* return value for btrfs_log_dentry_safe that means we don't need to log it at all */
13#define BTRFS_NO_LOG_SYNC 256
14
Miao Xie8b050d32014-02-20 18:08:58 +080015struct btrfs_log_ctx {
16 int log_ret;
Miao Xied1433de2014-02-20 18:08:59 +080017 int log_transid;
Filipe Manana8407f552014-09-05 15:14:39 +010018 int io_err;
Filipe Manana2f2ff0e2015-03-20 17:19:46 +000019 bool log_new_dentries;
Filipe Manana28a23592016-08-23 21:13:51 +010020 struct inode *inode;
Miao Xie8b050d32014-02-20 18:08:58 +080021 struct list_head list;
22};
23
Filipe Manana28a23592016-08-23 21:13:51 +010024static inline void btrfs_init_log_ctx(struct btrfs_log_ctx *ctx,
25 struct inode *inode)
Miao Xie8b050d32014-02-20 18:08:58 +080026{
27 ctx->log_ret = 0;
Miao Xied1433de2014-02-20 18:08:59 +080028 ctx->log_transid = 0;
Filipe Manana8407f552014-09-05 15:14:39 +010029 ctx->io_err = 0;
Filipe Manana2f2ff0e2015-03-20 17:19:46 +000030 ctx->log_new_dentries = false;
Filipe Manana28a23592016-08-23 21:13:51 +010031 ctx->inode = inode;
Miao Xie8b050d32014-02-20 18:08:58 +080032 INIT_LIST_HEAD(&ctx->list);
33}
34
Miao Xie995946d2014-04-02 19:51:06 +080035static inline void btrfs_set_log_full_commit(struct btrfs_fs_info *fs_info,
36 struct btrfs_trans_handle *trans)
37{
Seraphime Kirkovski20c7bce2016-12-15 14:38:16 +010038 WRITE_ONCE(fs_info->last_trans_log_full_commit, trans->transid);
Miao Xie995946d2014-04-02 19:51:06 +080039}
40
41static inline int btrfs_need_log_full_commit(struct btrfs_fs_info *fs_info,
42 struct btrfs_trans_handle *trans)
43{
Seraphime Kirkovski20c7bce2016-12-15 14:38:16 +010044 return READ_ONCE(fs_info->last_trans_log_full_commit) ==
Miao Xie995946d2014-04-02 19:51:06 +080045 trans->transid;
46}
47
Chris Masone02119d2008-09-05 16:13:11 -040048int btrfs_sync_log(struct btrfs_trans_handle *trans,
Miao Xie8b050d32014-02-20 18:08:58 +080049 struct btrfs_root *root, struct btrfs_log_ctx *ctx);
Chris Masone02119d2008-09-05 16:13:11 -040050int btrfs_free_log(struct btrfs_trans_handle *trans, struct btrfs_root *root);
Yan, Zheng4a500fd2010-05-16 10:49:59 -040051int btrfs_free_log_root_tree(struct btrfs_trans_handle *trans,
52 struct btrfs_fs_info *fs_info);
Chris Masone02119d2008-09-05 16:13:11 -040053int btrfs_recover_log_trees(struct btrfs_root *tree_root);
54int btrfs_log_dentry_safe(struct btrfs_trans_handle *trans,
Nikolay Borisove5b84f7a2018-02-27 17:37:18 +020055 struct dentry *dentry,
Filipe Manana49dae1b2014-09-06 22:34:39 +010056 const loff_t start,
57 const loff_t end,
Miao Xie8b050d32014-02-20 18:08:58 +080058 struct btrfs_log_ctx *ctx);
Chris Masone02119d2008-09-05 16:13:11 -040059int btrfs_del_dir_entries_in_log(struct btrfs_trans_handle *trans,
60 struct btrfs_root *root,
61 const char *name, int name_len,
Nikolay Borisov49f34d12017-01-18 00:31:32 +020062 struct btrfs_inode *dir, u64 index);
Chris Masone02119d2008-09-05 16:13:11 -040063int btrfs_del_inode_ref_in_log(struct btrfs_trans_handle *trans,
64 struct btrfs_root *root,
65 const char *name, int name_len,
Nikolay Borisova491abb2017-01-18 00:31:33 +020066 struct btrfs_inode *inode, u64 dirid);
Jeff Mahoney143bede2012-03-01 14:56:26 +010067void btrfs_end_log_trans(struct btrfs_root *root);
Chris Mason12fcfd22009-03-24 10:24:20 -040068int btrfs_pin_log_trans(struct btrfs_root *root);
Chris Mason12fcfd22009-03-24 10:24:20 -040069void btrfs_record_unlink_dir(struct btrfs_trans_handle *trans,
Nikolay Borisov4176bdb2017-01-18 00:31:28 +020070 struct btrfs_inode *dir, struct btrfs_inode *inode,
Chris Mason12fcfd22009-03-24 10:24:20 -040071 int for_rename);
Filipe Manana1ec9a1a2016-02-10 10:42:25 +000072void btrfs_record_snapshot_destroy(struct btrfs_trans_handle *trans,
Nikolay Borisov43663552017-01-18 00:31:29 +020073 struct btrfs_inode *dir);
Chris Mason12fcfd22009-03-24 10:24:20 -040074int btrfs_log_new_name(struct btrfs_trans_handle *trans,
Nikolay Borisov9ca5fbfb2017-01-18 00:31:31 +020075 struct btrfs_inode *inode, struct btrfs_inode *old_dir,
Chris Mason12fcfd22009-03-24 10:24:20 -040076 struct dentry *parent);
David Sterba9888c342018-04-03 19:16:55 +020077
Chris Masone02119d2008-09-05 16:13:11 -040078#endif