]> git.sesse.net Git - bcachefs-tools-debian/blobdiff - libbcachefs/btree_types.h
Disable pristine-tar option in gbp.conf, since there is no pristine-tar branch.
[bcachefs-tools-debian] / libbcachefs / btree_types.h
index 78d9f585db4545312739490725ef71ee19af3b46..b2ebf143c3b7d648f3fe0a90d5f046b7c854323f 100644 (file)
@@ -2,12 +2,13 @@
 #ifndef _BCACHEFS_BTREE_TYPES_H
 #define _BCACHEFS_BTREE_TYPES_H
 
+#include <linux/darray_types.h>
 #include <linux/list.h>
 #include <linux/rhashtable.h>
 
+#include "bbpos_types.h"
 #include "btree_key_cache_types.h"
 #include "buckets_types.h"
-#include "darray.h"
 #include "errcode.h"
 #include "journal_types.h"
 #include "replicas_types.h"
@@ -173,6 +174,11 @@ struct btree_cache {
         */
        struct task_struct      *alloc_lock;
        struct closure_waitlist alloc_wait;
+
+       struct bbpos            pinned_nodes_start;
+       struct bbpos            pinned_nodes_end;
+       u64                     pinned_nodes_leaf_mask;
+       u64                     pinned_nodes_interior_mask;
 };
 
 struct btree_node_iter {
@@ -222,13 +228,12 @@ enum btree_path_uptodate {
 #define TRACK_PATH_ALLOCATED
 #endif
 
+typedef u16 btree_path_idx_t;
+
 struct btree_path {
-       u8                      idx;
-       u8                      sorted_idx;
+       btree_path_idx_t        sorted_idx;
        u8                      ref;
        u8                      intent_ref;
-       u32                     alloc_seq;
-       u32                     downgrade_seq;
 
        /* btree_iter_copy starts here: */
        struct bpos             pos;
@@ -282,9 +287,9 @@ static inline unsigned long btree_path_ip_allocated(struct btree_path *path)
  */
 struct btree_iter {
        struct btree_trans      *trans;
-       struct btree_path       *path;
-       struct btree_path       *update_path;
-       struct btree_path       *key_cache_path;
+       btree_path_idx_t        path;
+       btree_path_idx_t        update_path;
+       btree_path_idx_t        key_cache_path;
 
        enum btree_id           btree_id:8;
        u8                      min_depth;
@@ -351,15 +356,16 @@ struct btree_insert_entry {
         * to the size of the key being overwritten in the btree:
         */
        u8                      old_btree_u64s;
+       btree_path_idx_t        path;
        struct bkey_i           *k;
-       struct btree_path       *path;
        /* key being overwritten: */
        struct bkey             old_k;
        const struct bch_val    *old_v;
        unsigned long           ip_allocated;
 };
 
-#define BTREE_ITER_MAX         64
+#define BTREE_ITER_INITIAL             64
+#define BTREE_ITER_MAX                 (1U << 10)
 
 struct btree_trans_commit_hook;
 typedef int (btree_trans_commit_hook_fn)(struct btree_trans *, struct btree_trans_commit_hook *);
@@ -373,25 +379,30 @@ struct btree_trans_commit_hook {
 
 #define BTREE_TRANS_MAX_LOCK_HOLD_TIME_NS      10000
 
+struct btree_trans_paths {
+       unsigned long           nr_paths;
+       struct btree_path       paths[];
+};
+
 struct btree_trans {
        struct bch_fs           *c;
-       const char              *fn;
-       struct closure          ref;
-       struct list_head        list;
-       u64                     last_begin_time;
 
-       u8                      lock_may_not_fail;
-       u8                      lock_must_abort;
-       struct btree_bkey_cached_common *locking;
-       struct six_lock_waiter  locking_wait;
+       unsigned long           *paths_allocated;
+       struct btree_path       *paths;
+       btree_path_idx_t        *sorted;
+       struct btree_insert_entry *updates;
 
-       int                     srcu_idx;
+       void                    *mem;
+       unsigned                mem_top;
+       unsigned                mem_bytes;
 
+       btree_path_idx_t        nr_sorted;
+       btree_path_idx_t        nr_paths;
+       btree_path_idx_t        nr_paths_max;
        u8                      fn_idx;
-       u8                      nr_sorted;
        u8                      nr_updates;
-       u8                      nr_wb_updates;
-       u8                      wb_updates_size;
+       u8                      lock_must_abort;
+       bool                    lock_may_not_fail:1;
        bool                    srcu_held:1;
        bool                    used_mempool:1;
        bool                    in_traverse_all:1;
@@ -403,41 +414,59 @@ struct btree_trans {
        bool                    write_locked:1;
        enum bch_errcode        restarted:16;
        u32                     restart_count;
+
+       u64                     last_begin_time;
        unsigned long           last_begin_ip;
        unsigned long           last_restarted_ip;
        unsigned long           srcu_lock_time;
 
-       /*
-        * For when bch2_trans_update notices we'll be splitting a compressed
-        * extent:
-        */
-       unsigned                extra_journal_res;
-       unsigned                nr_max_paths;
-
-       unsigned long           paths_allocated[BITS_TO_LONGS(BTREE_ITER_MAX)];
-
-       unsigned                mem_top;
-       unsigned                mem_max;
-       unsigned                mem_bytes;
-       void                    *mem;
-
-       u8                      sorted[BTREE_ITER_MAX + 8];
-       struct btree_path       paths[BTREE_ITER_MAX];
-       struct btree_insert_entry updates[BTREE_ITER_MAX];
-       struct btree_write_buffered_key *wb_updates;
+       const char              *fn;
+       struct btree_bkey_cached_common *locking;
+       struct six_lock_waiter  locking_wait;
+       int                     srcu_idx;
 
        /* update path: */
+       u16                     journal_entries_u64s;
+       u16                     journal_entries_size;
+       struct jset_entry       *journal_entries;
+
        struct btree_trans_commit_hook *hooks;
-       darray_u64              extra_journal_entries;
        struct journal_entry_pin *journal_pin;
 
        struct journal_res      journal_res;
        u64                     *journal_seq;
        struct disk_reservation *disk_res;
+
+       struct bch_fs_usage_base fs_usage_delta;
+
        unsigned                journal_u64s;
+       unsigned                extra_disk_res; /* XXX kill */
        struct replicas_delta_list *fs_usage_deltas;
+
+       /* Entries before this are zeroed out on every bch2_trans_get() call */
+
+       struct list_head        list;
+       struct closure          ref;
+
+       unsigned long           _paths_allocated[BITS_TO_LONGS(BTREE_ITER_INITIAL)];
+       struct btree_trans_paths trans_paths;
+       struct btree_path       _paths[BTREE_ITER_INITIAL];
+       btree_path_idx_t        _sorted[BTREE_ITER_INITIAL + 4];
+       struct btree_insert_entry _updates[BTREE_ITER_INITIAL];
 };
 
+static inline struct btree_path *btree_iter_path(struct btree_trans *trans, struct btree_iter *iter)
+{
+       return trans->paths + iter->path;
+}
+
+static inline struct btree_path *btree_iter_key_cache_path(struct btree_trans *trans, struct btree_iter *iter)
+{
+       return iter->key_cache_path
+               ? trans->paths + iter->key_cache_path
+               : NULL;
+}
+
 #define BCH_BTREE_WRITE_TYPES()                                                \
        x(initial,              0)                                      \
        x(init_next_bset,       1)                                      \
@@ -631,9 +660,10 @@ const char *bch2_btree_node_type_str(enum btree_node_type);
         BIT_ULL(BKEY_TYPE_inodes)|                     \
         BIT_ULL(BKEY_TYPE_stripes)|                    \
         BIT_ULL(BKEY_TYPE_reflink)|                    \
+        BIT_ULL(BKEY_TYPE_subvolumes)|                 \
         BIT_ULL(BKEY_TYPE_btree))
 
-#define BTREE_NODE_TYPE_HAS_MEM_TRIGGERS               \
+#define BTREE_NODE_TYPE_HAS_ATOMIC_TRIGGERS            \
        (BIT_ULL(BKEY_TYPE_alloc)|                      \
         BIT_ULL(BKEY_TYPE_inodes)|                     \
         BIT_ULL(BKEY_TYPE_stripes)|                    \
@@ -641,7 +671,7 @@ const char *bch2_btree_node_type_str(enum btree_node_type);
 
 #define BTREE_NODE_TYPE_HAS_TRIGGERS                   \
        (BTREE_NODE_TYPE_HAS_TRANS_TRIGGERS|            \
-        BTREE_NODE_TYPE_HAS_MEM_TRIGGERS)
+        BTREE_NODE_TYPE_HAS_ATOMIC_TRIGGERS)
 
 static inline bool btree_node_type_needs_gc(enum btree_node_type type)
 {
@@ -704,7 +734,7 @@ struct btree_root {
        __BKEY_PADDED(key, BKEY_BTREE_PTR_VAL_U64s_MAX);
        u8                      level;
        u8                      alive;
-       s                     error;
+       s16                     error;
 };
 
 enum btree_gc_coalesce_fail_reason {
@@ -718,4 +748,9 @@ enum btree_node_sibling {
        btree_next_sib,
 };
 
+struct get_locks_fail {
+       unsigned        l;
+       struct btree    *b;
+};
+
 #endif /* _BCACHEFS_BTREE_TYPES_H */