Searched refs:max_fences (Results 1 - 1 of 1) sorted by relevance

/linux-master/drivers/dma-buf/
H A Ddma-resv.c65 u32 num_fences, max_fences; member in struct:dma_resv_list
96 * max_fences.
98 static struct dma_resv_list *dma_resv_list_alloc(unsigned int max_fences) argument
104 size = kmalloc_size_roundup(struct_size(list, table, max_fences));
110 /* Given the resulting bucket size, recalculated max_fences. */
111 list->max_fences = (size - offsetof(typeof(*list), table)) /
190 if (old && old->max_fences) {
191 if ((old->num_fences + num_fences) <= old->max_fences)
193 max = max(old->num_fences + num_fences, old->max_fences * 2);
254 * &dma_resv_list.max_fences
[all...]

Completed in 183 milliseconds