~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

TOMOYO Linux Cross Reference
Linux/fs/bcachefs/backpointers.h

Version: ~ [ linux-6.11.5 ] ~ [ linux-6.10.14 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.58 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.114 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.169 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.228 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.284 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.322 ] ~ [ linux-4.18.20 ] ~ [ linux-4.17.19 ] ~ [ linux-4.16.18 ] ~ [ linux-4.15.18 ] ~ [ linux-4.14.336 ] ~ [ linux-4.13.16 ] ~ [ linux-4.12.14 ] ~ [ linux-4.11.12 ] ~ [ linux-4.10.17 ] ~ [ linux-4.9.337 ] ~ [ linux-4.4.302 ] ~ [ linux-3.10.108 ] ~ [ linux-2.6.32.71 ] ~ [ linux-2.6.0 ] ~ [ linux-2.4.37.11 ] ~ [ unix-v6-master ] ~ [ ccs-tools-1.8.9 ] ~ [ policy-sample ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

  1 /* SPDX-License-Identifier: GPL-2.0 */
  2 #ifndef _BCACHEFS_BACKPOINTERS_BACKGROUND_H
  3 #define _BCACHEFS_BACKPOINTERS_BACKGROUND_H
  4 
  5 #include "btree_cache.h"
  6 #include "btree_iter.h"
  7 #include "btree_update.h"
  8 #include "buckets.h"
  9 #include "error.h"
 10 #include "super.h"
 11 
 12 static inline u64 swab40(u64 x)
 13 {
 14         return (((x & 0x00000000ffULL) << 32)|
 15                 ((x & 0x000000ff00ULL) << 16)|
 16                 ((x & 0x0000ff0000ULL) >>  0)|
 17                 ((x & 0x00ff000000ULL) >> 16)|
 18                 ((x & 0xff00000000ULL) >> 32));
 19 }
 20 
 21 int bch2_backpointer_validate(struct bch_fs *, struct bkey_s_c k, enum bch_validate_flags);
 22 void bch2_backpointer_to_text(struct printbuf *, const struct bch_backpointer *);
 23 void bch2_backpointer_k_to_text(struct printbuf *, struct bch_fs *, struct bkey_s_c);
 24 void bch2_backpointer_swab(struct bkey_s);
 25 
 26 #define bch2_bkey_ops_backpointer ((struct bkey_ops) {  \
 27         .key_validate   = bch2_backpointer_validate,    \
 28         .val_to_text    = bch2_backpointer_k_to_text,   \
 29         .swab           = bch2_backpointer_swab,        \
 30         .min_val_size   = 32,                           \
 31 })
 32 
 33 #define MAX_EXTENT_COMPRESS_RATIO_SHIFT         10
 34 
 35 /*
 36  * Convert from pos in backpointer btree to pos of corresponding bucket in alloc
 37  * btree:
 38  */
 39 static inline struct bpos bp_pos_to_bucket(const struct bch_dev *ca, struct bpos bp_pos)
 40 {
 41         u64 bucket_sector = bp_pos.offset >> MAX_EXTENT_COMPRESS_RATIO_SHIFT;
 42 
 43         return POS(bp_pos.inode, sector_to_bucket(ca, bucket_sector));
 44 }
 45 
 46 static inline bool bp_pos_to_bucket_nodev_noerror(struct bch_fs *c, struct bpos bp_pos, struct bpos *bucket)
 47 {
 48         rcu_read_lock();
 49         struct bch_dev *ca = bch2_dev_rcu(c, bp_pos.inode);
 50         if (ca)
 51                 *bucket = bp_pos_to_bucket(ca, bp_pos);
 52         rcu_read_unlock();
 53         return ca != NULL;
 54 }
 55 
 56 static inline bool bp_pos_to_bucket_nodev(struct bch_fs *c, struct bpos bp_pos, struct bpos *bucket)
 57 {
 58         return !bch2_fs_inconsistent_on(!bp_pos_to_bucket_nodev_noerror(c, bp_pos, bucket),
 59                                         c, "backpointer for missing device %llu", bp_pos.inode);
 60 }
 61 
 62 static inline struct bpos bucket_pos_to_bp_noerror(const struct bch_dev *ca,
 63                                                    struct bpos bucket,
 64                                                    u64 bucket_offset)
 65 {
 66         return POS(bucket.inode,
 67                    (bucket_to_sector(ca, bucket.offset) <<
 68                     MAX_EXTENT_COMPRESS_RATIO_SHIFT) + bucket_offset);
 69 }
 70 
 71 /*
 72  * Convert from pos in alloc btree + bucket offset to pos in backpointer btree:
 73  */
 74 static inline struct bpos bucket_pos_to_bp(const struct bch_dev *ca,
 75                                            struct bpos bucket,
 76                                            u64 bucket_offset)
 77 {
 78         struct bpos ret = bucket_pos_to_bp_noerror(ca, bucket, bucket_offset);
 79         EBUG_ON(!bkey_eq(bucket, bp_pos_to_bucket(ca, ret)));
 80         return ret;
 81 }
 82 
 83 int bch2_bucket_backpointer_mod_nowritebuffer(struct btree_trans *, struct bch_dev *,
 84                                 struct bpos bucket, struct bch_backpointer, struct bkey_s_c, bool);
 85 
 86 static inline int bch2_bucket_backpointer_mod(struct btree_trans *trans,
 87                                 struct bch_dev *ca,
 88                                 struct bpos bucket,
 89                                 struct bch_backpointer bp,
 90                                 struct bkey_s_c orig_k,
 91                                 bool insert)
 92 {
 93         if (unlikely(bch2_backpointers_no_use_write_buffer))
 94                 return bch2_bucket_backpointer_mod_nowritebuffer(trans, ca, bucket, bp, orig_k, insert);
 95 
 96         struct bkey_i_backpointer bp_k;
 97 
 98         bkey_backpointer_init(&bp_k.k_i);
 99         bp_k.k.p = bucket_pos_to_bp(ca, bucket, bp.bucket_offset);
100         bp_k.v = bp;
101 
102         if (!insert) {
103                 bp_k.k.type = KEY_TYPE_deleted;
104                 set_bkey_val_u64s(&bp_k.k, 0);
105         }
106 
107         return bch2_trans_update_buffered(trans, BTREE_ID_backpointers, &bp_k.k_i);
108 }
109 
110 static inline enum bch_data_type bch2_bkey_ptr_data_type(struct bkey_s_c k,
111                                                          struct extent_ptr_decoded p,
112                                                          const union bch_extent_entry *entry)
113 {
114         switch (k.k->type) {
115         case KEY_TYPE_btree_ptr:
116         case KEY_TYPE_btree_ptr_v2:
117                 return BCH_DATA_btree;
118         case KEY_TYPE_extent:
119         case KEY_TYPE_reflink_v:
120                 return p.has_ec ? BCH_DATA_stripe : BCH_DATA_user;
121         case KEY_TYPE_stripe: {
122                 const struct bch_extent_ptr *ptr = &entry->ptr;
123                 struct bkey_s_c_stripe s = bkey_s_c_to_stripe(k);
124 
125                 BUG_ON(ptr < s.v->ptrs ||
126                        ptr >= s.v->ptrs + s.v->nr_blocks);
127 
128                 return ptr >= s.v->ptrs + s.v->nr_blocks - s.v->nr_redundant
129                         ? BCH_DATA_parity
130                         : BCH_DATA_user;
131         }
132         default:
133                 BUG();
134         }
135 }
136 
137 static inline void bch2_extent_ptr_to_bp(struct bch_fs *c, struct bch_dev *ca,
138                            enum btree_id btree_id, unsigned level,
139                            struct bkey_s_c k, struct extent_ptr_decoded p,
140                            const union bch_extent_entry *entry,
141                            struct bpos *bucket_pos, struct bch_backpointer *bp)
142 {
143         enum bch_data_type data_type = bch2_bkey_ptr_data_type(k, p, entry);
144         s64 sectors = level ? btree_sectors(c) : k.k->size;
145         u32 bucket_offset;
146 
147         *bucket_pos = PTR_BUCKET_POS_OFFSET(ca, &p.ptr, &bucket_offset);
148         *bp = (struct bch_backpointer) {
149                 .btree_id       = btree_id,
150                 .level          = level,
151                 .data_type      = data_type,
152                 .bucket_offset  = ((u64) bucket_offset << MAX_EXTENT_COMPRESS_RATIO_SHIFT) +
153                         p.crc.offset,
154                 .bucket_len     = ptr_disk_sectors(sectors, p),
155                 .pos            = k.k->p,
156         };
157 }
158 
159 int bch2_get_next_backpointer(struct btree_trans *, struct bch_dev *ca, struct bpos, int,
160                               struct bpos *, struct bch_backpointer *, unsigned);
161 struct bkey_s_c bch2_backpointer_get_key(struct btree_trans *, struct btree_iter *,
162                                          struct bpos, struct bch_backpointer,
163                                          unsigned);
164 struct btree *bch2_backpointer_get_node(struct btree_trans *, struct btree_iter *,
165                                         struct bpos, struct bch_backpointer);
166 
167 int bch2_check_btree_backpointers(struct bch_fs *);
168 int bch2_check_extents_to_backpointers(struct bch_fs *);
169 int bch2_check_backpointers_to_extents(struct bch_fs *);
170 
171 #endif /* _BCACHEFS_BACKPOINTERS_BACKGROUND_H */
172 

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

kernel.org | git.kernel.org | LWN.net | Project Home | SVN repository | Mail admin

Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.

sflogo.php