Home
last modified time | relevance | path

Searched refs:next_free (Results 1 – 8 of 8) sorted by relevance

/linux/drivers/md/
H A Ddm-snap-transient.c26 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()
/linux/tools/sched_ext/
H A Dscx_qmap.bpf.c162 struct task_ctx __arena *next_free; /* only valid on free list */ member
931 qa.task_free_head = taskc->next_free; in BPF_STRUCT_OPS_SLEEPABLE()
938 taskc->next_free = NULL; in BPF_STRUCT_OPS_SLEEPABLE()
957 taskc->next_free = qa.task_free_head; in BPF_STRUCT_OPS_SLEEPABLE()
981 taskc->next_free = qa.task_free_head; in BPF_STRUCT_OPS()
1825 cur->next_free = next; in BPF_STRUCT_OPS_SLEEPABLE()
/linux/fs/ntfs3/
H A Dfsntfs.c725 if (sbi->mft.next_free < MFT_REC_USER) in ntfs_look_free_mft()
726 sbi->mft.next_free = MFT_REC_USER; in ntfs_look_free_mft()
729 if (sbi->mft.next_free >= sbi->mft.bitmap.nbits) { in ntfs_look_free_mft()
731 sbi->mft.next_free = sbi->mft.bitmap.nbits; in ntfs_look_free_mft()
734 sbi->mft.next_free = *rno + 1; in ntfs_look_free_mft()
786 else if (rno < sbi->mft.next_free && rno >= MFT_REC_USER) in ntfs_mark_rec_free()
787 sbi->mft.next_free = rno; in ntfs_mark_rec_free()
H A Dntfs_fs.h266 size_t next_free; // The next record to allocate from member
H A Dsuper.c1451 sbi->mft.next_free = MFT_REC_USER; in ntfs_fill_super()
/linux/drivers/net/ethernet/ibm/
H A Dibmvnic.c803 bufidx = pool->free_map[pool->next_free]; in replenish_rx_pool()
821 pool->free_map[pool->next_free] = IBMVNIC_INVALID_MAP; in replenish_rx_pool()
822 pool->next_free = (pool->next_free + 1) % pool->size; in replenish_rx_pool()
887 pool->next_free = pool->next_free == 0 ? in replenish_rx_pool()
888 pool->size - 1 : pool->next_free - 1; in replenish_rx_pool()
893 pool->free_map[pool->next_free] = bufidx; in replenish_rx_pool()
1170 rx_pool->next_free = 0; in init_rx_pools()
/linux/drivers/net/ethernet/mediatek/
H A Dmtk_eth_soc.c1608 itxd = ring->next_free; in mtk_tx_map()
1696 ring->next_free = mtk_qdma_phys_to_virt(ring, txd->txd2); in mtk_tx_map()
2020 txd = ring->next_free; in mtk_xdp_submit_frame()
2071 ring->next_free = mtk_qdma_phys_to_virt(ring, txd->txd2); in mtk_xdp_submit_frame()
2715 ring->next_free = ring->dma; in mtk_tx_alloc()
H A Dmtk_eth_soc.h936 struct mtk_tx_dma *next_free; member