Home
last modified time | relevance | path

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

/io_uring/
Dio_uring.c7100 static inline struct io_fixed_file *io_fixed_file_slot(struct io_file_table *table, in io_fixed_file_slot() argument
7103 return &table->files[i]; in io_fixed_file_slot()
7928 static void io_free_page_table(void **table, size_t size) in io_free_page_table() argument
7933 kfree(table[i]); in io_free_page_table()
7934 kfree(table); in io_free_page_table()
7941 void **table; in io_alloc_page_table() local
7943 table = kcalloc(nr_tables, sizeof(*table), GFP_KERNEL_ACCOUNT); in io_alloc_page_table()
7944 if (!table) in io_alloc_page_table()
7950 table[i] = kzalloc(this_size, GFP_KERNEL_ACCOUNT); in io_alloc_page_table()
7951 if (!table[i]) { in io_alloc_page_table()
[all …]