forked from torvalds/linux
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
io_uring: separate out file table handling code
Signed-off-by: Jens Axboe <[email protected]>
- Loading branch information
Showing
5 changed files
with
117 additions
and
93 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
// SPDX-License-Identifier: GPL-2.0 | ||
#include <linux/kernel.h> | ||
#include <linux/errno.h> | ||
#include <linux/file.h> | ||
#include <linux/mm.h> | ||
#include <linux/slab.h> | ||
#include <linux/io_uring.h> | ||
|
||
#include <uapi/linux/io_uring.h> | ||
|
||
#include "io_uring_types.h" | ||
#include "io_uring.h" | ||
|
||
int io_file_bitmap_get(struct io_ring_ctx *ctx) | ||
{ | ||
struct io_file_table *table = &ctx->file_table; | ||
unsigned long nr = ctx->nr_user_files; | ||
int ret; | ||
|
||
do { | ||
ret = find_next_zero_bit(table->bitmap, nr, table->alloc_hint); | ||
if (ret != nr) | ||
return ret; | ||
|
||
if (!table->alloc_hint) | ||
break; | ||
|
||
nr = table->alloc_hint; | ||
table->alloc_hint = 0; | ||
} while (1); | ||
|
||
return -ENFILE; | ||
} | ||
|
||
bool io_alloc_file_tables(struct io_file_table *table, unsigned nr_files) | ||
{ | ||
table->files = kvcalloc(nr_files, sizeof(table->files[0]), | ||
GFP_KERNEL_ACCOUNT); | ||
if (unlikely(!table->files)) | ||
return false; | ||
|
||
table->bitmap = bitmap_zalloc(nr_files, GFP_KERNEL_ACCOUNT); | ||
if (unlikely(!table->bitmap)) { | ||
kvfree(table->files); | ||
return false; | ||
} | ||
|
||
return true; | ||
} | ||
|
||
void io_free_file_tables(struct io_file_table *table) | ||
{ | ||
kvfree(table->files); | ||
bitmap_free(table->bitmap); | ||
table->files = NULL; | ||
table->bitmap = NULL; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
// SPDX-License-Identifier: GPL-2.0 | ||
#ifndef IOU_FILE_TABLE_H | ||
#define IOU_FILE_TABLE_H | ||
|
||
struct io_ring_ctx; | ||
|
||
/* | ||
* FFS_SCM is only available on 64-bit archs, for 32-bit we just define it as 0 | ||
* and define IO_URING_SCM_ALL. For this case, we use SCM for all files as we | ||
* can't safely always dereference the file when the task has exited and ring | ||
* cleanup is done. If a file is tracked and part of SCM, then unix gc on | ||
* process exit may reap it before __io_sqe_files_unregister() is run. | ||
*/ | ||
#define FFS_NOWAIT 0x1UL | ||
#define FFS_ISREG 0x2UL | ||
#if defined(CONFIG_64BIT) | ||
#define FFS_SCM 0x4UL | ||
#else | ||
#define IO_URING_SCM_ALL | ||
#define FFS_SCM 0x0UL | ||
#endif | ||
#define FFS_MASK ~(FFS_NOWAIT|FFS_ISREG|FFS_SCM) | ||
|
||
struct io_fixed_file { | ||
/* file * with additional FFS_* flags */ | ||
unsigned long file_ptr; | ||
}; | ||
|
||
struct io_file_table { | ||
struct io_fixed_file *files; | ||
unsigned long *bitmap; | ||
unsigned int alloc_hint; | ||
}; | ||
|
||
bool io_alloc_file_tables(struct io_file_table *table, unsigned nr_files); | ||
void io_free_file_tables(struct io_file_table *table); | ||
int io_file_bitmap_get(struct io_ring_ctx *ctx); | ||
|
||
static inline void io_file_bitmap_clear(struct io_file_table *table, int bit) | ||
{ | ||
__clear_bit(bit, table->bitmap); | ||
table->alloc_hint = bit; | ||
} | ||
|
||
static inline void io_file_bitmap_set(struct io_file_table *table, int bit) | ||
{ | ||
WARN_ON_ONCE(test_bit(bit, table->bitmap)); | ||
__set_bit(bit, table->bitmap); | ||
table->alloc_hint = bit + 1; | ||
} | ||
|
||
static inline struct io_fixed_file * | ||
io_fixed_file_slot(struct io_file_table *table, unsigned i) | ||
{ | ||
return &table->files[i]; | ||
} | ||
|
||
#endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters