diff mbox series

[for-6.1,1/1] io_uring: remove notif leftovers

Message ID 8df8877d677be5a2b43afd936d600e60105ea960.1664849941.git.asml.silence@gmail.com (mailing list archive)
State New
Headers show
Series [for-6.1,1/1] io_uring: remove notif leftovers | expand

Commit Message

Pavel Begunkov Oct. 4, 2022, 2:19 a.m. UTC
Notifications were killed but there is a couple of fields and struct
declarations left, remove them.

Signed-off-by: Pavel Begunkov <asml.silence@gmail.com>
---
 include/linux/io_uring_types.h | 5 -----
 io_uring/io_uring.c            | 1 -
 2 files changed, 6 deletions(-)

Comments

Jens Axboe Oct. 4, 2022, 2:03 p.m. UTC | #1
On Tue, 4 Oct 2022 03:19:25 +0100, Pavel Begunkov wrote:
> Notifications were killed but there is a couple of fields and struct
> declarations left, remove them.
> 
> 

Applied, thanks!

[1/1] io_uring: remove notif leftovers
      commit: 50dedbd905c7e6e40871ff5765622eed6109788c

Best regards,
diff mbox series

Patch

diff --git a/include/linux/io_uring_types.h b/include/linux/io_uring_types.h
index aa4d90a53866..f5b687a787a3 100644
--- a/include/linux/io_uring_types.h
+++ b/include/linux/io_uring_types.h
@@ -34,9 +34,6 @@  struct io_file_table {
 	unsigned int alloc_hint;
 };
 
-struct io_notif;
-struct io_notif_slot;
-
 struct io_hash_bucket {
 	spinlock_t		lock;
 	struct hlist_head	list;
@@ -242,8 +239,6 @@  struct io_ring_ctx {
 		unsigned		nr_user_files;
 		unsigned		nr_user_bufs;
 		struct io_mapped_ubuf	**user_bufs;
-		struct io_notif_slot	*notif_slots;
-		unsigned		nr_notif_slots;
 
 		struct io_submit_state	submit_state;
 
diff --git a/io_uring/io_uring.c b/io_uring/io_uring.c
index 73b841d4cfd0..5e7c086685bf 100644
--- a/io_uring/io_uring.c
+++ b/io_uring/io_uring.c
@@ -2625,7 +2625,6 @@  static __cold void io_ring_ctx_free(struct io_ring_ctx *ctx)
 	}
 #endif
 	WARN_ON_ONCE(!list_empty(&ctx->ltimeout_list));
-	WARN_ON_ONCE(ctx->notif_slots || ctx->nr_notif_slots);
 
 	if (ctx->mm_account) {
 		mmdrop(ctx->mm_account);