diff options
author | 2025-02-07 13:35:02 +0000 | |
---|---|---|
committer | 2025-03-31 14:55:36 +0200 | |
commit | 841c7b812c038661e4f659d1b9c9a366c6d24b71 (patch) | |
tree | b481dd0f0dcf79abc871a82634730bf11478430d | |
parent | fuse: {io-uring} Fix a possible req cancellation race (diff) | |
download | wireguard-linux-841c7b812c038661e4f659d1b9c9a366c6d24b71.tar.xz wireguard-linux-841c7b812c038661e4f659d1b9c9a366c6d24b71.zip |
fuse: removed unused function fuse_uring_create() from header
Function fuse_uring_create() is used only from dev_uring.c and does not
need to be exposed in the header file. Furthermore, it has the wrong
signature.
While there, also remove the 'struct fuse_ring' forward declaration.
Signed-off-by: Luis Henriques <luis@igalia.com>
Reviewed-by: Bernd Schubert <bschubert@ddn.com>
Signed-off-by: Miklos Szeredi <mszeredi@redhat.com>
-rw-r--r-- | fs/fuse/dev_uring_i.h | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/fs/fuse/dev_uring_i.h b/fs/fuse/dev_uring_i.h index e5b39a92b7ca..d87d0a55cb5f 100644 --- a/fs/fuse/dev_uring_i.h +++ b/fs/fuse/dev_uring_i.h @@ -173,12 +173,6 @@ static inline bool fuse_uring_ready(struct fuse_conn *fc) #else /* CONFIG_FUSE_IO_URING */ -struct fuse_ring; - -static inline void fuse_uring_create(struct fuse_conn *fc) -{ -} - static inline void fuse_uring_destruct(struct fuse_conn *fc) { } |