/linux-6.12.1/drivers/md/ |
D | dm-snap-transient.c | 26 sector_t next_free; member 48 if (size < (tc->next_free + store->chunk_size)) in transient_prepare_exception() 51 e->new_chunk = sector_to_chunk(store, tc->next_free); in transient_prepare_exception() 52 tc->next_free += store->chunk_size; in transient_prepare_exception() 71 *sectors_allocated = ((struct transient_c *) store->context)->next_free; in transient_usage() 84 tc->next_free = 0; in transient_ctr()
|
D | dm-snap-persistent.c | 154 chunk_t next_free; member 278 chunk_t next_free = ps->next_free; in skip_metadata() local 280 if (sector_div(next_free, stride) == NUM_SNAPSHOT_HDR_CHUNKS) in skip_metadata() 281 ps->next_free++; in skip_metadata() 474 if (ps->next_free <= e.new_chunk) in insert_exceptions() 475 ps->next_free = e.new_chunk + 1; in insert_exceptions() 580 *sectors_allocated = ps->next_free * store->chunk_size; in persistent_usage() 681 if (size < ((ps->next_free + 1) * store->chunk_size)) in persistent_prepare_exception() 684 e->new_chunk = ps->next_free; in persistent_prepare_exception() 690 ps->next_free++; in persistent_prepare_exception() [all …]
|
/linux-6.12.1/drivers/gpu/drm/imagination/ |
D | pvr_mmu.c | 1024 struct pvr_page_table_l1 *next_free; member 1200 struct pvr_page_table_l0 *next_free; member 1515 op_ctx->curr_page.l1_table->next_free = op_ctx->unmap.l1_free_tables; in pvr_page_table_l2_remove() 1578 op_ctx->curr_page.l0_table->next_free = op_ctx->unmap.l0_free_tables; in pvr_page_table_l1_remove() 1754 op_ctx->map.l1_prealloc_tables = table->next_free; in pvr_page_table_l1_get_or_insert() 1755 table->next_free = NULL; in pvr_page_table_l1_get_or_insert() 1803 op_ctx->map.l0_prealloc_tables = table->next_free; in pvr_page_table_l0_get_or_insert() 1804 table->next_free = NULL; in pvr_page_table_l0_get_or_insert() 2299 op_ctx->map.l0_prealloc_tables->next_free; in pvr_mmu_op_context_destroy() 2307 op_ctx->map.l1_prealloc_tables->next_free; in pvr_mmu_op_context_destroy() [all …]
|
/linux-6.12.1/arch/powerpc/kernel/ |
D | rtas_flash.c | 315 int next_free, rc; in rtas_flash_write() local 336 next_free = fl->num_blocks; in rtas_flash_write() 337 if (next_free == FLASH_BLOCKS_PER_NODE) { in rtas_flash_write() 343 next_free = 0; in rtas_flash_write() 357 fl->blocks[next_free].data = p; in rtas_flash_write() 358 fl->blocks[next_free].length = count; in rtas_flash_write()
|
/linux-6.12.1/fs/ocfs2/ |
D | alloc.c | 1602 int next_free = le16_to_cpu(el->l_next_free_rec); in ocfs2_shift_records_right() local 1606 BUG_ON(!next_free); in ocfs2_shift_records_right() 1608 BUG_ON(next_free >= count); in ocfs2_shift_records_right() 1610 num_bytes = sizeof(struct ocfs2_extent_rec) * next_free; in ocfs2_shift_records_right() 1618 int i, insert_index, next_free, has_empty, num_bytes; in ocfs2_rotate_leaf() local 1622 next_free = le16_to_cpu(el->l_next_free_rec); in ocfs2_rotate_leaf() 1625 BUG_ON(!next_free); in ocfs2_rotate_leaf() 1640 for(i = 0; i < (next_free - 1); i++) in ocfs2_rotate_leaf() 1643 next_free--; in ocfs2_rotate_leaf() 1649 for(i = 0; i < next_free; i++) { in ocfs2_rotate_leaf() [all …]
|
D | resize.c | 422 u16 next_free = le16_to_cpu(di->id2.i_chain.cl_next_free_rec); in ocfs2_verify_group_and_input() local 431 else if (next_free != cl_count && next_free != input->chain) in ocfs2_verify_group_and_input() 433 "the add group should be in chain %u\n", next_free); in ocfs2_verify_group_and_input()
|
D | extent_map.c | 277 int ret, next_free; in ocfs2_last_eb_is_empty() local 301 next_free = le16_to_cpu(el->l_next_free_rec); in ocfs2_last_eb_is_empty() 303 if (next_free == 0 || in ocfs2_last_eb_is_empty() 304 (next_free == 1 && ocfs2_is_empty_extent(&el->l_recs[0]))) in ocfs2_last_eb_is_empty()
|
D | ocfs2_trace.h | 563 int has_empty, int next_free, 566 next_free, l_count), 571 __field(int, next_free) 578 __entry->next_free = next_free; 583 __entry->next_free, __entry->l_count)
|
/linux-6.12.1/fs/ntfs3/ |
D | fsntfs.c | 696 if (sbi->mft.next_free < MFT_REC_USER) in ntfs_look_free_mft() 697 sbi->mft.next_free = MFT_REC_USER; in ntfs_look_free_mft() 700 if (sbi->mft.next_free >= sbi->mft.bitmap.nbits) { in ntfs_look_free_mft() 702 sbi->mft.next_free = sbi->mft.bitmap.nbits; in ntfs_look_free_mft() 705 sbi->mft.next_free = *rno + 1; in ntfs_look_free_mft() 757 else if (rno < sbi->mft.next_free && rno >= MFT_REC_USER) in ntfs_mark_rec_free() 758 sbi->mft.next_free = rno; in ntfs_mark_rec_free()
|
D | ntfs_fs.h | 263 size_t next_free; // The next record to allocate from member
|
D | super.c | 1318 sbi->mft.next_free = MFT_REC_USER; in ntfs_fill_super()
|
/linux-6.12.1/drivers/net/ethernet/ibm/ |
D | ibmvnic.c | 788 bufidx = pool->free_map[pool->next_free]; in replenish_rx_pool() 806 pool->free_map[pool->next_free] = IBMVNIC_INVALID_MAP; in replenish_rx_pool() 807 pool->next_free = (pool->next_free + 1) % pool->size; in replenish_rx_pool() 864 pool->next_free = pool->next_free == 0 ? in replenish_rx_pool() 865 pool->size - 1 : pool->next_free - 1; in replenish_rx_pool() 870 pool->free_map[pool->next_free] = bufidx; in replenish_rx_pool() 1153 rx_pool->next_free = 0; in init_rx_pools()
|
D | ibmvnic.h | 875 int next_free; member
|
/linux-6.12.1/drivers/net/ethernet/mediatek/ |
D | mtk_eth_soc.c | 1429 itxd = ring->next_free; in mtk_tx_map() 1517 ring->next_free = mtk_qdma_phys_to_virt(ring, txd->txd2); in mtk_tx_map() 1833 txd = ring->next_free; in mtk_xdp_submit_frame() 1884 ring->next_free = mtk_qdma_phys_to_virt(ring, txd->txd2); in mtk_xdp_submit_frame() 2529 ring->next_free = ring->dma; in mtk_tx_alloc()
|
D | mtk_eth_soc.h | 890 struct mtk_tx_dma *next_free; member
|