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 (Битюцкий Артём)
23 /* This file implements TNC functions for committing */
25 #include <linux/random.h>
29 * make_idx_node - make an index node for fill-the-gaps method of TNC commit.
30 * @c: UBIFS file-system description object
31 * @idx: buffer in which to place new index node
32 * @znode: znode from which to make new index node
33 * @lnum: LEB number where new index node will be written
34 * @offs: offset where new index node will be written
35 * @len: length of new index node
37 static int make_idx_node(struct ubifs_info
*c
, struct ubifs_idx_node
*idx
,
38 struct ubifs_znode
*znode
, int lnum
, int offs
, int len
)
40 struct ubifs_znode
*zp
;
44 idx
->ch
.node_type
= UBIFS_IDX_NODE
;
45 idx
->child_cnt
= cpu_to_le16(znode
->child_cnt
);
46 idx
->level
= cpu_to_le16(znode
->level
);
47 for (i
= 0; i
< znode
->child_cnt
; i
++) {
48 struct ubifs_branch
*br
= ubifs_idx_branch(c
, idx
, i
);
49 struct ubifs_zbranch
*zbr
= &znode
->zbranch
[i
];
51 key_write_idx(c
, &zbr
->key
, &br
->key
);
52 br
->lnum
= cpu_to_le32(zbr
->lnum
);
53 br
->offs
= cpu_to_le32(zbr
->offs
);
54 br
->len
= cpu_to_le32(zbr
->len
);
55 if (!zbr
->lnum
|| !zbr
->len
) {
56 ubifs_err("bad ref in znode");
57 ubifs_dump_znode(c
, znode
);
59 ubifs_dump_znode(c
, zbr
->znode
);
62 ubifs_prepare_node(c
, idx
, len
, 0);
68 err
= insert_old_idx_znode(c
, znode
);
70 /* Update the parent */
73 struct ubifs_zbranch
*zbr
;
75 zbr
= &zp
->zbranch
[znode
->iip
];
84 c
->calc_idx_sz
+= ALIGN(len
, 8);
86 atomic_long_dec(&c
->dirty_zn_cnt
);
88 ubifs_assert(ubifs_zn_dirty(znode
));
89 ubifs_assert(ubifs_zn_cow(znode
));
92 * Note, unlike 'write_index()' we do not add memory barriers here
93 * because this function is called with @c->tnc_mutex locked.
95 __clear_bit(DIRTY_ZNODE
, &znode
->flags
);
96 __clear_bit(COW_ZNODE
, &znode
->flags
);
102 * fill_gap - make index nodes in gaps in dirty index LEBs.
103 * @c: UBIFS file-system description object
104 * @lnum: LEB number that gap appears in
105 * @gap_start: offset of start of gap
106 * @gap_end: offset of end of gap
107 * @dirt: adds dirty space to this
109 * This function returns the number of index nodes written into the gap.
111 static int fill_gap(struct ubifs_info
*c
, int lnum
, int gap_start
, int gap_end
,
114 int len
, gap_remains
, gap_pos
, written
, pad_len
;
116 ubifs_assert((gap_start
& 7) == 0);
117 ubifs_assert((gap_end
& 7) == 0);
118 ubifs_assert(gap_end
>= gap_start
);
120 gap_remains
= gap_end
- gap_start
;
126 len
= ubifs_idx_node_sz(c
, c
->enext
->child_cnt
);
127 if (len
< gap_remains
) {
128 struct ubifs_znode
*znode
= c
->enext
;
129 const int alen
= ALIGN(len
, 8);
132 ubifs_assert(alen
<= gap_remains
);
133 err
= make_idx_node(c
, c
->ileb_buf
+ gap_pos
, znode
,
139 c
->enext
= znode
->cnext
;
140 if (c
->enext
== c
->cnext
)
146 if (gap_end
== c
->leb_size
) {
147 c
->ileb_len
= ALIGN(gap_pos
, c
->min_io_size
);
148 /* Pad to end of min_io_size */
149 pad_len
= c
->ileb_len
- gap_pos
;
151 /* Pad to end of gap */
152 pad_len
= gap_remains
;
153 dbg_gc("LEB %d:%d to %d len %d nodes written %d wasted bytes %d",
154 lnum
, gap_start
, gap_end
, gap_end
- gap_start
, written
, pad_len
);
155 ubifs_pad(c
, c
->ileb_buf
+ gap_pos
, pad_len
);
161 * find_old_idx - find an index node obsoleted since the last commit start.
162 * @c: UBIFS file-system description object
163 * @lnum: LEB number of obsoleted index node
164 * @offs: offset of obsoleted index node
166 * Returns %1 if found and %0 otherwise.
168 static int find_old_idx(struct ubifs_info
*c
, int lnum
, int offs
)
170 struct ubifs_old_idx
*o
;
173 p
= c
->old_idx
.rb_node
;
175 o
= rb_entry(p
, struct ubifs_old_idx
, rb
);
178 else if (lnum
> o
->lnum
)
180 else if (offs
< o
->offs
)
182 else if (offs
> o
->offs
)
191 * is_idx_node_in_use - determine if an index node can be overwritten.
192 * @c: UBIFS file-system description object
193 * @key: key of index node
194 * @level: index node level
195 * @lnum: LEB number of index node
196 * @offs: offset of index node
198 * If @key / @lnum / @offs identify an index node that was not part of the old
199 * index, then this function returns %0 (obsolete). Else if the index node was
200 * part of the old index but is now dirty %1 is returned, else if it is clean %2
201 * is returned. A negative error code is returned on failure.
203 static int is_idx_node_in_use(struct ubifs_info
*c
, union ubifs_key
*key
,
204 int level
, int lnum
, int offs
)
208 ret
= is_idx_node_in_tnc(c
, key
, level
, lnum
, offs
);
210 return ret
; /* Error code */
212 if (find_old_idx(c
, lnum
, offs
))
218 * layout_leb_in_gaps - layout index nodes using in-the-gaps method.
219 * @c: UBIFS file-system description object
220 * @p: return LEB number here
222 * This function lays out new index nodes for dirty znodes using in-the-gaps
223 * method of TNC commit.
224 * This function merely puts the next znode into the next gap, making no attempt
225 * to try to maximise the number of znodes that fit.
226 * This function returns the number of index nodes written into the gaps, or a
227 * negative error code on failure.
229 static int layout_leb_in_gaps(struct ubifs_info
*c
, int *p
)
231 struct ubifs_scan_leb
*sleb
;
232 struct ubifs_scan_node
*snod
;
233 int lnum
, dirt
= 0, gap_start
, gap_end
, err
, written
, tot_written
;
236 /* Get an index LEB with lots of obsolete index nodes */
237 lnum
= ubifs_find_dirty_idx_leb(c
);
240 * There also may be dirt in the index head that could be
241 * filled, however we do not check there at present.
243 return lnum
; /* Error code */
245 dbg_gc("LEB %d", lnum
);
247 * Scan the index LEB. We use the generic scan for this even though
248 * it is more comprehensive and less efficient than is needed for this
251 sleb
= ubifs_scan(c
, lnum
, 0, c
->ileb_buf
, 0);
254 return PTR_ERR(sleb
);
256 list_for_each_entry(snod
, &sleb
->nodes
, list
) {
257 struct ubifs_idx_node
*idx
;
260 ubifs_assert(snod
->type
== UBIFS_IDX_NODE
);
262 key_read(c
, ubifs_idx_key(c
, idx
), &snod
->key
);
263 level
= le16_to_cpu(idx
->level
);
264 /* Determine if the index node is in use (not obsolete) */
265 in_use
= is_idx_node_in_use(c
, &snod
->key
, level
, lnum
,
268 ubifs_scan_destroy(sleb
);
269 return in_use
; /* Error code */
273 dirt
+= ALIGN(snod
->len
, 8);
275 * The obsolete index nodes form gaps that can be
276 * overwritten. This gap has ended because we have
277 * found an index node that is still in use
280 gap_end
= snod
->offs
;
281 /* Try to fill gap */
282 written
= fill_gap(c
, lnum
, gap_start
, gap_end
, &dirt
);
284 ubifs_scan_destroy(sleb
);
285 return written
; /* Error code */
287 tot_written
+= written
;
288 gap_start
= ALIGN(snod
->offs
+ snod
->len
, 8);
291 ubifs_scan_destroy(sleb
);
292 c
->ileb_len
= c
->leb_size
;
293 gap_end
= c
->leb_size
;
294 /* Try to fill gap */
295 written
= fill_gap(c
, lnum
, gap_start
, gap_end
, &dirt
);
297 return written
; /* Error code */
298 tot_written
+= written
;
299 if (tot_written
== 0) {
300 struct ubifs_lprops lp
;
302 dbg_gc("LEB %d wrote %d index nodes", lnum
, tot_written
);
303 err
= ubifs_read_one_lp(c
, lnum
, &lp
);
306 if (lp
.free
== c
->leb_size
) {
308 * We must have snatched this LEB from the idx_gc list
309 * so we need to correct the free and dirty space.
311 err
= ubifs_change_one_lp(c
, lnum
,
312 c
->leb_size
- c
->ileb_len
,
319 err
= ubifs_change_one_lp(c
, lnum
, c
->leb_size
- c
->ileb_len
, dirt
,
323 err
= ubifs_leb_change(c
, lnum
, c
->ileb_buf
, c
->ileb_len
);
326 dbg_gc("LEB %d wrote %d index nodes", lnum
, tot_written
);
331 * get_leb_cnt - calculate the number of empty LEBs needed to commit.
332 * @c: UBIFS file-system description object
333 * @cnt: number of znodes to commit
335 * This function returns the number of empty LEBs needed to commit @cnt znodes
336 * to the current index head. The number is not exact and may be more than
339 static int get_leb_cnt(struct ubifs_info
*c
, int cnt
)
343 /* Assume maximum index node size (i.e. overestimate space needed) */
344 cnt
-= (c
->leb_size
- c
->ihead_offs
) / c
->max_idx_node_sz
;
347 d
= c
->leb_size
/ c
->max_idx_node_sz
;
348 return DIV_ROUND_UP(cnt
, d
);
352 * layout_in_gaps - in-the-gaps method of committing TNC.
353 * @c: UBIFS file-system description object
354 * @cnt: number of dirty znodes to commit.
356 * This function lays out new index nodes for dirty znodes using in-the-gaps
357 * method of TNC commit.
359 * This function returns %0 on success and a negative error code on failure.
361 static int layout_in_gaps(struct ubifs_info
*c
, int cnt
)
363 int err
, leb_needed_cnt
, written
, *p
;
365 dbg_gc("%d znodes to write", cnt
);
367 c
->gap_lebs
= kmalloc(sizeof(int) * (c
->lst
.idx_lebs
+ 1), GFP_NOFS
);
373 ubifs_assert(p
< c
->gap_lebs
+ sizeof(int) * c
->lst
.idx_lebs
);
374 written
= layout_leb_in_gaps(c
, p
);
377 if (err
!= -ENOSPC
) {
382 if (!dbg_is_chk_index(c
)) {
384 * Do not print scary warnings if the debugging
385 * option which forces in-the-gaps is enabled.
387 ubifs_warn("out of space");
388 ubifs_dump_budg(c
, &c
->bi
);
389 ubifs_dump_lprops(c
);
391 /* Try to commit anyway */
397 leb_needed_cnt
= get_leb_cnt(c
, cnt
);
398 dbg_gc("%d znodes remaining, need %d LEBs, have %d", cnt
,
399 leb_needed_cnt
, c
->ileb_cnt
);
400 } while (leb_needed_cnt
> c
->ileb_cnt
);
407 * layout_in_empty_space - layout index nodes in empty space.
408 * @c: UBIFS file-system description object
410 * This function lays out new index nodes for dirty znodes using empty LEBs.
412 * This function returns %0 on success and a negative error code on failure.
414 static int layout_in_empty_space(struct ubifs_info
*c
)
416 struct ubifs_znode
*znode
, *cnext
, *zp
;
417 int lnum
, offs
, len
, next_len
, buf_len
, buf_offs
, used
, avail
;
424 lnum
= c
->ihead_lnum
;
425 buf_offs
= c
->ihead_offs
;
427 buf_len
= ubifs_idx_node_sz(c
, c
->fanout
);
428 buf_len
= ALIGN(buf_len
, c
->min_io_size
);
432 /* Ensure there is enough room for first write */
433 next_len
= ubifs_idx_node_sz(c
, cnext
->child_cnt
);
434 if (buf_offs
+ next_len
> c
->leb_size
)
440 len
= ubifs_idx_node_sz(c
, znode
->child_cnt
);
442 /* Determine the index node position */
444 if (c
->ileb_nxt
>= c
->ileb_cnt
) {
445 ubifs_err("out of space");
448 lnum
= c
->ilebs
[c
->ileb_nxt
++];
454 offs
= buf_offs
+ used
;
460 /* Update the parent */
463 struct ubifs_zbranch
*zbr
;
467 zbr
= &zp
->zbranch
[i
];
472 c
->zroot
.lnum
= lnum
;
473 c
->zroot
.offs
= offs
;
476 c
->calc_idx_sz
+= ALIGN(len
, 8);
479 * Once lprops is updated, we can decrease the dirty znode count
480 * but it is easier to just do it here.
482 atomic_long_dec(&c
->dirty_zn_cnt
);
485 * Calculate the next index node length to see if there is
488 cnext
= znode
->cnext
;
489 if (cnext
== c
->cnext
)
492 next_len
= ubifs_idx_node_sz(c
, cnext
->child_cnt
);
494 /* Update buffer positions */
496 used
+= ALIGN(len
, 8);
497 avail
-= ALIGN(len
, 8);
500 buf_offs
+ used
+ next_len
<= c
->leb_size
&&
504 if (avail
<= 0 && next_len
&&
505 buf_offs
+ used
+ next_len
<= c
->leb_size
)
508 blen
= ALIGN(wlen
, c
->min_io_size
);
510 /* The buffer is full or there are no more znodes to do */
513 if (buf_offs
+ next_len
> c
->leb_size
) {
514 err
= ubifs_update_one_lp(c
, lnum
,
515 c
->leb_size
- buf_offs
, blen
- used
,
524 avail
= buf_len
- used
;
527 err
= ubifs_update_one_lp(c
, lnum
, c
->leb_size
- buf_offs
,
534 c
->dbg
->new_ihead_lnum
= lnum
;
535 c
->dbg
->new_ihead_offs
= buf_offs
;
541 * layout_commit - determine positions of index nodes to commit.
542 * @c: UBIFS file-system description object
543 * @no_space: indicates that insufficient empty LEBs were allocated
544 * @cnt: number of znodes to commit
546 * Calculate and update the positions of index nodes to commit. If there were
547 * an insufficient number of empty LEBs allocated, then index nodes are placed
548 * into the gaps created by obsolete index nodes in non-empty index LEBs. For
549 * this purpose, an obsolete index node is one that was not in the index as at
550 * the end of the last commit. To write "in-the-gaps" requires that those index
551 * LEBs are updated atomically in-place.
553 static int layout_commit(struct ubifs_info
*c
, int no_space
, int cnt
)
558 err
= layout_in_gaps(c
, cnt
);
562 err
= layout_in_empty_space(c
);
567 * find_first_dirty - find first dirty znode.
568 * @znode: znode to begin searching from
570 static struct ubifs_znode
*find_first_dirty(struct ubifs_znode
*znode
)
578 if (znode
->level
== 0) {
579 if (ubifs_zn_dirty(znode
))
584 for (i
= 0; i
< znode
->child_cnt
; i
++) {
585 struct ubifs_zbranch
*zbr
= &znode
->zbranch
[i
];
587 if (zbr
->znode
&& ubifs_zn_dirty(zbr
->znode
)) {
594 if (ubifs_zn_dirty(znode
))
602 * find_next_dirty - find next dirty znode.
603 * @znode: znode to begin searching from
605 static struct ubifs_znode
*find_next_dirty(struct ubifs_znode
*znode
)
607 int n
= znode
->iip
+ 1;
609 znode
= znode
->parent
;
612 for (; n
< znode
->child_cnt
; n
++) {
613 struct ubifs_zbranch
*zbr
= &znode
->zbranch
[n
];
615 if (zbr
->znode
&& ubifs_zn_dirty(zbr
->znode
))
616 return find_first_dirty(zbr
->znode
);
622 * get_znodes_to_commit - create list of dirty znodes to commit.
623 * @c: UBIFS file-system description object
625 * This function returns the number of znodes to commit.
627 static int get_znodes_to_commit(struct ubifs_info
*c
)
629 struct ubifs_znode
*znode
, *cnext
;
632 c
->cnext
= find_first_dirty(c
->zroot
.znode
);
633 znode
= c
->enext
= c
->cnext
;
635 dbg_cmt("no znodes to commit");
640 ubifs_assert(!ubifs_zn_cow(znode
));
641 __set_bit(COW_ZNODE
, &znode
->flags
);
643 cnext
= find_next_dirty(znode
);
645 znode
->cnext
= c
->cnext
;
648 znode
->cnext
= cnext
;
652 dbg_cmt("committing %d znodes", cnt
);
653 ubifs_assert(cnt
== atomic_long_read(&c
->dirty_zn_cnt
));
658 * alloc_idx_lebs - allocate empty LEBs to be used to commit.
659 * @c: UBIFS file-system description object
660 * @cnt: number of znodes to commit
662 * This function returns %-ENOSPC if it cannot allocate a sufficient number of
663 * empty LEBs. %0 is returned on success, otherwise a negative error code
666 static int alloc_idx_lebs(struct ubifs_info
*c
, int cnt
)
668 int i
, leb_cnt
, lnum
;
672 leb_cnt
= get_leb_cnt(c
, cnt
);
673 dbg_cmt("need about %d empty LEBS for TNC commit", leb_cnt
);
676 c
->ilebs
= kmalloc(leb_cnt
* sizeof(int), GFP_NOFS
);
679 for (i
= 0; i
< leb_cnt
; i
++) {
680 lnum
= ubifs_find_free_leb_for_idx(c
);
683 c
->ilebs
[c
->ileb_cnt
++] = lnum
;
684 dbg_cmt("LEB %d", lnum
);
686 if (dbg_is_chk_index(c
) && !(random32() & 7))
692 * free_unused_idx_lebs - free unused LEBs that were allocated for the commit.
693 * @c: UBIFS file-system description object
695 * It is possible that we allocate more empty LEBs for the commit than we need.
696 * This functions frees the surplus.
698 * This function returns %0 on success and a negative error code on failure.
700 static int free_unused_idx_lebs(struct ubifs_info
*c
)
702 int i
, err
= 0, lnum
, er
;
704 for (i
= c
->ileb_nxt
; i
< c
->ileb_cnt
; i
++) {
706 dbg_cmt("LEB %d", lnum
);
707 er
= ubifs_change_one_lp(c
, lnum
, LPROPS_NC
, LPROPS_NC
, 0,
708 LPROPS_INDEX
| LPROPS_TAKEN
, 0);
716 * free_idx_lebs - free unused LEBs after commit end.
717 * @c: UBIFS file-system description object
719 * This function returns %0 on success and a negative error code on failure.
721 static int free_idx_lebs(struct ubifs_info
*c
)
725 err
= free_unused_idx_lebs(c
);
732 * ubifs_tnc_start_commit - start TNC commit.
733 * @c: UBIFS file-system description object
734 * @zroot: new index root position is returned here
736 * This function prepares the list of indexing nodes to commit and lays out
737 * their positions on flash. If there is not enough free space it uses the
738 * in-gap commit method. Returns zero in case of success and a negative error
739 * code in case of failure.
741 int ubifs_tnc_start_commit(struct ubifs_info
*c
, struct ubifs_zbranch
*zroot
)
745 mutex_lock(&c
->tnc_mutex
);
746 err
= dbg_check_tnc(c
, 1);
749 cnt
= get_znodes_to_commit(c
);
753 err
= alloc_idx_lebs(c
, cnt
);
758 err
= layout_commit(c
, no_space
, cnt
);
761 ubifs_assert(atomic_long_read(&c
->dirty_zn_cnt
) == 0);
762 err
= free_unused_idx_lebs(c
);
767 memcpy(zroot
, &c
->zroot
, sizeof(struct ubifs_zbranch
));
769 err
= ubifs_save_dirty_idx_lnums(c
);
773 spin_lock(&c
->space_lock
);
775 * Although we have not finished committing yet, update size of the
776 * committed index ('c->bi.old_idx_sz') and zero out the index growth
777 * budget. It is OK to do this now, because we've reserved all the
778 * space which is needed to commit the index, and it is save for the
779 * budgeting subsystem to assume the index is already committed,
780 * even though it is not.
782 ubifs_assert(c
->bi
.min_idx_lebs
== ubifs_calc_min_idx_lebs(c
));
783 c
->bi
.old_idx_sz
= c
->calc_idx_sz
;
784 c
->bi
.uncommitted_idx
= 0;
785 c
->bi
.min_idx_lebs
= ubifs_calc_min_idx_lebs(c
);
786 spin_unlock(&c
->space_lock
);
787 mutex_unlock(&c
->tnc_mutex
);
789 dbg_cmt("number of index LEBs %d", c
->lst
.idx_lebs
);
790 dbg_cmt("size of index %llu", c
->calc_idx_sz
);
796 mutex_unlock(&c
->tnc_mutex
);
801 * write_index - write index nodes.
802 * @c: UBIFS file-system description object
804 * This function writes the index nodes whose positions were laid out in the
805 * layout_in_empty_space function.
807 static int write_index(struct ubifs_info
*c
)
809 struct ubifs_idx_node
*idx
;
810 struct ubifs_znode
*znode
, *cnext
;
811 int i
, lnum
, offs
, len
, next_len
, buf_len
, buf_offs
, used
;
812 int avail
, wlen
, err
, lnum_pos
= 0, blen
, nxt_offs
;
819 * Always write index nodes to the index head so that index nodes and
820 * other types of nodes are never mixed in the same erase block.
822 lnum
= c
->ihead_lnum
;
823 buf_offs
= c
->ihead_offs
;
825 /* Allocate commit buffer */
826 buf_len
= ALIGN(c
->max_idx_node_sz
, c
->min_io_size
);
830 /* Ensure there is enough room for first write */
831 next_len
= ubifs_idx_node_sz(c
, cnext
->child_cnt
);
832 if (buf_offs
+ next_len
> c
->leb_size
) {
833 err
= ubifs_update_one_lp(c
, lnum
, LPROPS_NC
, 0, 0,
844 idx
= c
->cbuf
+ used
;
846 /* Make index node */
847 idx
->ch
.node_type
= UBIFS_IDX_NODE
;
848 idx
->child_cnt
= cpu_to_le16(znode
->child_cnt
);
849 idx
->level
= cpu_to_le16(znode
->level
);
850 for (i
= 0; i
< znode
->child_cnt
; i
++) {
851 struct ubifs_branch
*br
= ubifs_idx_branch(c
, idx
, i
);
852 struct ubifs_zbranch
*zbr
= &znode
->zbranch
[i
];
854 key_write_idx(c
, &zbr
->key
, &br
->key
);
855 br
->lnum
= cpu_to_le32(zbr
->lnum
);
856 br
->offs
= cpu_to_le32(zbr
->offs
);
857 br
->len
= cpu_to_le32(zbr
->len
);
858 if (!zbr
->lnum
|| !zbr
->len
) {
859 ubifs_err("bad ref in znode");
860 ubifs_dump_znode(c
, znode
);
862 ubifs_dump_znode(c
, zbr
->znode
);
865 len
= ubifs_idx_node_sz(c
, znode
->child_cnt
);
866 ubifs_prepare_node(c
, idx
, len
, 0);
868 /* Determine the index node position */
870 lnum
= c
->ilebs
[lnum_pos
++];
875 offs
= buf_offs
+ used
;
877 if (lnum
!= znode
->lnum
|| offs
!= znode
->offs
||
879 ubifs_err("inconsistent znode posn");
883 /* Grab some stuff from znode while we still can */
884 cnext
= znode
->cnext
;
886 ubifs_assert(ubifs_zn_dirty(znode
));
887 ubifs_assert(ubifs_zn_cow(znode
));
890 * It is important that other threads should see %DIRTY_ZNODE
891 * flag cleared before %COW_ZNODE. Specifically, it matters in
892 * the 'dirty_cow_znode()' function. This is the reason for the
893 * first barrier. Also, we want the bit changes to be seen to
894 * other threads ASAP, to avoid unnecesarry copying, which is
895 * the reason for the second barrier.
897 clear_bit(DIRTY_ZNODE
, &znode
->flags
);
898 smp_mb__before_clear_bit();
899 clear_bit(COW_ZNODE
, &znode
->flags
);
900 smp_mb__after_clear_bit();
903 * We have marked the znode as clean but have not updated the
904 * @c->clean_zn_cnt counter. If this znode becomes dirty again
905 * before 'free_obsolete_znodes()' is called, then
906 * @c->clean_zn_cnt will be decremented before it gets
907 * incremented (resulting in 2 decrements for the same znode).
908 * This means that @c->clean_zn_cnt may become negative for a
911 * Q: why we cannot increment @c->clean_zn_cnt?
912 * A: because we do not have the @c->tnc_mutex locked, and the
913 * following code would be racy and buggy:
915 * if (!ubifs_zn_obsolete(znode)) {
916 * atomic_long_inc(&c->clean_zn_cnt);
917 * atomic_long_inc(&ubifs_clean_zn_cnt);
920 * Thus, we just delay the @c->clean_zn_cnt update until we
921 * have the mutex locked.
924 /* Do not access znode from this point on */
926 /* Update buffer positions */
928 used
+= ALIGN(len
, 8);
929 avail
-= ALIGN(len
, 8);
932 * Calculate the next index node length to see if there is
935 if (cnext
== c
->cnext
)
938 next_len
= ubifs_idx_node_sz(c
, cnext
->child_cnt
);
940 nxt_offs
= buf_offs
+ used
+ next_len
;
941 if (next_len
&& nxt_offs
<= c
->leb_size
) {
947 wlen
= ALIGN(wlen
, 8);
948 blen
= ALIGN(wlen
, c
->min_io_size
);
949 ubifs_pad(c
, c
->cbuf
+ wlen
, blen
- wlen
);
952 /* The buffer is full or there are no more znodes to do */
953 err
= ubifs_leb_write(c
, lnum
, c
->cbuf
, buf_offs
, blen
);
958 if (nxt_offs
> c
->leb_size
) {
959 err
= ubifs_update_one_lp(c
, lnum
, LPROPS_NC
, 0,
968 avail
= buf_len
- used
;
969 memmove(c
->cbuf
, c
->cbuf
+ blen
, used
);
975 if (lnum
!= c
->dbg
->new_ihead_lnum
||
976 buf_offs
!= c
->dbg
->new_ihead_offs
) {
977 ubifs_err("inconsistent ihead");
981 c
->ihead_lnum
= lnum
;
982 c
->ihead_offs
= buf_offs
;
988 * free_obsolete_znodes - free obsolete znodes.
989 * @c: UBIFS file-system description object
991 * At the end of commit end, obsolete znodes are freed.
993 static void free_obsolete_znodes(struct ubifs_info
*c
)
995 struct ubifs_znode
*znode
, *cnext
;
1000 cnext
= znode
->cnext
;
1001 if (ubifs_zn_obsolete(znode
))
1004 znode
->cnext
= NULL
;
1005 atomic_long_inc(&c
->clean_zn_cnt
);
1006 atomic_long_inc(&ubifs_clean_zn_cnt
);
1008 } while (cnext
!= c
->cnext
);
1012 * return_gap_lebs - return LEBs used by the in-gap commit method.
1013 * @c: UBIFS file-system description object
1015 * This function clears the "taken" flag for the LEBs which were used by the
1016 * "commit in-the-gaps" method.
1018 static int return_gap_lebs(struct ubifs_info
*c
)
1026 for (p
= c
->gap_lebs
; *p
!= -1; p
++) {
1027 err
= ubifs_change_one_lp(c
, *p
, LPROPS_NC
, LPROPS_NC
, 0,
1039 * ubifs_tnc_end_commit - update the TNC for commit end.
1040 * @c: UBIFS file-system description object
1042 * Write the dirty znodes.
1044 int ubifs_tnc_end_commit(struct ubifs_info
*c
)
1051 err
= return_gap_lebs(c
);
1055 err
= write_index(c
);
1059 mutex_lock(&c
->tnc_mutex
);
1061 dbg_cmt("TNC height is %d", c
->zroot
.znode
->level
+ 1);
1063 free_obsolete_znodes(c
);
1069 mutex_unlock(&c
->tnc_mutex
);