Whamcloud - gitweb
a0dda465f2bd2ebc7109dae5df7b3b786dfb2b45
[fs/lustre-release.git] / ldiskfs / kernel_patches / patches / sles12sp2 / ext4-mballoc-extra-checks.patch
1 Index: linux-3.10.0-123.el7.x86_64/fs/ext4/ext4.h
2 ===================================================================
3 --- linux-3.10.0-123.el7.x86_64.orig/fs/ext4/ext4.h
4 +++ linux-3.10.0-123.el7.x86_64/fs/ext4/ext4.h
5 @@ -2391,6 +2391,7 @@ struct ext4_group_info {
6         ext4_grpblk_t   bb_fragments;   /* nr of freespace fragments */
7         ext4_grpblk_t   bb_largest_free_order;/* order of largest frag in BG */
8         struct          list_head bb_prealloc_list;
9 +       unsigned long   bb_prealloc_nr;
10  #ifdef DOUBLE_CHECK
11         void            *bb_bitmap;
12  #endif
13 Index: linux-3.10.0-123.el7.x86_64/fs/ext4/mballoc.c
14 ===================================================================
15 --- linux-3.10.0-123.el7.x86_64.orig/fs/ext4/mballoc.c
16 +++ linux-3.10.0-123.el7.x86_64/fs/ext4/mballoc.c
17 @@ -362,7 +362,7 @@ static const char *ext4_groupinfo_slab_n
18         "ext4_groupinfo_64k", "ext4_groupinfo_128k"
19  };
20  
21 -static void ext4_mb_generate_from_pa(struct super_block *sb, void *bitmap,
22 +static int ext4_mb_generate_from_pa(struct super_block *sb, void *bitmap,
23                                         ext4_group_t group);
24  static void ext4_mb_generate_from_freelist(struct super_block *sb, void *bitmap,
25                                                 ext4_group_t group);
26 @@ -718,7 +718,7 @@ mb_set_largest_free_order(struct super_b
27  }
28  
29  static noinline_for_stack
30 -void ext4_mb_generate_buddy(struct super_block *sb,
31 +int ext4_mb_generate_buddy(struct super_block *sb,
32                                 void *buddy, void *bitmap, ext4_group_t group)
33  {
34         struct ext4_group_info *grp = ext4_get_group_info(sb, group);
35 @@ -750,19 +750,13 @@ void ext4_mb_generate_buddy(struct super
36         grp->bb_fragments = fragments;
37  
38         if (free != grp->bb_free) {
39 -               ext4_grp_locked_error(sb, group, 0, 0,
40 -                                     "block bitmap and bg descriptor "
41 -                                     "inconsistent: %u vs %u free clusters",
42 -                                     free, grp->bb_free);
43 -               /*
44 -                * If we intend to continue, we consider group descriptor
45 -                * corrupt and update bb_free using bitmap value
46 -                */
47 -               grp->bb_free = free;
48 -               if (!EXT4_MB_GRP_BBITMAP_CORRUPT(grp))
49 -                       percpu_counter_sub(&sbi->s_freeclusters_counter,
50 -                                          grp->bb_free);
51 -               set_bit(EXT4_GROUP_INFO_BBITMAP_CORRUPT_BIT, &grp->bb_state);
52 +               struct ext4_group_desc *gdp;
53 +               gdp = ext4_get_group_desc(sb, group, NULL);
54 +               ext4_error(sb, "group %lu: %u blocks in bitmap, %u in bb, "
55 +                       "%u in gd, %lu pa's\n", (long unsigned int)group,
56 +                       free, grp->bb_free, ext4_free_group_clusters(sb, gdp),
57 +                       grp->bb_prealloc_nr);
58 +               return -EIO;
59         }
60         mb_set_largest_free_order(sb, grp);
61  
62 @@ -768,6 +767,8 @@ void ext4_mb_generate_buddy(struct super
63         EXT4_SB(sb)->s_mb_buddies_generated++;
64         EXT4_SB(sb)->s_mb_generation_time += period;
65         spin_unlock(&EXT4_SB(sb)->s_bal_lock);
66 +
67 +       return 0;
68  }
69  
70  static void mb_regenerate_buddy(struct ext4_buddy *e4b)
71 @@ -883,7 +884,7 @@ static int ext4_mb_init_cache(struct pag
72         }
73  
74         first_block = page->index * blocks_per_page;
75 -       for (i = 0; i < blocks_per_page; i++) {
76 +       for (i = 0; i < blocks_per_page && err == 0; i++) {
77                 group = (first_block + i) >> 1;
78                 if (group >= ngroups)
79                         break;
80 @@ -922,7 +923,7 @@ static int ext4_mb_init_cache(struct pag
81                         ext4_lock_group(sb, group);
82                         /* init the buddy */
83                         memset(data, 0xff, blocksize);
84 -                       ext4_mb_generate_buddy(sb, data, incore, group);
85 +                       err = ext4_mb_generate_buddy(sb, data, incore, group);
86                         ext4_unlock_group(sb, group);
87                         incore = NULL;
88                 } else {
89 @@ -937,7 +938,7 @@ static int ext4_mb_init_cache(struct pag
90                         memcpy(data, bitmap, blocksize);
91  
92                         /* mark all preallocated blks used in in-core bitmap */
93 -                       ext4_mb_generate_from_pa(sb, data, group);
94 +                       err = ext4_mb_generate_from_pa(sb, data, group);
95                         ext4_mb_generate_from_freelist(sb, data, group);
96                         ext4_unlock_group(sb, group);
97  
98 @@ -947,7 +948,8 @@ static int ext4_mb_init_cache(struct pag
99                         incore = data;
100                 }
101         }
102 -       SetPageUptodate(page);
103 +       if (likely(err == 0))
104 +               SetPageUptodate(page);
105  
106  out:
107         if (bh) {
108 @@ -2224,9 +2226,11 @@ static void *ext4_mb_seq_groups_next(str
109  static int ext4_mb_seq_groups_show(struct seq_file *seq, void *v)
110  {
111         struct super_block *sb = seq->private;
112 +       struct ext4_group_desc *gdp;
113         ext4_group_t group = (ext4_group_t) ((unsigned long) v);
114         int i;
115         int err, buddy_loaded = 0;
116 +       int free = 0;
117         struct ext4_buddy e4b;
118         struct ext4_group_info *grinfo;
119         struct sg {
120 @@ -2236,7 +2240,7 @@ static int ext4_mb_seq_groups_show(struc
121  
122         group--;
123         if (group == 0)
124 -               seq_puts(seq, "#group: free  frags first ["
125 +               seq_puts(seq, "#group: bfree gfree frags first pa    ["
126                               " 2^0   2^1   2^2   2^3   2^4   2^5   2^6  "
127                               " 2^7   2^8   2^9   2^10  2^11  2^12  2^13  ]");
128  
129 @@ -2256,13 +2260,19 @@ static int ext4_mb_seq_groups_show(struc
130                 buddy_loaded = 1;
131         }
132  
133 +       gdp = ext4_get_group_desc(sb, group, NULL);
134 +       if (gdp != NULL)
135 +               free = ext4_free_group_clusters(sb, gdp);
136 +
137         memcpy(&sg, ext4_get_group_info(sb, group), i);
138  
139         if (buddy_loaded)
140                 ext4_mb_unload_buddy(&e4b);
141  
142 -       seq_printf(seq, "#%-5u: %-5u %-5u %-5u [", group, sg.info.bb_free,
143 -                       sg.info.bb_fragments, sg.info.bb_first_free);
144 +       seq_printf(seq, "#%-5lu: %-5u %-5u %-5u %-5u %-5lu [",
145 +                       (long unsigned int)group, sg.info.bb_free, free,
146 +                       sg.info.bb_fragments, sg.info.bb_first_free,
147 +                       sg.info.bb_prealloc_nr);
148         for (i = 0; i <= 13; i++)
149                 seq_printf(seq, " %-5u", i <= sb->s_blocksize_bits + 1 ?
150                                 sg.info.bb_counters[i] : 0);
151 @@ -3507,22 +3517,67 @@ static void ext4_mb_generate_from_freeli
152  }
153  
154  /*
155 + * check free blocks in bitmap match free block in group descriptor
156 + * do this before taking preallocated blocks into account to be able
157 + * to detect on-disk corruptions. The group lock should be hold by the
158 + * caller.
159 + */
160 +int ext4_mb_check_ondisk_bitmap(struct super_block *sb, void *bitmap,
161 +                               struct ext4_group_desc *gdp, int group)
162 +{
163 +       unsigned short max = EXT4_CLUSTERS_PER_GROUP(sb);
164 +       unsigned short i, first, free = 0;
165 +
166 +       i = mb_find_next_zero_bit(bitmap, max, 0);
167 +
168 +       while (i < max) {
169 +               first = i;
170 +               i = mb_find_next_bit(bitmap, max, i);
171 +               if (i > max)
172 +                       i = max;
173 +               free += i - first;
174 +               if (i < max)
175 +                       i = mb_find_next_zero_bit(bitmap, max, i);
176 +       }
177 +
178 +       if (free != ext4_free_group_clusters(sb, gdp)) {
179 +               ext4_error(sb, "on-disk bitmap for group %d"
180 +                       "corrupted: %u blocks free in bitmap, %u - in gd\n",
181 +                       group, free, ext4_free_group_clusters(sb, gdp));
182 +               return -EIO;
183 +       }
184 +       return 0;
185 +}
186 +
187 +/*
188   * the function goes through all preallocation in this group and marks them
189   * used in in-core bitmap. buddy must be generated from this bitmap
190   * Need to be called with ext4 group lock held
191   */
192  static noinline_for_stack
193 -void ext4_mb_generate_from_pa(struct super_block *sb, void *bitmap,
194 +int ext4_mb_generate_from_pa(struct super_block *sb, void *bitmap,
195                                         ext4_group_t group)
196  {
197         struct ext4_group_info *grp = ext4_get_group_info(sb, group);
198         struct ext4_prealloc_space *pa;
199 +       struct ext4_group_desc *gdp;
200         struct list_head *cur;
201         ext4_group_t groupnr;
202         ext4_grpblk_t start;
203         int preallocated = 0;
204 +       int skip = 0, count = 0;
205 +       int err;
206         int len;
207  
208 +       gdp = ext4_get_group_desc(sb, group, NULL);
209 +       if (gdp == NULL)
210 +               return -EIO;
211 +
212 +       /* before applying preallocations, check bitmap consistency */
213 +       err = ext4_mb_check_ondisk_bitmap(sb, bitmap, gdp, group);
214 +       if (err)
215 +               return err;
216 +
217         /* all form of preallocation discards first load group,
218          * so the only competing code is preallocation use.
219          * we don't need any locking here
220 @@ -3538,13 +3593,23 @@ void ext4_mb_generate_from_pa(struct sup
221                                              &groupnr, &start);
222                 len = pa->pa_len;
223                 spin_unlock(&pa->pa_lock);
224 -               if (unlikely(len == 0))
225 +               if (unlikely(len == 0)) {
226 +                       skip++;
227                         continue;
228 +               }
229                 BUG_ON(groupnr != group);
230                 ext4_set_bits(bitmap, start, len);
231                 preallocated += len;
232 +               count++;
233 +       }
234 +       if (count + skip != grp->bb_prealloc_nr) {
235 +               ext4_error(sb, "lost preallocations: "
236 +                          "count %d, bb_prealloc_nr %lu, skip %d\n",
237 +                          count, grp->bb_prealloc_nr, skip);
238 +               return -EIO;
239         }
240         mb_debug(1, "prellocated %u for group %u\n", preallocated, group);
241 +       return 0;
242  }
243  
244  static void ext4_mb_pa_callback(struct rcu_head *head)
245 @@ -3603,6 +3668,7 @@ static void ext4_mb_put_pa(struct ext4_a
246          */
247         ext4_lock_group(sb, grp);
248         list_del(&pa->pa_group_list);
249 +       ext4_get_group_info(sb, grp)->bb_prealloc_nr--;
250         ext4_unlock_group(sb, grp);
251  
252         spin_lock(pa->pa_obj_lock);
253 @@ -3697,6 +3763,7 @@ ext4_mb_new_inode_pa(struct ext4_allocat
254  
255         ext4_lock_group(sb, ac->ac_b_ex.fe_group);
256         list_add(&pa->pa_group_list, &grp->bb_prealloc_list);
257 +       grp->bb_prealloc_nr++;
258         ext4_unlock_group(sb, ac->ac_b_ex.fe_group);
259  
260         spin_lock(pa->pa_obj_lock);
261 @@ -3758,6 +3825,7 @@ ext4_mb_new_group_pa(struct ext4_allocat
262  
263         ext4_lock_group(sb, ac->ac_b_ex.fe_group);
264         list_add(&pa->pa_group_list, &grp->bb_prealloc_list);
265 +       grp->bb_prealloc_nr++;
266         ext4_unlock_group(sb, ac->ac_b_ex.fe_group);
267  
268         /*
269 @@ -3927,6 +3995,8 @@ repeat:
270  
271                 spin_unlock(&pa->pa_lock);
272  
273 +               BUG_ON(grp->bb_prealloc_nr == 0);
274 +               grp->bb_prealloc_nr--;
275                 list_del(&pa->pa_group_list);
276                 list_add(&pa->u.pa_tmp_list, &list);
277         }
278 @@ -4056,7 +4126,7 @@ repeat:
279                 if (err) {
280                         ext4_error(sb, "Error loading buddy information for %u",
281                                         group);
282 -                       continue;
283 +                       return;
284                 }
285  
286                 bitmap_bh = ext4_read_block_bitmap(sb, group);
287 @@ -4068,6 +4138,8 @@ repeat:
288                 }
289  
290                 ext4_lock_group(sb, group);
291 +               BUG_ON(e4b.bd_info->bb_prealloc_nr == 0);
292 +               e4b.bd_info->bb_prealloc_nr--;
293                 list_del(&pa->pa_group_list);
294                 ext4_mb_release_inode_pa(&e4b, bitmap_bh, pa);
295                 ext4_unlock_group(sb, group);
296 @@ -4328,6 +4400,7 @@ ext4_mb_discard_lg_preallocations(struct
297                 }
298                 ext4_lock_group(sb, group);
299                 list_del(&pa->pa_group_list);
300 +               ext4_get_group_info(sb, group)->bb_prealloc_nr--;
301                 ext4_mb_release_group_pa(&e4b, pa);
302                 ext4_unlock_group(sb, group);
303  
304 Index: linux-3.10.0-123.el7.x86_64/fs/ext4/mballoc.h
305 ===================================================================
306 --- linux-3.10.0-123.el7.x86_64.orig/fs/ext4/mballoc.h
307 +++ linux-3.10.0-123.el7.x86_64/fs/ext4/mballoc.h
308 @@ -82,7 +82,7 @@ extern ushort ext4_mballoc_debug;
309  /*
310   * for which requests use 2^N search using buddies
311   */
312 -#define MB_DEFAULT_ORDER2_REQS         2
313 +#define MB_DEFAULT_ORDER2_REQS         8
314  
315  /*
316   * default group prealloc size 512 blocks