public inbox for [email protected]
 help / color / mirror / Atom feed
* [PATCH 5.10 0/2] order fixed files refnode recycling
@ 2020-11-18 14:56 Pavel Begunkov
  2020-11-18 14:56 ` [PATCH 1/2] io_uring: get an active ref_node from files_data Pavel Begunkov
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Pavel Begunkov @ 2020-11-18 14:56 UTC (permalink / raw)
  To: Jens Axboe, io-uring

Pavel Begunkov (2):
  io_uring: get an active ref_node from files_data
  io_uring: order refnode recycling

 fs/io_uring.c | 37 ++++++++++++++++++++++++-------------
 1 file changed, 24 insertions(+), 13 deletions(-)

-- 
2.24.0


^ permalink raw reply	[flat|nested] 4+ messages in thread

* [PATCH 1/2] io_uring: get an active ref_node from files_data
  2020-11-18 14:56 [PATCH 5.10 0/2] order fixed files refnode recycling Pavel Begunkov
@ 2020-11-18 14:56 ` Pavel Begunkov
  2020-11-18 14:56 ` [PATCH 2/2] io_uring: order refnode recycling Pavel Begunkov
  2020-11-18 15:15 ` [PATCH 5.10 0/2] order fixed files " Jens Axboe
  2 siblings, 0 replies; 4+ messages in thread
From: Pavel Begunkov @ 2020-11-18 14:56 UTC (permalink / raw)
  To: Jens Axboe, io-uring; +Cc: stable

An active ref_node always can be found in ctx->files_data, it's much
safer to get it this way instead of poking into files_data->ref_list.

Cc: [email protected] # v5.7+
Signed-off-by: Pavel Begunkov <[email protected]>
---
 fs/io_uring.c | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/fs/io_uring.c b/fs/io_uring.c
index b205c1df3f74..5cb194ca4fce 100644
--- a/fs/io_uring.c
+++ b/fs/io_uring.c
@@ -6974,9 +6974,7 @@ static int io_sqe_files_unregister(struct io_ring_ctx *ctx)
 		return -ENXIO;
 
 	spin_lock(&data->lock);
-	if (!list_empty(&data->ref_list))
-		ref_node = list_first_entry(&data->ref_list,
-				struct fixed_file_ref_node, node);
+	ref_node = data->node;
 	spin_unlock(&data->lock);
 	if (ref_node)
 		percpu_ref_kill(&ref_node->refs);
-- 
2.24.0


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [PATCH 2/2] io_uring: order refnode recycling
  2020-11-18 14:56 [PATCH 5.10 0/2] order fixed files refnode recycling Pavel Begunkov
  2020-11-18 14:56 ` [PATCH 1/2] io_uring: get an active ref_node from files_data Pavel Begunkov
@ 2020-11-18 14:56 ` Pavel Begunkov
  2020-11-18 15:15 ` [PATCH 5.10 0/2] order fixed files " Jens Axboe
  2 siblings, 0 replies; 4+ messages in thread
From: Pavel Begunkov @ 2020-11-18 14:56 UTC (permalink / raw)
  To: Jens Axboe, io-uring; +Cc: stable

Don't recycle a refnode until we're done with all requests of nodes
ejected before.

Cc: [email protected] # v5.7+
Signed-off-by: Pavel Begunkov <[email protected]>
---
 fs/io_uring.c | 33 +++++++++++++++++++++++----------
 1 file changed, 23 insertions(+), 10 deletions(-)

diff --git a/fs/io_uring.c b/fs/io_uring.c
index 5cb194ca4fce..7d4b755ab451 100644
--- a/fs/io_uring.c
+++ b/fs/io_uring.c
@@ -205,6 +205,7 @@ struct fixed_file_ref_node {
 	struct list_head		file_list;
 	struct fixed_file_data		*file_data;
 	struct llist_node		llist;
+	bool				done;
 };
 
 struct fixed_file_data {
@@ -7323,10 +7324,6 @@ static void __io_file_put_work(struct fixed_file_ref_node *ref_node)
 		kfree(pfile);
 	}
 
-	spin_lock(&file_data->lock);
-	list_del(&ref_node->node);
-	spin_unlock(&file_data->lock);
-
 	percpu_ref_exit(&ref_node->refs);
 	kfree(ref_node);
 	percpu_ref_put(&file_data->refs);
@@ -7353,17 +7350,32 @@ static void io_file_put_work(struct work_struct *work)
 static void io_file_data_ref_zero(struct percpu_ref *ref)
 {
 	struct fixed_file_ref_node *ref_node;
+	struct fixed_file_data *data;
 	struct io_ring_ctx *ctx;
-	bool first_add;
+	bool first_add = false;
 	int delay = HZ;
 
 	ref_node = container_of(ref, struct fixed_file_ref_node, refs);
-	ctx = ref_node->file_data->ctx;
+	data = ref_node->file_data;
+	ctx = data->ctx;
+
+	spin_lock(&data->lock);
+	ref_node->done = true;
+
+	while (!list_empty(&data->ref_list)) {
+		ref_node = list_first_entry(&data->ref_list,
+					struct fixed_file_ref_node, node);
+		/* recycle ref nodes in order */
+		if (!ref_node->done)
+			break;
+		list_del(&ref_node->node);
+		first_add |= llist_add(&ref_node->llist, &ctx->file_put_llist);
+	}
+	spin_unlock(&data->lock);
 
-	if (percpu_ref_is_dying(&ctx->file_data->refs))
+	if (percpu_ref_is_dying(&data->refs))
 		delay = 0;
 
-	first_add = llist_add(&ref_node->llist, &ctx->file_put_llist);
 	if (!delay)
 		mod_delayed_work(system_wq, &ctx->file_put_work, 0);
 	else if (first_add)
@@ -7387,6 +7399,7 @@ static struct fixed_file_ref_node *alloc_fixed_file_ref_node(
 	INIT_LIST_HEAD(&ref_node->node);
 	INIT_LIST_HEAD(&ref_node->file_list);
 	ref_node->file_data = ctx->file_data;
+	ref_node->done = false;
 	return ref_node;
 }
 
@@ -7482,7 +7495,7 @@ static int io_sqe_files_register(struct io_ring_ctx *ctx, void __user *arg,
 
 	file_data->node = ref_node;
 	spin_lock(&file_data->lock);
-	list_add(&ref_node->node, &file_data->ref_list);
+	list_add_tail(&ref_node->node, &file_data->ref_list);
 	spin_unlock(&file_data->lock);
 	percpu_ref_get(&file_data->refs);
 	return ret;
@@ -7641,7 +7654,7 @@ static int __io_sqe_files_update(struct io_ring_ctx *ctx,
 	if (needs_switch) {
 		percpu_ref_kill(&data->node->refs);
 		spin_lock(&data->lock);
-		list_add(&ref_node->node, &data->ref_list);
+		list_add_tail(&ref_node->node, &data->ref_list);
 		data->node = ref_node;
 		spin_unlock(&data->lock);
 		percpu_ref_get(&ctx->file_data->refs);
-- 
2.24.0


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [PATCH 5.10 0/2] order fixed files refnode recycling
  2020-11-18 14:56 [PATCH 5.10 0/2] order fixed files refnode recycling Pavel Begunkov
  2020-11-18 14:56 ` [PATCH 1/2] io_uring: get an active ref_node from files_data Pavel Begunkov
  2020-11-18 14:56 ` [PATCH 2/2] io_uring: order refnode recycling Pavel Begunkov
@ 2020-11-18 15:15 ` Jens Axboe
  2 siblings, 0 replies; 4+ messages in thread
From: Jens Axboe @ 2020-11-18 15:15 UTC (permalink / raw)
  To: Pavel Begunkov, io-uring

On 11/18/20 7:56 AM, Pavel Begunkov wrote:
> Pavel Begunkov (2):
>   io_uring: get an active ref_node from files_data
>   io_uring: order refnode recycling
> 
>  fs/io_uring.c | 37 ++++++++++++++++++++++++-------------
>  1 file changed, 24 insertions(+), 13 deletions(-)

LGTM, thanks Pavel.

-- 
Jens Axboe


^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2020-11-18 15:16 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-11-18 14:56 [PATCH 5.10 0/2] order fixed files refnode recycling Pavel Begunkov
2020-11-18 14:56 ` [PATCH 1/2] io_uring: get an active ref_node from files_data Pavel Begunkov
2020-11-18 14:56 ` [PATCH 2/2] io_uring: order refnode recycling Pavel Begunkov
2020-11-18 15:15 ` [PATCH 5.10 0/2] order fixed files " Jens Axboe

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox