2 * This file is part of UBIFS.
4 * Copyright (C) 2006-2008 Nokia Corporation.
6 * This program is free software; you can redistribute it and/or modify it
7 * under the terms of the GNU General Public License version 2 as published by
8 * the Free Software Foundation.
10 * This program is distributed in the hope that it will be useful, but WITHOUT
11 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
12 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
15 * You should have received a copy of the GNU General Public License along with
16 * this program; if not, write to the Free Software Foundation, Inc., 51
17 * Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
19 * Authors: Adrian Hunter
20 * Artem Bityutskiy (Битюцкий Артём)
24 * This file implements the functions that access LEB properties and their
25 * categories. LEBs are categorized based on the needs of UBIFS, and the
26 * categories are stored as either heaps or lists to provide a fast way of
27 * finding a LEB in a particular category. For example, UBIFS may need to find
28 * an empty LEB for the journal, or a very dirty LEB for garbage collection.
34 * get_heap_comp_val - get the LEB properties value for heap comparisons.
35 * @lprops: LEB properties
38 static int get_heap_comp_val(struct ubifs_lprops
*lprops
, int cat
)
43 case LPROPS_DIRTY_IDX
:
44 return lprops
->free
+ lprops
->dirty
;
51 * move_up_lpt_heap - move a new heap entry up as far as possible.
52 * @c: UBIFS file-system description object
53 * @heap: LEB category heap
54 * @lprops: LEB properties to move
57 * New entries to a heap are added at the bottom and then moved up until the
58 * parent's value is greater. In the case of LPT's category heaps, the value
59 * is either the amount of free space or the amount of dirty space, depending
62 static void move_up_lpt_heap(struct ubifs_info
*c
, struct ubifs_lpt_heap
*heap
,
63 struct ubifs_lprops
*lprops
, int cat
)
69 return; /* Already top of the heap */
70 val1
= get_heap_comp_val(lprops
, cat
);
71 /* Compare to parent and, if greater, move up the heap */
73 int ppos
= (hpos
- 1) / 2;
75 val2
= get_heap_comp_val(heap
->arr
[ppos
], cat
);
78 /* Greater than parent so move up */
79 heap
->arr
[ppos
]->hpos
= hpos
;
80 heap
->arr
[hpos
] = heap
->arr
[ppos
];
81 heap
->arr
[ppos
] = lprops
;
88 * adjust_lpt_heap - move a changed heap entry up or down the heap.
89 * @c: UBIFS file-system description object
90 * @heap: LEB category heap
91 * @lprops: LEB properties to move
92 * @hpos: heap position of @lprops
95 * Changed entries in a heap are moved up or down until the parent's value is
96 * greater. In the case of LPT's category heaps, the value is either the amount
97 * of free space or the amount of dirty space, depending on the category.
99 static void adjust_lpt_heap(struct ubifs_info
*c
, struct ubifs_lpt_heap
*heap
,
100 struct ubifs_lprops
*lprops
, int hpos
, int cat
)
102 int val1
, val2
, val3
, cpos
;
104 val1
= get_heap_comp_val(lprops
, cat
);
105 /* Compare to parent and, if greater than parent, move up the heap */
107 int ppos
= (hpos
- 1) / 2;
109 val2
= get_heap_comp_val(heap
->arr
[ppos
], cat
);
111 /* Greater than parent so move up */
113 heap
->arr
[ppos
]->hpos
= hpos
;
114 heap
->arr
[hpos
] = heap
->arr
[ppos
];
115 heap
->arr
[ppos
] = lprops
;
120 ppos
= (hpos
- 1) / 2;
121 val2
= get_heap_comp_val(heap
->arr
[ppos
], cat
);
124 /* Still greater than parent so keep going */
129 /* Not greater than parent, so compare to children */
131 /* Compare to left child */
133 if (cpos
>= heap
->cnt
)
135 val2
= get_heap_comp_val(heap
->arr
[cpos
], cat
);
137 /* Less than left child, so promote biggest child */
138 if (cpos
+ 1 < heap
->cnt
) {
139 val3
= get_heap_comp_val(heap
->arr
[cpos
+ 1],
142 cpos
+= 1; /* Right child is bigger */
144 heap
->arr
[cpos
]->hpos
= hpos
;
145 heap
->arr
[hpos
] = heap
->arr
[cpos
];
146 heap
->arr
[cpos
] = lprops
;
151 /* Compare to right child */
153 if (cpos
>= heap
->cnt
)
155 val3
= get_heap_comp_val(heap
->arr
[cpos
], cat
);
157 /* Less than right child, so promote right child */
158 heap
->arr
[cpos
]->hpos
= hpos
;
159 heap
->arr
[hpos
] = heap
->arr
[cpos
];
160 heap
->arr
[cpos
] = lprops
;
170 * add_to_lpt_heap - add LEB properties to a LEB category heap.
171 * @c: UBIFS file-system description object
172 * @lprops: LEB properties to add
175 * This function returns %1 if @lprops is added to the heap for LEB category
176 * @cat, otherwise %0 is returned because the heap is full.
178 static int add_to_lpt_heap(struct ubifs_info
*c
, struct ubifs_lprops
*lprops
,
181 struct ubifs_lpt_heap
*heap
= &c
->lpt_heap
[cat
- 1];
183 if (heap
->cnt
>= heap
->max_cnt
) {
184 const int b
= LPT_HEAP_SZ
/ 2 - 1;
185 int cpos
, val1
, val2
;
187 /* Compare to some other LEB on the bottom of heap */
188 /* Pick a position kind of randomly */
189 cpos
= (((size_t)lprops
>> 4) & b
) + b
;
190 ubifs_assert(cpos
>= b
);
191 ubifs_assert(cpos
< LPT_HEAP_SZ
);
192 ubifs_assert(cpos
< heap
->cnt
);
194 val1
= get_heap_comp_val(lprops
, cat
);
195 val2
= get_heap_comp_val(heap
->arr
[cpos
], cat
);
197 struct ubifs_lprops
*lp
;
199 lp
= heap
->arr
[cpos
];
200 lp
->flags
&= ~LPROPS_CAT_MASK
;
201 lp
->flags
|= LPROPS_UNCAT
;
202 list_add(&lp
->list
, &c
->uncat_list
);
204 heap
->arr
[cpos
] = lprops
;
205 move_up_lpt_heap(c
, heap
, lprops
, cat
);
206 dbg_check_heap(c
, heap
, cat
, lprops
->hpos
);
207 return 1; /* Added to heap */
209 dbg_check_heap(c
, heap
, cat
, -1);
210 return 0; /* Not added to heap */
212 lprops
->hpos
= heap
->cnt
++;
213 heap
->arr
[lprops
->hpos
] = lprops
;
214 move_up_lpt_heap(c
, heap
, lprops
, cat
);
215 dbg_check_heap(c
, heap
, cat
, lprops
->hpos
);
216 return 1; /* Added to heap */
221 * remove_from_lpt_heap - remove LEB properties from a LEB category heap.
222 * @c: UBIFS file-system description object
223 * @lprops: LEB properties to remove
226 static void remove_from_lpt_heap(struct ubifs_info
*c
,
227 struct ubifs_lprops
*lprops
, int cat
)
229 struct ubifs_lpt_heap
*heap
;
230 int hpos
= lprops
->hpos
;
232 heap
= &c
->lpt_heap
[cat
- 1];
233 ubifs_assert(hpos
>= 0 && hpos
< heap
->cnt
);
234 ubifs_assert(heap
->arr
[hpos
] == lprops
);
236 if (hpos
< heap
->cnt
) {
237 heap
->arr
[hpos
] = heap
->arr
[heap
->cnt
];
238 heap
->arr
[hpos
]->hpos
= hpos
;
239 adjust_lpt_heap(c
, heap
, heap
->arr
[hpos
], hpos
, cat
);
241 dbg_check_heap(c
, heap
, cat
, -1);
245 * lpt_heap_replace - replace lprops in a category heap.
246 * @c: UBIFS file-system description object
247 * @new_lprops: LEB properties with which to replace
250 * During commit it is sometimes necessary to copy a pnode (see dirty_cow_pnode)
251 * and the lprops that the pnode contains. When that happens, references in
252 * the category heaps to those lprops must be updated to point to the new
253 * lprops. This function does that.
255 static void lpt_heap_replace(struct ubifs_info
*c
,
256 struct ubifs_lprops
*new_lprops
, int cat
)
258 struct ubifs_lpt_heap
*heap
;
259 int hpos
= new_lprops
->hpos
;
261 heap
= &c
->lpt_heap
[cat
- 1];
262 heap
->arr
[hpos
] = new_lprops
;
266 * ubifs_add_to_cat - add LEB properties to a category list or heap.
267 * @c: UBIFS file-system description object
268 * @lprops: LEB properties to add
269 * @cat: LEB category to which to add
271 * LEB properties are categorized to enable fast find operations.
273 void ubifs_add_to_cat(struct ubifs_info
*c
, struct ubifs_lprops
*lprops
,
278 case LPROPS_DIRTY_IDX
:
280 if (add_to_lpt_heap(c
, lprops
, cat
))
282 /* No more room on heap so make it un-categorized */
286 list_add(&lprops
->list
, &c
->uncat_list
);
289 list_add(&lprops
->list
, &c
->empty_list
);
291 case LPROPS_FREEABLE
:
292 list_add(&lprops
->list
, &c
->freeable_list
);
293 c
->freeable_cnt
+= 1;
295 case LPROPS_FRDI_IDX
:
296 list_add(&lprops
->list
, &c
->frdi_idx_list
);
302 lprops
->flags
&= ~LPROPS_CAT_MASK
;
303 lprops
->flags
|= cat
;
304 c
->in_a_category_cnt
+= 1;
305 ubifs_assert(c
->in_a_category_cnt
<= c
->main_lebs
);
309 * ubifs_remove_from_cat - remove LEB properties from a category list or heap.
310 * @c: UBIFS file-system description object
311 * @lprops: LEB properties to remove
312 * @cat: LEB category from which to remove
314 * LEB properties are categorized to enable fast find operations.
316 static void ubifs_remove_from_cat(struct ubifs_info
*c
,
317 struct ubifs_lprops
*lprops
, int cat
)
321 case LPROPS_DIRTY_IDX
:
323 remove_from_lpt_heap(c
, lprops
, cat
);
325 case LPROPS_FREEABLE
:
326 c
->freeable_cnt
-= 1;
327 ubifs_assert(c
->freeable_cnt
>= 0);
331 case LPROPS_FRDI_IDX
:
332 ubifs_assert(!list_empty(&lprops
->list
));
333 list_del(&lprops
->list
);
339 c
->in_a_category_cnt
-= 1;
340 ubifs_assert(c
->in_a_category_cnt
>= 0);
344 * ubifs_replace_cat - replace lprops in a category list or heap.
345 * @c: UBIFS file-system description object
346 * @old_lprops: LEB properties to replace
347 * @new_lprops: LEB properties with which to replace
349 * During commit it is sometimes necessary to copy a pnode (see dirty_cow_pnode)
350 * and the lprops that the pnode contains. When that happens, references in
351 * category lists and heaps must be replaced. This function does that.
353 void ubifs_replace_cat(struct ubifs_info
*c
, struct ubifs_lprops
*old_lprops
,
354 struct ubifs_lprops
*new_lprops
)
358 cat
= new_lprops
->flags
& LPROPS_CAT_MASK
;
361 case LPROPS_DIRTY_IDX
:
363 lpt_heap_replace(c
, new_lprops
, cat
);
367 case LPROPS_FREEABLE
:
368 case LPROPS_FRDI_IDX
:
369 list_replace(&old_lprops
->list
, &new_lprops
->list
);
377 * ubifs_ensure_cat - ensure LEB properties are categorized.
378 * @c: UBIFS file-system description object
379 * @lprops: LEB properties
381 * A LEB may have fallen off of the bottom of a heap, and ended up as
382 * un-categorized even though it has enough space for us now. If that is the
383 * case this function will put the LEB back onto a heap.
385 void ubifs_ensure_cat(struct ubifs_info
*c
, struct ubifs_lprops
*lprops
)
387 int cat
= lprops
->flags
& LPROPS_CAT_MASK
;
389 if (cat
!= LPROPS_UNCAT
)
391 cat
= ubifs_categorize_lprops(c
, lprops
);
392 if (cat
== LPROPS_UNCAT
)
394 ubifs_remove_from_cat(c
, lprops
, LPROPS_UNCAT
);
395 ubifs_add_to_cat(c
, lprops
, cat
);
399 * ubifs_categorize_lprops - categorize LEB properties.
400 * @c: UBIFS file-system description object
401 * @lprops: LEB properties to categorize
403 * LEB properties are categorized to enable fast find operations. This function
404 * returns the LEB category to which the LEB properties belong. Note however
405 * that if the LEB category is stored as a heap and the heap is full, the
406 * LEB properties may have their category changed to %LPROPS_UNCAT.
408 int ubifs_categorize_lprops(const struct ubifs_info
*c
,
409 const struct ubifs_lprops
*lprops
)
411 if (lprops
->flags
& LPROPS_TAKEN
)
414 if (lprops
->free
== c
->leb_size
) {
415 ubifs_assert(!(lprops
->flags
& LPROPS_INDEX
));
419 if (lprops
->free
+ lprops
->dirty
== c
->leb_size
) {
420 if (lprops
->flags
& LPROPS_INDEX
)
421 return LPROPS_FRDI_IDX
;
423 return LPROPS_FREEABLE
;
426 if (lprops
->flags
& LPROPS_INDEX
) {
427 if (lprops
->dirty
+ lprops
->free
>= c
->min_idx_node_sz
)
428 return LPROPS_DIRTY_IDX
;
430 if (lprops
->dirty
>= c
->dead_wm
&&
431 lprops
->dirty
> lprops
->free
)
433 if (lprops
->free
> 0)
441 * change_category - change LEB properties category.
442 * @c: UBIFS file-system description object
443 * @lprops: LEB properties to re-categorize
445 * LEB properties are categorized to enable fast find operations. When the LEB
446 * properties change they must be re-categorized.
448 static void change_category(struct ubifs_info
*c
, struct ubifs_lprops
*lprops
)
450 int old_cat
= lprops
->flags
& LPROPS_CAT_MASK
;
451 int new_cat
= ubifs_categorize_lprops(c
, lprops
);
453 if (old_cat
== new_cat
) {
454 struct ubifs_lpt_heap
*heap
;
456 /* lprops on a heap now must be moved up or down */
457 if (new_cat
< 1 || new_cat
> LPROPS_HEAP_CNT
)
458 return; /* Not on a heap */
459 heap
= &c
->lpt_heap
[new_cat
- 1];
460 adjust_lpt_heap(c
, heap
, lprops
, lprops
->hpos
, new_cat
);
462 ubifs_remove_from_cat(c
, lprops
, old_cat
);
463 ubifs_add_to_cat(c
, lprops
, new_cat
);
468 * ubifs_calc_dark - calculate LEB dark space size.
469 * @c: the UBIFS file-system description object
470 * @spc: amount of free and dirty space in the LEB
472 * This function calculates and returns amount of dark space in an LEB which
473 * has @spc bytes of free and dirty space.
475 * UBIFS is trying to account the space which might not be usable, and this
476 * space is called "dark space". For example, if an LEB has only %512 free
477 * bytes, it is dark space, because it cannot fit a large data node.
479 int ubifs_calc_dark(const struct ubifs_info
*c
, int spc
)
481 ubifs_assert(!(spc
& 7));
483 if (spc
< c
->dark_wm
)
487 * If we have slightly more space then the dark space watermark, we can
488 * anyway safely assume it we'll be able to write a node of the
489 * smallest size there.
491 if (spc
- c
->dark_wm
< MIN_WRITE_SZ
)
492 return spc
- MIN_WRITE_SZ
;
498 * is_lprops_dirty - determine if LEB properties are dirty.
499 * @c: the UBIFS file-system description object
500 * @lprops: LEB properties to test
502 static int is_lprops_dirty(struct ubifs_info
*c
, struct ubifs_lprops
*lprops
)
504 struct ubifs_pnode
*pnode
;
507 pos
= (lprops
->lnum
- c
->main_first
) & (UBIFS_LPT_FANOUT
- 1);
508 pnode
= (struct ubifs_pnode
*)container_of(lprops
- pos
,
511 return !test_bit(COW_CNODE
, &pnode
->flags
) &&
512 test_bit(DIRTY_CNODE
, &pnode
->flags
);
516 * ubifs_change_lp - change LEB properties.
517 * @c: the UBIFS file-system description object
518 * @lp: LEB properties to change
519 * @free: new free space amount
520 * @dirty: new dirty space amount
522 * @idx_gc_cnt: change to the count of @idx_gc list
524 * This function changes LEB properties (@free, @dirty or @flag). However, the
525 * property which has the %LPROPS_NC value is not changed. Returns a pointer to
526 * the updated LEB properties on success and a negative error code on failure.
528 * Note, the LEB properties may have had to be copied (due to COW) and
529 * consequently the pointer returned may not be the same as the pointer
532 const struct ubifs_lprops
*ubifs_change_lp(struct ubifs_info
*c
,
533 const struct ubifs_lprops
*lp
,
534 int free
, int dirty
, int flags
,
538 * This is the only function that is allowed to change lprops, so we
539 * discard the "const" qualifier.
541 struct ubifs_lprops
*lprops
= (struct ubifs_lprops
*)lp
;
543 dbg_lp("LEB %d, free %d, dirty %d, flags %d",
544 lprops
->lnum
, free
, dirty
, flags
);
546 ubifs_assert(mutex_is_locked(&c
->lp_mutex
));
547 ubifs_assert(c
->lst
.empty_lebs
>= 0 &&
548 c
->lst
.empty_lebs
<= c
->main_lebs
);
549 ubifs_assert(c
->freeable_cnt
>= 0);
550 ubifs_assert(c
->freeable_cnt
<= c
->main_lebs
);
551 ubifs_assert(c
->lst
.taken_empty_lebs
>= 0);
552 ubifs_assert(c
->lst
.taken_empty_lebs
<= c
->lst
.empty_lebs
);
553 ubifs_assert(!(c
->lst
.total_free
& 7) && !(c
->lst
.total_dirty
& 7));
554 ubifs_assert(!(c
->lst
.total_dead
& 7) && !(c
->lst
.total_dark
& 7));
555 ubifs_assert(!(c
->lst
.total_used
& 7));
556 ubifs_assert(free
== LPROPS_NC
|| free
>= 0);
557 ubifs_assert(dirty
== LPROPS_NC
|| dirty
>= 0);
559 if (!is_lprops_dirty(c
, lprops
)) {
560 lprops
= ubifs_lpt_lookup_dirty(c
, lprops
->lnum
);
564 ubifs_assert(lprops
== ubifs_lpt_lookup_dirty(c
, lprops
->lnum
));
566 ubifs_assert(!(lprops
->free
& 7) && !(lprops
->dirty
& 7));
568 spin_lock(&c
->space_lock
);
569 if ((lprops
->flags
& LPROPS_TAKEN
) && lprops
->free
== c
->leb_size
)
570 c
->lst
.taken_empty_lebs
-= 1;
572 if (!(lprops
->flags
& LPROPS_INDEX
)) {
575 old_spc
= lprops
->free
+ lprops
->dirty
;
576 if (old_spc
< c
->dead_wm
)
577 c
->lst
.total_dead
-= old_spc
;
579 c
->lst
.total_dark
-= ubifs_calc_dark(c
, old_spc
);
581 c
->lst
.total_used
-= c
->leb_size
- old_spc
;
584 if (free
!= LPROPS_NC
) {
585 free
= ALIGN(free
, 8);
586 c
->lst
.total_free
+= free
- lprops
->free
;
588 /* Increase or decrease empty LEBs counter if needed */
589 if (free
== c
->leb_size
) {
590 if (lprops
->free
!= c
->leb_size
)
591 c
->lst
.empty_lebs
+= 1;
592 } else if (lprops
->free
== c
->leb_size
)
593 c
->lst
.empty_lebs
-= 1;
597 if (dirty
!= LPROPS_NC
) {
598 dirty
= ALIGN(dirty
, 8);
599 c
->lst
.total_dirty
+= dirty
- lprops
->dirty
;
600 lprops
->dirty
= dirty
;
603 if (flags
!= LPROPS_NC
) {
604 /* Take care about indexing LEBs counter if needed */
605 if ((lprops
->flags
& LPROPS_INDEX
)) {
606 if (!(flags
& LPROPS_INDEX
))
607 c
->lst
.idx_lebs
-= 1;
608 } else if (flags
& LPROPS_INDEX
)
609 c
->lst
.idx_lebs
+= 1;
610 lprops
->flags
= flags
;
613 if (!(lprops
->flags
& LPROPS_INDEX
)) {
616 new_spc
= lprops
->free
+ lprops
->dirty
;
617 if (new_spc
< c
->dead_wm
)
618 c
->lst
.total_dead
+= new_spc
;
620 c
->lst
.total_dark
+= ubifs_calc_dark(c
, new_spc
);
622 c
->lst
.total_used
+= c
->leb_size
- new_spc
;
625 if ((lprops
->flags
& LPROPS_TAKEN
) && lprops
->free
== c
->leb_size
)
626 c
->lst
.taken_empty_lebs
+= 1;
628 change_category(c
, lprops
);
629 c
->idx_gc_cnt
+= idx_gc_cnt
;
630 spin_unlock(&c
->space_lock
);
635 * ubifs_get_lp_stats - get lprops statistics.
636 * @c: UBIFS file-system description object
637 * @lst: return statistics
639 void ubifs_get_lp_stats(struct ubifs_info
*c
, struct ubifs_lp_stats
*lst
)
641 spin_lock(&c
->space_lock
);
642 memcpy(lst
, &c
->lst
, sizeof(struct ubifs_lp_stats
));
643 spin_unlock(&c
->space_lock
);
647 * ubifs_change_one_lp - change LEB properties.
648 * @c: the UBIFS file-system description object
649 * @lnum: LEB to change properties for
650 * @free: amount of free space
651 * @dirty: amount of dirty space
652 * @flags_set: flags to set
653 * @flags_clean: flags to clean
654 * @idx_gc_cnt: change to the count of idx_gc list
656 * This function changes properties of LEB @lnum. It is a helper wrapper over
657 * 'ubifs_change_lp()' which hides lprops get/release. The arguments are the
658 * same as in case of 'ubifs_change_lp()'. Returns zero in case of success and
659 * a negative error code in case of failure.
661 int ubifs_change_one_lp(struct ubifs_info
*c
, int lnum
, int free
, int dirty
,
662 int flags_set
, int flags_clean
, int idx_gc_cnt
)
665 const struct ubifs_lprops
*lp
;
669 lp
= ubifs_lpt_lookup_dirty(c
, lnum
);
675 flags
= (lp
->flags
| flags_set
) & ~flags_clean
;
676 lp
= ubifs_change_lp(c
, lp
, free
, dirty
, flags
, idx_gc_cnt
);
681 ubifs_release_lprops(c
);
683 ubifs_err(c
, "cannot change properties of LEB %d, error %d",
689 * ubifs_update_one_lp - update LEB properties.
690 * @c: the UBIFS file-system description object
691 * @lnum: LEB to change properties for
692 * @free: amount of free space
693 * @dirty: amount of dirty space to add
694 * @flags_set: flags to set
695 * @flags_clean: flags to clean
697 * This function is the same as 'ubifs_change_one_lp()' but @dirty is added to
698 * current dirty space, not substitutes it.
700 int ubifs_update_one_lp(struct ubifs_info
*c
, int lnum
, int free
, int dirty
,
701 int flags_set
, int flags_clean
)
704 const struct ubifs_lprops
*lp
;
708 lp
= ubifs_lpt_lookup_dirty(c
, lnum
);
714 flags
= (lp
->flags
| flags_set
) & ~flags_clean
;
715 lp
= ubifs_change_lp(c
, lp
, free
, lp
->dirty
+ dirty
, flags
, 0);
720 ubifs_release_lprops(c
);
722 ubifs_err(c
, "cannot update properties of LEB %d, error %d",
728 * ubifs_read_one_lp - read LEB properties.
729 * @c: the UBIFS file-system description object
730 * @lnum: LEB to read properties for
731 * @lp: where to store read properties
733 * This helper function reads properties of a LEB @lnum and stores them in @lp.
734 * Returns zero in case of success and a negative error code in case of
737 int ubifs_read_one_lp(struct ubifs_info
*c
, int lnum
, struct ubifs_lprops
*lp
)
740 const struct ubifs_lprops
*lpp
;
744 lpp
= ubifs_lpt_lookup(c
, lnum
);
747 ubifs_err(c
, "cannot read properties of LEB %d, error %d",
752 memcpy(lp
, lpp
, sizeof(struct ubifs_lprops
));
755 ubifs_release_lprops(c
);
760 * ubifs_fast_find_free - try to find a LEB with free space quickly.
761 * @c: the UBIFS file-system description object
763 * This function returns LEB properties for a LEB with free space or %NULL if
764 * the function is unable to find a LEB quickly.
766 const struct ubifs_lprops
*ubifs_fast_find_free(struct ubifs_info
*c
)
768 struct ubifs_lprops
*lprops
;
769 struct ubifs_lpt_heap
*heap
;
771 ubifs_assert(mutex_is_locked(&c
->lp_mutex
));
773 heap
= &c
->lpt_heap
[LPROPS_FREE
- 1];
777 lprops
= heap
->arr
[0];
778 ubifs_assert(!(lprops
->flags
& LPROPS_TAKEN
));
779 ubifs_assert(!(lprops
->flags
& LPROPS_INDEX
));
784 * ubifs_fast_find_empty - try to find an empty LEB quickly.
785 * @c: the UBIFS file-system description object
787 * This function returns LEB properties for an empty LEB or %NULL if the
788 * function is unable to find an empty LEB quickly.
790 const struct ubifs_lprops
*ubifs_fast_find_empty(struct ubifs_info
*c
)
792 struct ubifs_lprops
*lprops
;
794 ubifs_assert(mutex_is_locked(&c
->lp_mutex
));
796 if (list_empty(&c
->empty_list
))
799 lprops
= list_entry(c
->empty_list
.next
, struct ubifs_lprops
, list
);
800 ubifs_assert(!(lprops
->flags
& LPROPS_TAKEN
));
801 ubifs_assert(!(lprops
->flags
& LPROPS_INDEX
));
802 ubifs_assert(lprops
->free
== c
->leb_size
);
807 * ubifs_fast_find_freeable - try to find a freeable LEB quickly.
808 * @c: the UBIFS file-system description object
810 * This function returns LEB properties for a freeable LEB or %NULL if the
811 * function is unable to find a freeable LEB quickly.
813 const struct ubifs_lprops
*ubifs_fast_find_freeable(struct ubifs_info
*c
)
815 struct ubifs_lprops
*lprops
;
817 ubifs_assert(mutex_is_locked(&c
->lp_mutex
));
819 if (list_empty(&c
->freeable_list
))
822 lprops
= list_entry(c
->freeable_list
.next
, struct ubifs_lprops
, list
);
823 ubifs_assert(!(lprops
->flags
& LPROPS_TAKEN
));
824 ubifs_assert(!(lprops
->flags
& LPROPS_INDEX
));
825 ubifs_assert(lprops
->free
+ lprops
->dirty
== c
->leb_size
);
826 ubifs_assert(c
->freeable_cnt
> 0);
831 * ubifs_fast_find_frdi_idx - try to find a freeable index LEB quickly.
832 * @c: the UBIFS file-system description object
834 * This function returns LEB properties for a freeable index LEB or %NULL if the
835 * function is unable to find a freeable index LEB quickly.
837 const struct ubifs_lprops
*ubifs_fast_find_frdi_idx(struct ubifs_info
*c
)
839 struct ubifs_lprops
*lprops
;
841 ubifs_assert(mutex_is_locked(&c
->lp_mutex
));
843 if (list_empty(&c
->frdi_idx_list
))
846 lprops
= list_entry(c
->frdi_idx_list
.next
, struct ubifs_lprops
, list
);
847 ubifs_assert(!(lprops
->flags
& LPROPS_TAKEN
));
848 ubifs_assert((lprops
->flags
& LPROPS_INDEX
));
849 ubifs_assert(lprops
->free
+ lprops
->dirty
== c
->leb_size
);
854 * Everything below is related to debugging.
858 * dbg_check_cats - check category heaps and lists.
859 * @c: UBIFS file-system description object
861 * This function returns %0 on success and a negative error code on failure.
863 int dbg_check_cats(struct ubifs_info
*c
)
865 struct ubifs_lprops
*lprops
;
866 struct list_head
*pos
;
869 if (!dbg_is_chk_gen(c
) && !dbg_is_chk_lprops(c
))
872 list_for_each_entry(lprops
, &c
->empty_list
, list
) {
873 if (lprops
->free
!= c
->leb_size
) {
874 ubifs_err(c
, "non-empty LEB %d on empty list (free %d dirty %d flags %d)",
875 lprops
->lnum
, lprops
->free
, lprops
->dirty
,
879 if (lprops
->flags
& LPROPS_TAKEN
) {
880 ubifs_err(c
, "taken LEB %d on empty list (free %d dirty %d flags %d)",
881 lprops
->lnum
, lprops
->free
, lprops
->dirty
,
888 list_for_each_entry(lprops
, &c
->freeable_list
, list
) {
889 if (lprops
->free
+ lprops
->dirty
!= c
->leb_size
) {
890 ubifs_err(c
, "non-freeable LEB %d on freeable list (free %d dirty %d flags %d)",
891 lprops
->lnum
, lprops
->free
, lprops
->dirty
,
895 if (lprops
->flags
& LPROPS_TAKEN
) {
896 ubifs_err(c
, "taken LEB %d on freeable list (free %d dirty %d flags %d)",
897 lprops
->lnum
, lprops
->free
, lprops
->dirty
,
903 if (i
!= c
->freeable_cnt
) {
904 ubifs_err(c
, "freeable list count %d expected %d", i
,
910 list_for_each(pos
, &c
->idx_gc
)
912 if (i
!= c
->idx_gc_cnt
) {
913 ubifs_err(c
, "idx_gc list count %d expected %d", i
,
918 list_for_each_entry(lprops
, &c
->frdi_idx_list
, list
) {
919 if (lprops
->free
+ lprops
->dirty
!= c
->leb_size
) {
920 ubifs_err(c
, "non-freeable LEB %d on frdi_idx list (free %d dirty %d flags %d)",
921 lprops
->lnum
, lprops
->free
, lprops
->dirty
,
925 if (lprops
->flags
& LPROPS_TAKEN
) {
926 ubifs_err(c
, "taken LEB %d on frdi_idx list (free %d dirty %d flags %d)",
927 lprops
->lnum
, lprops
->free
, lprops
->dirty
,
931 if (!(lprops
->flags
& LPROPS_INDEX
)) {
932 ubifs_err(c
, "non-index LEB %d on frdi_idx list (free %d dirty %d flags %d)",
933 lprops
->lnum
, lprops
->free
, lprops
->dirty
,
939 for (cat
= 1; cat
<= LPROPS_HEAP_CNT
; cat
++) {
940 struct ubifs_lpt_heap
*heap
= &c
->lpt_heap
[cat
- 1];
942 for (i
= 0; i
< heap
->cnt
; i
++) {
943 lprops
= heap
->arr
[i
];
945 ubifs_err(c
, "null ptr in LPT heap cat %d", cat
);
948 if (lprops
->hpos
!= i
) {
949 ubifs_err(c
, "bad ptr in LPT heap cat %d", cat
);
952 if (lprops
->flags
& LPROPS_TAKEN
) {
953 ubifs_err(c
, "taken LEB in LPT heap cat %d", cat
);
962 void dbg_check_heap(struct ubifs_info
*c
, struct ubifs_lpt_heap
*heap
, int cat
,
965 int i
= 0, j
, err
= 0;
967 if (!dbg_is_chk_gen(c
) && !dbg_is_chk_lprops(c
))
970 for (i
= 0; i
< heap
->cnt
; i
++) {
971 struct ubifs_lprops
*lprops
= heap
->arr
[i
];
972 struct ubifs_lprops
*lp
;
975 if ((lprops
->flags
& LPROPS_CAT_MASK
) != cat
) {
979 if (lprops
->hpos
!= i
) {
983 lp
= ubifs_lpt_lookup(c
, lprops
->lnum
);
989 ubifs_err(c
, "lprops %zx lp %zx lprops->lnum %d lp->lnum %d",
990 (size_t)lprops
, (size_t)lp
, lprops
->lnum
,
995 for (j
= 0; j
< i
; j
++) {
1001 if (lp
->lnum
== lprops
->lnum
) {
1009 ubifs_err(c
, "failed cat %d hpos %d err %d", cat
, i
, err
);
1011 ubifs_dump_heap(c
, heap
, cat
);
1016 * scan_check_cb - scan callback.
1017 * @c: the UBIFS file-system description object
1018 * @lp: LEB properties to scan
1019 * @in_tree: whether the LEB properties are in main memory
1020 * @lst: lprops statistics to update
1022 * This function returns a code that indicates whether the scan should continue
1023 * (%LPT_SCAN_CONTINUE), whether the LEB properties should be added to the tree
1024 * in main memory (%LPT_SCAN_ADD), or whether the scan should stop
1027 static int scan_check_cb(struct ubifs_info
*c
,
1028 const struct ubifs_lprops
*lp
, int in_tree
,
1029 struct ubifs_lp_stats
*lst
)
1031 struct ubifs_scan_leb
*sleb
;
1032 struct ubifs_scan_node
*snod
;
1033 int cat
, lnum
= lp
->lnum
, is_idx
= 0, used
= 0, free
, dirty
, ret
;
1036 cat
= lp
->flags
& LPROPS_CAT_MASK
;
1037 if (cat
!= LPROPS_UNCAT
) {
1038 cat
= ubifs_categorize_lprops(c
, lp
);
1039 if (cat
!= (lp
->flags
& LPROPS_CAT_MASK
)) {
1040 ubifs_err(c
, "bad LEB category %d expected %d",
1041 (lp
->flags
& LPROPS_CAT_MASK
), cat
);
1046 /* Check lp is on its category list (if it has one) */
1048 struct list_head
*list
= NULL
;
1052 list
= &c
->empty_list
;
1054 case LPROPS_FREEABLE
:
1055 list
= &c
->freeable_list
;
1057 case LPROPS_FRDI_IDX
:
1058 list
= &c
->frdi_idx_list
;
1061 list
= &c
->uncat_list
;
1065 struct ubifs_lprops
*lprops
;
1068 list_for_each_entry(lprops
, list
, list
) {
1075 ubifs_err(c
, "bad LPT list (category %d)", cat
);
1081 /* Check lp is on its category heap (if it has one) */
1082 if (in_tree
&& cat
> 0 && cat
<= LPROPS_HEAP_CNT
) {
1083 struct ubifs_lpt_heap
*heap
= &c
->lpt_heap
[cat
- 1];
1085 if ((lp
->hpos
!= -1 && heap
->arr
[lp
->hpos
]->lnum
!= lnum
) ||
1086 lp
!= heap
->arr
[lp
->hpos
]) {
1087 ubifs_err(c
, "bad LPT heap (category %d)", cat
);
1092 buf
= __vmalloc(c
->leb_size
, GFP_NOFS
, PAGE_KERNEL
);
1097 * After an unclean unmount, empty and freeable LEBs
1098 * may contain garbage - do not scan them.
1100 if (lp
->free
== c
->leb_size
) {
1101 lst
->empty_lebs
+= 1;
1102 lst
->total_free
+= c
->leb_size
;
1103 lst
->total_dark
+= ubifs_calc_dark(c
, c
->leb_size
);
1104 return LPT_SCAN_CONTINUE
;
1106 if (lp
->free
+ lp
->dirty
== c
->leb_size
&&
1107 !(lp
->flags
& LPROPS_INDEX
)) {
1108 lst
->total_free
+= lp
->free
;
1109 lst
->total_dirty
+= lp
->dirty
;
1110 lst
->total_dark
+= ubifs_calc_dark(c
, c
->leb_size
);
1111 return LPT_SCAN_CONTINUE
;
1114 sleb
= ubifs_scan(c
, lnum
, 0, buf
, 0);
1116 ret
= PTR_ERR(sleb
);
1117 if (ret
== -EUCLEAN
) {
1118 ubifs_dump_lprops(c
);
1119 ubifs_dump_budg(c
, &c
->bi
);
1125 list_for_each_entry(snod
, &sleb
->nodes
, list
) {
1126 int found
, level
= 0;
1131 is_idx
= (snod
->type
== UBIFS_IDX_NODE
) ? 1 : 0;
1133 if (is_idx
&& snod
->type
!= UBIFS_IDX_NODE
) {
1134 ubifs_err(c
, "indexing node in data LEB %d:%d",
1139 if (snod
->type
== UBIFS_IDX_NODE
) {
1140 struct ubifs_idx_node
*idx
= snod
->node
;
1142 key_read(c
, ubifs_idx_key(c
, idx
), &snod
->key
);
1143 level
= le16_to_cpu(idx
->level
);
1146 found
= ubifs_tnc_has_node(c
, &snod
->key
, level
, lnum
,
1147 snod
->offs
, is_idx
);
1151 used
+= ALIGN(snod
->len
, 8);
1155 free
= c
->leb_size
- sleb
->endpt
;
1156 dirty
= sleb
->endpt
- used
;
1158 if (free
> c
->leb_size
|| free
< 0 || dirty
> c
->leb_size
||
1160 ubifs_err(c
, "bad calculated accounting for LEB %d: free %d, dirty %d",
1165 if (lp
->free
+ lp
->dirty
== c
->leb_size
&&
1166 free
+ dirty
== c
->leb_size
)
1167 if ((is_idx
&& !(lp
->flags
& LPROPS_INDEX
)) ||
1168 (!is_idx
&& free
== c
->leb_size
) ||
1169 lp
->free
== c
->leb_size
) {
1171 * Empty or freeable LEBs could contain index
1172 * nodes from an uncompleted commit due to an
1173 * unclean unmount. Or they could be empty for
1174 * the same reason. Or it may simply not have been
1182 if (is_idx
&& lp
->free
+ lp
->dirty
== free
+ dirty
&&
1183 lnum
!= c
->ihead_lnum
) {
1185 * After an unclean unmount, an index LEB could have a different
1186 * amount of free space than the value recorded by lprops. That
1187 * is because the in-the-gaps method may use free space or
1188 * create free space (as a side-effect of using ubi_leb_change
1189 * and not writing the whole LEB). The incorrect free space
1190 * value is not a problem because the index is only ever
1191 * allocated empty LEBs, so there will never be an attempt to
1192 * write to the free space at the end of an index LEB - except
1193 * by the in-the-gaps method for which it is not a problem.
1199 if (lp
->free
!= free
|| lp
->dirty
!= dirty
)
1202 if (is_idx
&& !(lp
->flags
& LPROPS_INDEX
)) {
1203 if (free
== c
->leb_size
)
1204 /* Free but not unmapped LEB, it's fine */
1207 ubifs_err(c
, "indexing node without indexing flag");
1212 if (!is_idx
&& (lp
->flags
& LPROPS_INDEX
)) {
1213 ubifs_err(c
, "data node with indexing flag");
1217 if (free
== c
->leb_size
)
1218 lst
->empty_lebs
+= 1;
1223 if (!(lp
->flags
& LPROPS_INDEX
))
1224 lst
->total_used
+= c
->leb_size
- free
- dirty
;
1225 lst
->total_free
+= free
;
1226 lst
->total_dirty
+= dirty
;
1228 if (!(lp
->flags
& LPROPS_INDEX
)) {
1229 int spc
= free
+ dirty
;
1231 if (spc
< c
->dead_wm
)
1232 lst
->total_dead
+= spc
;
1234 lst
->total_dark
+= ubifs_calc_dark(c
, spc
);
1237 ubifs_scan_destroy(sleb
);
1239 return LPT_SCAN_CONTINUE
;
1242 ubifs_err(c
, "bad accounting of LEB %d: free %d, dirty %d flags %#x, should be free %d, dirty %d",
1243 lnum
, lp
->free
, lp
->dirty
, lp
->flags
, free
, dirty
);
1244 ubifs_dump_leb(c
, lnum
);
1246 ubifs_scan_destroy(sleb
);
1254 * dbg_check_lprops - check all LEB properties.
1255 * @c: UBIFS file-system description object
1257 * This function checks all LEB properties and makes sure they are all correct.
1258 * It returns zero if everything is fine, %-EINVAL if there is an inconsistency
1259 * and other negative error codes in case of other errors. This function is
1260 * called while the file system is locked (because of commit start), so no
1261 * additional locking is required. Note that locking the LPT mutex would cause
1262 * a circular lock dependency with the TNC mutex.
1264 int dbg_check_lprops(struct ubifs_info
*c
)
1267 struct ubifs_lp_stats lst
;
1269 if (!dbg_is_chk_lprops(c
))
1273 * As we are going to scan the media, the write buffers have to be
1276 for (i
= 0; i
< c
->jhead_cnt
; i
++) {
1277 err
= ubifs_wbuf_sync(&c
->jheads
[i
].wbuf
);
1282 memset(&lst
, 0, sizeof(struct ubifs_lp_stats
));
1283 err
= ubifs_lpt_scan_nolock(c
, c
->main_first
, c
->leb_cnt
- 1,
1284 (ubifs_lpt_scan_callback
)scan_check_cb
,
1286 if (err
&& err
!= -ENOSPC
)
1289 if (lst
.empty_lebs
!= c
->lst
.empty_lebs
||
1290 lst
.idx_lebs
!= c
->lst
.idx_lebs
||
1291 lst
.total_free
!= c
->lst
.total_free
||
1292 lst
.total_dirty
!= c
->lst
.total_dirty
||
1293 lst
.total_used
!= c
->lst
.total_used
) {
1294 ubifs_err(c
, "bad overall accounting");
1295 ubifs_err(c
, "calculated: empty_lebs %d, idx_lebs %d, total_free %lld, total_dirty %lld, total_used %lld",
1296 lst
.empty_lebs
, lst
.idx_lebs
, lst
.total_free
,
1297 lst
.total_dirty
, lst
.total_used
);
1298 ubifs_err(c
, "read from lprops: empty_lebs %d, idx_lebs %d, total_free %lld, total_dirty %lld, total_used %lld",
1299 c
->lst
.empty_lebs
, c
->lst
.idx_lebs
, c
->lst
.total_free
,
1300 c
->lst
.total_dirty
, c
->lst
.total_used
);
1305 if (lst
.total_dead
!= c
->lst
.total_dead
||
1306 lst
.total_dark
!= c
->lst
.total_dark
) {
1307 ubifs_err(c
, "bad dead/dark space accounting");
1308 ubifs_err(c
, "calculated: total_dead %lld, total_dark %lld",
1309 lst
.total_dead
, lst
.total_dark
);
1310 ubifs_err(c
, "read from lprops: total_dead %lld, total_dark %lld",
1311 c
->lst
.total_dead
, c
->lst
.total_dark
);
1316 err
= dbg_check_cats(c
);