Home
last modified time | relevance | path

Searched refs:dirty (Results 1 – 25 of 26) sorted by relevance

12

/rk3399_rockchip-uboot/fs/ubifs/
H A Dlprops.c36 return lprops->free + lprops->dirty; in get_heap_comp_val()
38 return lprops->dirty; in get_heap_comp_val()
413 if (lprops->free + lprops->dirty == c->leb_size) { in ubifs_categorize_lprops()
421 if (lprops->dirty + lprops->free >= c->min_idx_node_sz) in ubifs_categorize_lprops()
424 if (lprops->dirty >= c->dead_wm && in ubifs_categorize_lprops()
425 lprops->dirty > lprops->free) in ubifs_categorize_lprops()
528 int free, int dirty, int flags, in ubifs_change_lp() argument
538 lprops->lnum, free, dirty, flags); in ubifs_change_lp()
551 ubifs_assert(dirty == LPROPS_NC || dirty >= 0); in ubifs_change_lp()
560 ubifs_assert(!(lprops->free & 7) && !(lprops->dirty & 7)); in ubifs_change_lp()
[all …]
H A Dreplay.c79 int dirty; member
94 int err = 0, dirty; in set_bud_lprops() local
104 dirty = lp->dirty; in set_bud_lprops()
105 if (b->bud->start == 0 && (lp->free != c->leb_size || lp->dirty != 0)) { in set_bud_lprops()
126 lp->free, lp->dirty); in set_bud_lprops()
128 lp->free, lp->dirty); in set_bud_lprops()
129 dirty -= c->leb_size - lp->free; in set_bud_lprops()
137 if (dirty != 0) in set_bud_lprops()
139 b->bud->lnum, lp->free, lp->dirty, b->free, in set_bud_lprops()
140 b->dirty); in set_bud_lprops()
[all …]
H A Dlpt.c359 pack_bits(&addr, &pos, pnode->lprops[i].dirty >> 3, in ubifs_pack_pnode()
421 pack_bits(&addr, &pos, ltab[i].dirty, c->lpt_spc_bits); in ubifs_pack_ltab()
458 void ubifs_add_lpt_dirt(struct ubifs_info *c, int lnum, int dirty) in ubifs_add_lpt_dirt() argument
460 if (!dirty || !lnum) in ubifs_add_lpt_dirt()
463 lnum, dirty, c->ltab[lnum - c->lpt_first].dirty); in ubifs_add_lpt_dirt()
465 c->ltab[lnum - c->lpt_first].dirty += dirty; in ubifs_add_lpt_dirt()
475 static void set_ltab(struct ubifs_info *c, int lnum, int free, int dirty) in set_ltab() argument
479 c->ltab[lnum - c->lpt_first].dirty, free, dirty); in set_ltab()
482 c->ltab[lnum - c->lpt_first].dirty = dirty; in set_ltab()
643 ltab[i].dirty = 0; in ubifs_create_dflt_lpt()
[all …]
H A Dlpt_commit.c137 static void upd_ltab(struct ubifs_info *c, int lnum, int free, int dirty) in upd_ltab() argument
141 c->ltab[lnum - c->lpt_first].dirty, free, dirty); in upd_ltab()
144 c->ltab[lnum - c->lpt_first].dirty += dirty; in upd_ltab()
733 else if (c->ltab[i].free + c->ltab[i].dirty == c->leb_size) in need_write_all()
757 if (c->ltab[i].dirty > 0 && in lpt_tgc_start()
758 c->ltab[i].free + c->ltab[i].dirty == c->leb_size) { in lpt_tgc_start()
761 c->ltab[i].dirty = 0; in lpt_tgc_start()
1196 int i, lnum = -1, dirty = 0; in lpt_gc() local
1202 c->ltab[i].free + c->ltab[i].dirty == c->leb_size) in lpt_gc()
1204 if (c->ltab[i].dirty > dirty) { in lpt_gc()
[all …]
H A Dmisc.h167 static inline int ubifs_add_dirt(struct ubifs_info *c, int lnum, int dirty) in ubifs_add_dirt() argument
169 return ubifs_update_one_lp(c, lnum, LPROPS_NC, dirty, 0, 0); in ubifs_add_dirt()
H A Dgc.c472 if (lp->free + lp->dirty == c->leb_size) { in ubifs_garbage_collect_leb()
518 lnum, lp->free, lp->dirty); in ubifs_garbage_collect_leb()
554 lnum, lp->free, lp->dirty); in ubifs_garbage_collect_leb()
708 lp.lnum, lp.free, lp.dirty, lp.free + lp.dirty, in ubifs_garbage_collect()
H A Dubifs.h1005 unsigned int dirty:1; member
1076 int dirty; member
1094 int dirty; member
2311 void ubifs_add_lpt_dirt(struct ubifs_info *c, int lnum, int dirty);
2328 int free, int dirty, int flags,
2338 int ubifs_change_one_lp(struct ubifs_info *c, int lnum, int free, int dirty,
2340 int ubifs_update_one_lp(struct ubifs_info *c, int lnum, int free, int dirty,
H A Ddebug.c262 pr_err("\tdirty %u\n", ui->dirty); in ubifs_dump_inode()
659 spc = lp->free + lp->dirty; in ubifs_dump_lprop()
667 lp->lnum, lp->free, lp->dirty, c->leb_size - spc, spc, in ubifs_dump_lprop()
671 lp->lnum, lp->free, lp->dirty, c->leb_size - spc, spc, in ubifs_dump_lprop()
799 i + c->lpt_first, c->ltab[i].free, c->ltab[i].dirty, in ubifs_dump_lpt_info()
908 lprops->dirty, lprops->flags); in ubifs_dump_heap()
927 i, lp->free, lp->dirty, lp->flags, lp->lnum); in ubifs_dump_pnode()
1088 if (ui->ui_size != ui->synced_i_size && !ui->dirty) { in dbg_check_synced_i_size()
H A Dsuper.c492 if (!ui->dirty) { in ubifs_write_inode()
512 ui->dirty = 0; in ubifs_write_inode()
554 if (ui->dirty) in ubifs_evict_inode()
571 if (!ui->dirty) { in ubifs_dirty_inode()
572 ui->dirty = 1; in ubifs_dirty_inode()
H A Drecovery.c1190 ubifs_assert(lp.free + lp.dirty >= wbuf->offs); in ubifs_rcvry_gc_commit()
/rk3399_rockchip-uboot/scripts/
H A Dsetlocalversion81 printf '%s' -dirty
108 *+|*+\ *) printf '%s' -dirty ;;
/rk3399_rockchip-uboot/board/bosch/shc/
H A DREADME79 U-Boot SPL 2016.05-rc2-00016-gf23b960-dirty (Apr 26 2016 - 09:02:18)
105 U-Boot 2016.05-rc2-00016-gf23b960-dirty (Apr 26 2016 - 09:02:18 +0200)
/rk3399_rockchip-uboot/fs/yaffs2/
H A Dyaffs_guts.c1341 obj->dirty = 1; in yaffs_change_obj_name()
1376 if (cache->object == obj && cache->dirty) in yaffs_obj_cache_dirty()
1400 dev->cache[i].dirty) { in yaffs_flush_file_cache()
1416 cache->dirty = 0; in yaffs_flush_file_cache()
1444 if (dev->cache[i].object && dev->cache[i].dirty) in yaffs_flush_whole_cache()
1509 if (!cache || cache->dirty) { in yaffs_grab_chunk_cache()
1560 cache->dirty = 1; in yaffs_use_cache()
1956 INIT_LIST_HEAD(&the_obj->variant.dir_variant.dirty); in yaffs_new_obj()
2063 obj->dirty = 1; in yaffs_update_parent()
2066 struct list_head *link = &obj->variant.dir_variant.dirty; in yaffs_update_parent()
[all …]
H A Dyaffs_guts.h133 int dirty; member
379 struct list_head dirty; /* Entry for list of dirty directories */ member
405 u8 dirty:1; /* the object needs to be written to flash */ member
H A Dyaffs_yaffs1.c280 in->dirty = 0; in yaffs1_scan()
H A Dyaffsfs.c1726 obj->dirty = 1; in yaffsfs_DoUtime()
2200 obj->dirty = 1; in yaffs_set_wince_times()
2223 obj->dirty = 1; in yaffsfs_DoChMod()
H A Dyaffs_yaffs2.c1245 in->dirty = 0; in yaffs2_scan_chunk()
/rk3399_rockchip-uboot/board/rockchip/sheep_rk3368/
H A DREADME31 U-Boot 2017.05-rc3-01094-g9ddd1e8-dirty (May 15 2017 - 15:57:23 +0800)
/rk3399_rockchip-uboot/board/rockchip/evb_rv1108/
H A DREADME27 U-Boot 2017.09-01119-gc3ef4c0-dirty (Feb 06 2018 - 10:04:12 +0800)
/rk3399_rockchip-uboot/doc/
H A DREADME.arm-caches25 - Invalidate the buffer before starting the DMA. In case there are any dirty
H A DREADME.rockchip82 U-Boot SPL 2015.07-rc1-00383-ge345740-dirty (Jun 03 2015 - 10:06:49)
113 U-Boot 2016.01-rc2-00309-ge5bad3b-dirty (Jan 02 2016 - 23:41:59 -0700)
245 U-Boot SPL 2015.07-rc2-00215-g9a58220-dirty (Jun 23 2015 - 12:11:32)
248 U-Boot 2015.07-rc2-00215-g9a58220-dirty (Jun 23 2015 - 12:11:32 -0600)
H A DREADME.Heterogeneous-SoCs86 U-Boot 2014.07-00222-g70587a8-dirty (Aug 07 2014 - 13:15:47)
H A DREADME.chromium108 U-Boot 2017.07-00637-g242eb42-dirty (May 22 2017 - 06:14:21 -0600)
200 U-Boot 2017.05-00649-g72acdbf-dirty (May 29 2017 - 14:57:05 -0600)
H A DREADME.m54418twr131 U-Boot 2012.10-00209-g12ae1d8-dirty (Oct 18 2012 - 15:54:54)
/rk3399_rockchip-uboot/board/freescale/m54455evb/
H A DREADME213 U-Boot 1.2.0-g98c80b46-dirty (Jul 26 2007 - 12:44:08)
346 Linux version 2.6.20-gfe5136d6-dirty (mattw@kea) (gcc version 4.2.0 20070318 (pr

12