/linux/drivers/md/dm-vdo/ ! |
H A D | encodings.c | 654 block_count_t slab_size = slab_config.slab_blocks; in vdo_configure_slab_depot() local 656 vdo_log_debug("slabDepot %s(block_count=%llu, first_block=%llu, slab_size=%llu, zone_count=%u)", in vdo_configure_slab_depot() 659 (unsigned long long) slab_size, zone_count); in vdo_configure_slab_depot() 662 slab_count = (partition->count / slab_size); in vdo_configure_slab_depot() 690 * @slab_size: The number of blocks per slab. 696 int vdo_configure_slab(block_count_t slab_size, block_count_t slab_journal_blocks, in vdo_configure_slab() argument 703 if (slab_journal_blocks >= slab_size) in vdo_configure_slab() 711 ref_blocks = vdo_get_saved_reference_count_size(slab_size - slab_journal_blocks); in vdo_configure_slab() 715 if (meta_blocks >= slab_size) in vdo_configure_slab() 718 data_blocks = slab_size in vdo_configure_slab() [all...] |
H A D | encodings.h | 606 block_count_t slab_size; /* number of blocks in a slab */ member 627 __le64 slab_size; member 1077 int __must_check vdo_configure_slab(block_count_t slab_size,
|
H A D | slab-depot.c | 3844 block_count_t slab_size; in allocate_slabs() local 3860 slab_size = depot->slab_config.slab_blocks; in allocate_slabs() 3861 slab_origin = depot->first_block + (depot->slab_count * slab_size); in allocate_slabs() 3865 depot->new_slab_count++, slab_origin += slab_size) { in allocate_slabs() 4247 block_count_t slab_size = state.slab_config.slab_blocks; in vdo_decode_slab_depot() local 4249 if (!is_power_of_2(slab_size)) { in vdo_decode_slab_depot() 4253 slab_size_shift = ilog2(slab_size); in vdo_decode_slab_depot()
|
H A D | message-stats.c | 475 write_block_count_t("slabSize : ", config->slab_size, ", ", buf, maxlen); in vdo_write_config()
|
/linux/tools/mm/ ! |
H A D | slabinfo.c | 34 unsigned int sanity_checks, slab_size, store_user, trace; member 367 static unsigned long slab_size(struct slabinfo *s) in slab_size() function 380 return slab_size(s) - s->objects * s->object_size; in slab_waste() 576 s->slab_size, s->slabs - s->partial - s->cpu_slabs, in report() 582 s->slab_size - s->object_size, s->cpu_slabs, onoff(s->store_user), in report() 583 (s->slab_size - s->object_size) * s->objects); in report() 586 ((page_size << s->order) - s->objs_per_slab * s->slab_size) * in report() 620 store_size(size_str, slab_size(s)); in slabcache() 870 size = slab_size(s); in totals() 873 objwaste = s->slab_size in totals() [all...] |
/linux/block/ ! |
H A D | bio.c | 79 unsigned int slab_size; member 100 bslab->slab_size = size; in create_bio_slab() 138 unsigned int slab_size = bs_bio_slab_size(bs); in bio_put_slab() local 142 bslab = xa_load(&bio_slabs, slab_size); in bio_put_slab() 153 xa_erase(&bio_slabs, slab_size); in bio_put_slab()
|
/linux/fs/jbd2/ ! |
H A D | journal.c | 98 static int jbd2_journal_create_slab(size_t slab_size); 2723 size_t slab_size; in jbd2_journal_create_slab() local 2739 slab_size = 1 << (i+10); in jbd2_journal_create_slab() 2740 jbd2_slab[i] = kmem_cache_create(jbd2_slab_names[i], slab_size, in jbd2_journal_create_slab() 2741 slab_size, 0, NULL); in jbd2_journal_create_slab()
|
/linux/mm/ ! |
H A D | slab.h | 200 static inline size_t slab_size(const struct slab *slab) in slab_size() function
|
H A D | slub.c | 1344 length = slab_size(slab); in slab_pad_check() 1615 memset(kasan_reset_tag(addr), POISON_INUSE, slab_size(slab)); in setup_slab_debug() 5477 unsigned int slab_size = (unsigned int)PAGE_SIZE << order; in calc_slab_order() local 5480 rem = slab_size % size; in calc_slab_order() 5482 if (rem <= slab_size / fract_leftover) in calc_slab_order() 6887 SLAB_ATTR_RO(slab_size);
|
/linux/Documentation/ABI/testing/ ! |
H A D | sysfs-kernel-slab | 446 What: /sys/kernel/slab/<cache>/slab_size 452 The slab_size file is read-only and specifies the object size
|
/linux/fs/ext4/ ! |
H A D | mballoc.c | 3570 int slab_size; in ext4_groupinfo_create_slab() local 3587 slab_size = offsetof(struct ext4_group_info, in ext4_groupinfo_create_slab() 3591 slab_size, 0, SLAB_RECLAIM_ACCOUNT, in ext4_groupinfo_create_slab()
|