mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2025-01-01 10:45:49 +00:00
io_uring/rsrc: move struct io_fixed_file to rsrc.h header
There's no need for this internal structure to be visible, move it to the private rsrc.h header instead. Signed-off-by: Jens Axboe <axboe@kernel.dk>
This commit is contained in:
parent
a85f31052b
commit
ff1256b8f3
@ -55,11 +55,6 @@ struct io_wq_work {
|
|||||||
int cancel_seq;
|
int cancel_seq;
|
||||||
};
|
};
|
||||||
|
|
||||||
struct io_fixed_file {
|
|
||||||
/* file * with additional FFS_* flags */
|
|
||||||
unsigned long file_ptr;
|
|
||||||
};
|
|
||||||
|
|
||||||
struct io_file_table {
|
struct io_file_table {
|
||||||
struct io_fixed_file *files;
|
struct io_fixed_file *files;
|
||||||
unsigned long *bitmap;
|
unsigned long *bitmap;
|
||||||
|
@ -4,6 +4,7 @@
|
|||||||
|
|
||||||
#include <linux/file.h>
|
#include <linux/file.h>
|
||||||
#include <linux/io_uring_types.h>
|
#include <linux/io_uring_types.h>
|
||||||
|
#include "rsrc.h"
|
||||||
|
|
||||||
bool io_alloc_file_tables(struct io_file_table *table, unsigned nr_files);
|
bool io_alloc_file_tables(struct io_file_table *table, unsigned nr_files);
|
||||||
void io_free_file_tables(struct io_file_table *table);
|
void io_free_file_tables(struct io_file_table *table);
|
||||||
|
@ -40,6 +40,11 @@ struct io_rsrc_node {
|
|||||||
struct io_rsrc_put item;
|
struct io_rsrc_put item;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
struct io_fixed_file {
|
||||||
|
/* file * with additional FFS_* flags */
|
||||||
|
unsigned long file_ptr;
|
||||||
|
};
|
||||||
|
|
||||||
struct io_mapped_ubuf {
|
struct io_mapped_ubuf {
|
||||||
u64 ubuf;
|
u64 ubuf;
|
||||||
unsigned int len;
|
unsigned int len;
|
||||||
|
Loading…
Reference in New Issue
Block a user