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

TOMOYO Linux Cross Reference
Linux/fs/bcachefs/journal_sb.c

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 ] ~

Diff markup

Differences between /fs/bcachefs/journal_sb.c (Version linux-6.11.5) and /fs/bcachefs/journal_sb.c (Version linux-5.7.19)


  1 // SPDX-License-Identifier: GPL-2.0                 1 
  2                                                   
  3 #include "bcachefs.h"                             
  4 #include "journal_sb.h"                           
  5 #include "darray.h"                               
  6                                                   
  7 #include <linux/sort.h>                           
  8                                                   
  9 /* BCH_SB_FIELD_journal: */                       
 10                                                   
 11 static int u64_cmp(const void *_l, const void     
 12 {                                                 
 13         const u64 *l = _l;                        
 14         const u64 *r = _r;                        
 15                                                   
 16         return cmp_int(*l, *r);                   
 17 }                                                 
 18                                                   
 19 static int bch2_sb_journal_validate(struct bch    
 20                                 enum bch_valid    
 21 {                                                 
 22         struct bch_sb_field_journal *journal =    
 23         struct bch_member m = bch2_sb_member_g    
 24         int ret = -BCH_ERR_invalid_sb_journal;    
 25         unsigned nr;                              
 26         unsigned i;                               
 27         u64 *b;                                   
 28                                                   
 29         nr = bch2_nr_journal_buckets(journal);    
 30         if (!nr)                                  
 31                 return 0;                         
 32                                                   
 33         b = kmalloc_array(nr, sizeof(u64), GFP    
 34         if (!b)                                   
 35                 return -BCH_ERR_ENOMEM_sb_jour    
 36                                                   
 37         for (i = 0; i < nr; i++)                  
 38                 b[i] = le64_to_cpu(journal->bu    
 39                                                   
 40         sort(b, nr, sizeof(u64), u64_cmp, NULL    
 41                                                   
 42         if (!b[0]) {                              
 43                 prt_printf(err, "journal bucke    
 44                 goto err;                         
 45         }                                         
 46                                                   
 47         if (b[0] < le16_to_cpu(m.first_bucket)    
 48                 prt_printf(err, "journal bucke    
 49                        b[0], le16_to_cpu(m.fir    
 50                 goto err;                         
 51         }                                         
 52                                                   
 53         if (b[nr - 1] >= le64_to_cpu(m.nbucket    
 54                 prt_printf(err, "journal bucke    
 55                        b[nr - 1], le64_to_cpu(    
 56                 goto err;                         
 57         }                                         
 58                                                   
 59         for (i = 0; i + 1 < nr; i++)              
 60                 if (b[i] == b[i + 1]) {           
 61                         prt_printf(err, "dupli    
 62                         goto err;                 
 63                 }                                 
 64                                                   
 65         ret = 0;                                  
 66 err:                                              
 67         kfree(b);                                 
 68         return ret;                               
 69 }                                                 
 70                                                   
 71 static void bch2_sb_journal_to_text(struct pri    
 72                                     struct bch    
 73 {                                                 
 74         struct bch_sb_field_journal *journal =    
 75         unsigned i, nr = bch2_nr_journal_bucke    
 76                                                   
 77         prt_printf(out, "Buckets: ");             
 78         for (i = 0; i < nr; i++)                  
 79                 prt_printf(out, " %llu", le64_    
 80         prt_newline(out);                         
 81 }                                                 
 82                                                   
 83 const struct bch_sb_field_ops bch_sb_field_ops    
 84         .validate       = bch2_sb_journal_vali    
 85         .to_text        = bch2_sb_journal_to_t    
 86 };                                                
 87                                                   
 88 struct u64_range {                                
 89         u64     start;                            
 90         u64     end;                              
 91 };                                                
 92                                                   
 93 static int u64_range_cmp(const void *_l, const    
 94 {                                                 
 95         const struct u64_range *l = _l;           
 96         const struct u64_range *r = _r;           
 97                                                   
 98         return cmp_int(l->start, r->start);       
 99 }                                                 
100                                                   
101 static int bch2_sb_journal_v2_validate(struct     
102                                 enum bch_valid    
103 {                                                 
104         struct bch_sb_field_journal_v2 *journa    
105         struct bch_member m = bch2_sb_member_g    
106         int ret = -BCH_ERR_invalid_sb_journal;    
107         u64 sum = 0;                              
108         unsigned nr;                              
109         unsigned i;                               
110         struct u64_range *b;                      
111                                                   
112         nr = bch2_sb_field_journal_v2_nr_entri    
113         if (!nr)                                  
114                 return 0;                         
115                                                   
116         b = kmalloc_array(nr, sizeof(*b), GFP_    
117         if (!b)                                   
118                 return -BCH_ERR_ENOMEM_sb_jour    
119                                                   
120         for (i = 0; i < nr; i++) {                
121                 b[i].start = le64_to_cpu(journ    
122                 b[i].end = b[i].start + le64_t    
123                                                   
124                 if (b[i].end <= b[i].start) {     
125                         prt_printf(err, "journ    
126                                    le64_to_cpu    
127                                    le64_to_cpu    
128                         goto err;                 
129                 }                                 
130                                                   
131                 sum += le64_to_cpu(journal->d[    
132         }                                         
133                                                   
134         sort(b, nr, sizeof(*b), u64_range_cmp,    
135                                                   
136         if (!b[0].start) {                        
137                 prt_printf(err, "journal bucke    
138                 goto err;                         
139         }                                         
140                                                   
141         if (b[0].start < le16_to_cpu(m.first_b    
142                 prt_printf(err, "journal bucke    
143                        b[0].start, le16_to_cpu    
144                 goto err;                         
145         }                                         
146                                                   
147         if (b[nr - 1].end > le64_to_cpu(m.nbuc    
148                 prt_printf(err, "journal bucke    
149                        b[nr - 1].end - 1, le64    
150                 goto err;                         
151         }                                         
152                                                   
153         for (i = 0; i + 1 < nr; i++) {            
154                 if (b[i].end > b[i + 1].start)    
155                         prt_printf(err, "dupli    
156                                b[i].start, b[i    
157                         goto err;                 
158                 }                                 
159         }                                         
160                                                   
161         if (sum > UINT_MAX) {                     
162                 prt_printf(err, "too many jour    
163                 goto err;                         
164         }                                         
165                                                   
166         ret = 0;                                  
167 err:                                              
168         kfree(b);                                 
169         return ret;                               
170 }                                                 
171                                                   
172 static void bch2_sb_journal_v2_to_text(struct     
173                                     struct bch    
174 {                                                 
175         struct bch_sb_field_journal_v2 *journa    
176         unsigned i, nr = bch2_sb_field_journal    
177                                                   
178         prt_printf(out, "Buckets: ");             
179         for (i = 0; i < nr; i++)                  
180                 prt_printf(out, " %llu-%llu",     
181                        le64_to_cpu(journal->d[    
182                        le64_to_cpu(journal->d[    
183         prt_newline(out);                         
184 }                                                 
185                                                   
186 const struct bch_sb_field_ops bch_sb_field_ops    
187         .validate       = bch2_sb_journal_v2_v    
188         .to_text        = bch2_sb_journal_v2_t    
189 };                                                
190                                                   
191 int bch2_journal_buckets_to_sb(struct bch_fs *    
192                                u64 *buckets, u    
193 {                                                 
194         struct bch_sb_field_journal_v2 *j;        
195         unsigned i, dst = 0, nr_compacted = 1;    
196                                                   
197         if (c)                                    
198                 lockdep_assert_held(&c->sb_loc    
199                                                   
200         if (!nr) {                                
201                 bch2_sb_field_delete(&ca->disk    
202                 bch2_sb_field_delete(&ca->disk    
203                 return 0;                         
204         }                                         
205                                                   
206         for (i = 0; i + 1 < nr; i++)              
207                 if (buckets[i] + 1 != buckets[    
208                         nr_compacted++;           
209                                                   
210         j = bch2_sb_field_resize(&ca->disk_sb,    
211                          (sizeof(*j) + sizeof(    
212         if (!j)                                   
213                 return -BCH_ERR_ENOSPC_sb_jour    
214                                                   
215         bch2_sb_field_delete(&ca->disk_sb, BCH    
216                                                   
217         j->d[dst].start = cpu_to_le64(buckets[    
218         j->d[dst].nr    = cpu_to_le64(1);         
219                                                   
220         for (i = 1; i < nr; i++) {                
221                 if (buckets[i] == buckets[i -     
222                         le64_add_cpu(&j->d[dst    
223                 } else {                          
224                         dst++;                    
225                         j->d[dst].start = cpu_    
226                         j->d[dst].nr    = cpu_    
227                 }                                 
228         }                                         
229                                                   
230         BUG_ON(dst + 1 != nr_compacted);          
231         return 0;                                 
232 }                                                 
233                                                   

~ [ 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