2017-03-17 06:18:50 +00:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0 */
|
|
|
|
#ifndef _BCACHEFS_BTREE_UPDATE_H
|
|
|
|
#define _BCACHEFS_BTREE_UPDATE_H
|
|
|
|
|
|
|
|
#include "btree_iter.h"
|
|
|
|
#include "journal.h"
|
|
|
|
|
|
|
|
struct bch_fs;
|
|
|
|
struct btree;
|
|
|
|
|
2022-10-09 09:04:38 +00:00
|
|
|
void bch2_btree_node_prep_for_write(struct btree_trans *,
|
|
|
|
struct btree_path *, struct btree *);
|
2021-08-30 19:18:31 +00:00
|
|
|
bool bch2_btree_bset_insert_key(struct btree_trans *, struct btree_path *,
|
2021-08-25 01:30:06 +00:00
|
|
|
struct btree *, struct btree_node_iter *,
|
|
|
|
struct bkey_i *);
|
2020-02-09 00:06:31 +00:00
|
|
|
void bch2_btree_add_journal_pin(struct bch_fs *, struct btree *, u64);
|
2017-03-17 06:18:50 +00:00
|
|
|
|
2019-12-31 21:17:42 +00:00
|
|
|
enum btree_insert_flags {
|
2022-03-15 01:48:42 +00:00
|
|
|
/* First two bits for journal watermark: */
|
|
|
|
__BTREE_INSERT_NOFAIL = 2,
|
2018-11-19 06:31:41 +00:00
|
|
|
__BTREE_INSERT_NOCHECK_RW,
|
2019-03-22 02:19:57 +00:00
|
|
|
__BTREE_INSERT_LAZY_RW,
|
2017-03-17 06:18:50 +00:00
|
|
|
__BTREE_INSERT_USE_RESERVE,
|
|
|
|
__BTREE_INSERT_JOURNAL_REPLAY,
|
2019-03-08 00:46:10 +00:00
|
|
|
__BTREE_INSERT_JOURNAL_RECLAIM,
|
2017-03-17 06:18:50 +00:00
|
|
|
__BTREE_INSERT_NOWAIT,
|
|
|
|
__BTREE_INSERT_GC_LOCK_HELD,
|
|
|
|
__BCH_HASH_SET_MUST_CREATE,
|
|
|
|
__BCH_HASH_SET_MUST_REPLACE,
|
|
|
|
};
|
|
|
|
|
|
|
|
/* Don't check for -ENOSPC: */
|
|
|
|
#define BTREE_INSERT_NOFAIL (1 << __BTREE_INSERT_NOFAIL)
|
|
|
|
|
2018-11-19 06:31:41 +00:00
|
|
|
#define BTREE_INSERT_NOCHECK_RW (1 << __BTREE_INSERT_NOCHECK_RW)
|
2019-03-22 02:19:57 +00:00
|
|
|
#define BTREE_INSERT_LAZY_RW (1 << __BTREE_INSERT_LAZY_RW)
|
2018-11-19 06:31:41 +00:00
|
|
|
|
2017-03-17 06:18:50 +00:00
|
|
|
/* for copygc, or when merging btree nodes */
|
|
|
|
#define BTREE_INSERT_USE_RESERVE (1 << __BTREE_INSERT_USE_RESERVE)
|
|
|
|
|
2019-02-13 19:46:32 +00:00
|
|
|
/* Insert is for journal replay - don't get journal reservations: */
|
2017-03-17 06:18:50 +00:00
|
|
|
#define BTREE_INSERT_JOURNAL_REPLAY (1 << __BTREE_INSERT_JOURNAL_REPLAY)
|
|
|
|
|
2019-03-08 00:46:10 +00:00
|
|
|
/* Insert is being called from journal reclaim path: */
|
|
|
|
#define BTREE_INSERT_JOURNAL_RECLAIM (1 << __BTREE_INSERT_JOURNAL_RECLAIM)
|
|
|
|
|
2017-03-17 06:18:50 +00:00
|
|
|
/* Don't block on allocation failure (for new btree nodes: */
|
|
|
|
#define BTREE_INSERT_NOWAIT (1 << __BTREE_INSERT_NOWAIT)
|
|
|
|
#define BTREE_INSERT_GC_LOCK_HELD (1 << __BTREE_INSERT_GC_LOCK_HELD)
|
|
|
|
|
|
|
|
#define BCH_HASH_SET_MUST_CREATE (1 << __BCH_HASH_SET_MUST_CREATE)
|
|
|
|
#define BCH_HASH_SET_MUST_REPLACE (1 << __BCH_HASH_SET_MUST_REPLACE)
|
|
|
|
|
2022-04-09 19:07:11 +00:00
|
|
|
int bch2_btree_delete_extent_at(struct btree_trans *, struct btree_iter *,
|
|
|
|
unsigned, unsigned);
|
2019-03-14 00:49:16 +00:00
|
|
|
int bch2_btree_delete_at(struct btree_trans *, struct btree_iter *, unsigned);
|
2017-03-17 06:18:50 +00:00
|
|
|
|
2020-02-26 20:39:46 +00:00
|
|
|
int __bch2_btree_insert(struct btree_trans *, enum btree_id, struct bkey_i *);
|
2017-03-17 06:18:50 +00:00
|
|
|
int bch2_btree_insert(struct bch_fs *, enum btree_id, struct bkey_i *,
|
2018-08-08 23:53:30 +00:00
|
|
|
struct disk_reservation *, u64 *, int flags);
|
2017-03-17 06:18:50 +00:00
|
|
|
|
2020-11-21 02:28:55 +00:00
|
|
|
int bch2_btree_delete_range_trans(struct btree_trans *, enum btree_id,
|
2021-04-20 04:15:44 +00:00
|
|
|
struct bpos, struct bpos, unsigned, u64 *);
|
2017-03-17 06:18:50 +00:00
|
|
|
int bch2_btree_delete_range(struct bch_fs *, enum btree_id,
|
2021-12-29 18:49:34 +00:00
|
|
|
struct bpos, struct bpos, unsigned, u64 *);
|
2017-03-17 06:18:50 +00:00
|
|
|
|
2021-07-11 03:22:06 +00:00
|
|
|
int bch2_btree_node_rewrite(struct btree_trans *, struct btree_iter *,
|
2021-10-24 20:59:33 +00:00
|
|
|
struct btree *, unsigned);
|
2021-04-24 06:47:41 +00:00
|
|
|
void bch2_btree_node_rewrite_async(struct bch_fs *, struct btree *);
|
2021-07-11 03:22:06 +00:00
|
|
|
int bch2_btree_node_update_key(struct btree_trans *, struct btree_iter *,
|
2021-07-10 17:44:42 +00:00
|
|
|
struct btree *, struct bkey_i *, bool);
|
|
|
|
int bch2_btree_node_update_key_get_iter(struct btree_trans *,
|
|
|
|
struct btree *, struct bkey_i *, bool);
|
2017-03-17 06:18:50 +00:00
|
|
|
|
2022-01-09 02:22:31 +00:00
|
|
|
int bch2_trans_update_extent(struct btree_trans *, struct btree_iter *,
|
|
|
|
struct bkey_i *, enum btree_update_flags);
|
|
|
|
|
2021-12-05 05:30:49 +00:00
|
|
|
int __must_check bch2_trans_update(struct btree_trans *, struct btree_iter *,
|
|
|
|
struct bkey_i *, enum btree_update_flags);
|
2022-01-09 02:22:31 +00:00
|
|
|
|
2021-02-04 02:51:56 +00:00
|
|
|
void bch2_trans_commit_hook(struct btree_trans *,
|
|
|
|
struct btree_trans_commit_hook *);
|
2019-10-19 23:03:23 +00:00
|
|
|
int __bch2_trans_commit(struct btree_trans *);
|
|
|
|
|
2022-12-14 15:39:04 +00:00
|
|
|
int bch2_trans_log_msg(struct btree_trans *, const char *, ...);
|
|
|
|
int bch2_fs_log_msg(struct bch_fs *, const char *, ...);
|
2022-03-30 19:44:12 +00:00
|
|
|
|
2019-10-19 23:03:23 +00:00
|
|
|
/**
|
|
|
|
* bch2_trans_commit - insert keys at given iterator positions
|
|
|
|
*
|
|
|
|
* This is main entry point for btree updates.
|
|
|
|
*
|
|
|
|
* Return values:
|
|
|
|
* -EROFS: filesystem read only
|
|
|
|
* -EIO: journal or btree node IO error
|
|
|
|
*/
|
|
|
|
static inline int bch2_trans_commit(struct btree_trans *trans,
|
|
|
|
struct disk_reservation *disk_res,
|
|
|
|
u64 *journal_seq,
|
|
|
|
unsigned flags)
|
|
|
|
{
|
|
|
|
trans->disk_res = disk_res;
|
|
|
|
trans->journal_seq = journal_seq;
|
|
|
|
trans->flags = flags;
|
|
|
|
|
|
|
|
return __bch2_trans_commit(trans);
|
|
|
|
}
|
2017-03-17 06:18:50 +00:00
|
|
|
|
2022-07-13 09:25:29 +00:00
|
|
|
#define commit_do(_trans, _disk_res, _journal_seq, _flags, _do) \
|
2021-04-07 07:11:07 +00:00
|
|
|
lockrestart_do(_trans, _do ?: bch2_trans_commit(_trans, (_disk_res),\
|
|
|
|
(_journal_seq), (_flags)))
|
|
|
|
|
2022-07-17 23:35:38 +00:00
|
|
|
#define nested_commit_do(_trans, _disk_res, _journal_seq, _flags, _do) \
|
|
|
|
nested_lockrestart_do(_trans, _do ?: bch2_trans_commit(_trans, (_disk_res),\
|
|
|
|
(_journal_seq), (_flags)))
|
|
|
|
|
2019-12-23 04:04:30 +00:00
|
|
|
#define bch2_trans_do(_c, _disk_res, _journal_seq, _flags, _do) \
|
|
|
|
({ \
|
|
|
|
struct btree_trans trans; \
|
2021-10-19 19:08:00 +00:00
|
|
|
int _ret; \
|
2019-12-23 04:04:30 +00:00
|
|
|
\
|
|
|
|
bch2_trans_init(&trans, (_c), 0, 0); \
|
2022-07-13 09:25:29 +00:00
|
|
|
_ret = commit_do(&trans, _disk_res, _journal_seq, _flags, _do); \
|
2021-10-19 19:08:00 +00:00
|
|
|
bch2_trans_exit(&trans); \
|
2019-12-23 04:04:30 +00:00
|
|
|
\
|
2021-10-19 19:08:00 +00:00
|
|
|
_ret; \
|
2019-12-23 04:04:30 +00:00
|
|
|
})
|
|
|
|
|
2022-07-14 06:08:58 +00:00
|
|
|
#define bch2_trans_run(_c, _do) \
|
|
|
|
({ \
|
|
|
|
struct btree_trans trans; \
|
|
|
|
int _ret; \
|
|
|
|
\
|
|
|
|
bch2_trans_init(&trans, (_c), 0, 0); \
|
|
|
|
_ret = (_do); \
|
|
|
|
bch2_trans_exit(&trans); \
|
|
|
|
\
|
|
|
|
_ret; \
|
|
|
|
})
|
|
|
|
|
2019-09-22 22:49:16 +00:00
|
|
|
#define trans_for_each_update(_trans, _i) \
|
2019-03-15 21:11:58 +00:00
|
|
|
for ((_i) = (_trans)->updates; \
|
2019-09-22 22:49:16 +00:00
|
|
|
(_i) < (_trans)->updates + (_trans)->nr_updates; \
|
2019-03-15 21:11:58 +00:00
|
|
|
(_i)++)
|
|
|
|
|
2022-05-29 15:38:48 +00:00
|
|
|
static inline void bch2_trans_reset_updates(struct btree_trans *trans)
|
|
|
|
{
|
|
|
|
struct btree_insert_entry *i;
|
|
|
|
|
|
|
|
trans_for_each_update(trans, i)
|
|
|
|
bch2_path_put(trans, i->path, true);
|
|
|
|
|
|
|
|
trans->extra_journal_res = 0;
|
|
|
|
trans->nr_updates = 0;
|
|
|
|
trans->hooks = NULL;
|
|
|
|
trans->extra_journal_entries.nr = 0;
|
|
|
|
}
|
|
|
|
|
2017-03-17 06:18:50 +00:00
|
|
|
#endif /* _BCACHEFS_BTREE_UPDATE_H */
|