Searched refs:total_free (Results 1 – 11 of 11) sorted by relevance
/linux-2.6.39/fs/qnx4/ |
D | bitmap.c | 41 int total_free = 0; in qnx4_count_free_blocks() local 51 count_bits(bh->b_data, size - total, &total_free); in qnx4_count_free_blocks() 57 return total_free; in qnx4_count_free_blocks()
|
/linux-2.6.39/fs/ubifs/ |
D | master.c | 198 if (c->lst.total_free < 0 || c->lst.total_free > main_sz || in validate_master() 199 c->lst.total_free & 7) { in validate_master() 214 if (c->lst.total_free + c->lst.total_dirty + in validate_master() 227 c->lst.total_dead > c->lst.total_free + c->lst.total_dirty || in validate_master() 234 c->lst.total_dark > c->lst.total_free + c->lst.total_dirty || in validate_master() 302 c->lst.total_free = le64_to_cpu(c->mst_node->total_free); in ubifs_read_master() 327 c->lst.total_free += growth * (long long)c->leb_size; in ubifs_read_master() 338 c->mst_node->total_free = cpu_to_le64(c->lst.total_free); in ubifs_read_master()
|
D | lprops.c | 549 ubifs_assert(!(c->lst.total_free & 7) && !(c->lst.total_dirty & 7)); in ubifs_change_lp() 582 c->lst.total_free += free - lprops->free; in ubifs_change_lp() 1113 lst->total_free += c->leb_size; in scan_check_cb() 1123 lst->total_free += lp->free; in scan_check_cb() 1236 lst->total_free += free; in scan_check_cb() 1312 lst->total_free != c->lst.total_free || in dbg_check_lprops() 1318 lst->empty_lebs, lst->idx_lebs, lst->total_free, in dbg_check_lprops() 1322 c->lst.empty_lebs, c->lst.idx_lebs, c->lst.total_free, in dbg_check_lprops()
|
D | commit.c | 197 c->mst_node->total_free = cpu_to_le64(lst.total_free); in do_commit()
|
D | ubifs-media.h | 696 __le64 total_free; member
|
D | sb.c | 240 mst->total_free = cpu_to_le64(tmp64); in create_default_filesystem()
|
D | ubifs.h | 528 long long total_free; member
|
D | debug.c | 409 (unsigned long long)le64_to_cpu(mst->total_free)); in dbg_dump_node() 597 "total_dirty %lld\n", lst->taken_empty_lebs, lst->total_free, in dbg_dump_lstats()
|
D | super.c | 1146 if (c->lst.total_free + c->lst.total_dirty < c->dark_wm) { in check_free_space()
|
/linux-2.6.39/drivers/gpu/drm/ |
D | drm_mm.c | 646 unsigned long total_used = 0, total_free = 0, total = 0; in drm_mm_debug_table() local 656 total_free += hole_size; in drm_mm_debug_table() 671 total_free += hole_size; in drm_mm_debug_table() 674 total = total_free + total_used; in drm_mm_debug_table() 677 total_used, total_free); in drm_mm_debug_table() 685 unsigned long total_used = 0, total_free = 0, total = 0; in drm_mm_dump_table() local 694 total_free += hole_size; in drm_mm_dump_table() 707 total_free += hole_size; in drm_mm_dump_table() 710 total = total_free + total_used; in drm_mm_dump_table() 712 seq_printf(m, "total: %lu, used %lu free %lu\n", total, total_used, total_free); in drm_mm_dump_table()
|
/linux-2.6.39/tools/slub/ |
D | slabinfo.c | 418 unsigned long total_free; in slab_stats() local 425 total_free = s->free_fastpath + s->free_slowpath; in slab_stats() 436 s->free_fastpath * 100 / total_free); in slab_stats() 440 s->free_slowpath * 100 / total_free); in slab_stats() 444 s->free_slab * 100 / total_free); in slab_stats() 449 s->free_add_partial * 100 / total_free); in slab_stats() 453 s->free_remove_partial * 100 / total_free); in slab_stats() 458 s->free_frozen * 100 / total_free); in slab_stats() 460 printf("Total %8lu %8lu\n\n", total_alloc, total_free); in slab_stats() 571 unsigned long total_free; in slabcache() local [all …]
|