* [PATCH for-next] io_uring: remove unused wq_list_merge
@ 2023-02-22 14:32 Pavel Begunkov
2023-02-22 17:48 ` Jens Axboe
0 siblings, 1 reply; 2+ messages in thread
From: Pavel Begunkov @ 2023-02-22 14:32 UTC (permalink / raw)
To: io-uring; +Cc: Jens Axboe, asml.silence
There are no users of wq_list_merge, kill it.
Signed-off-by: Pavel Begunkov <[email protected]>
---
io_uring/slist.h | 22 ----------------------
1 file changed, 22 deletions(-)
diff --git a/io_uring/slist.h b/io_uring/slist.h
index f27601fa4660..7c198a40d5f1 100644
--- a/io_uring/slist.h
+++ b/io_uring/slist.h
@@ -27,28 +27,6 @@ static inline void wq_list_add_after(struct io_wq_work_node *node,
list->last = node;
}
-/**
- * wq_list_merge - merge the second list to the first one.
- * @list0: the first list
- * @list1: the second list
- * Return the first node after mergence.
- */
-static inline struct io_wq_work_node *wq_list_merge(struct io_wq_work_list *list0,
- struct io_wq_work_list *list1)
-{
- struct io_wq_work_node *ret;
-
- if (!list0->first) {
- ret = list1->first;
- } else {
- ret = list0->first;
- list0->last->next = list1->first;
- }
- INIT_WQ_LIST(list0);
- INIT_WQ_LIST(list1);
- return ret;
-}
-
static inline void wq_list_add_tail(struct io_wq_work_node *node,
struct io_wq_work_list *list)
{
--
2.39.1
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [PATCH for-next] io_uring: remove unused wq_list_merge
2023-02-22 14:32 [PATCH for-next] io_uring: remove unused wq_list_merge Pavel Begunkov
@ 2023-02-22 17:48 ` Jens Axboe
0 siblings, 0 replies; 2+ messages in thread
From: Jens Axboe @ 2023-02-22 17:48 UTC (permalink / raw)
To: io-uring, Pavel Begunkov
On Wed, 22 Feb 2023 14:32:43 +0000, Pavel Begunkov wrote:
> There are no users of wq_list_merge, kill it.
>
>
Applied, thanks!
[1/1] io_uring: remove unused wq_list_merge
commit: 9a1563d1720680bdc1d702486b7b73f51c079b32
Best regards,
--
Jens Axboe
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2023-02-22 17:48 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-02-22 14:32 [PATCH for-next] io_uring: remove unused wq_list_merge Pavel Begunkov
2023-02-22 17:48 ` Jens Axboe
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox