All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] ipc/msg.c: wake up senders until there is a queue empty capacity
@ 2020-05-23 20:34 Artur Barsegyan
  2020-05-24 13:21 ` Manfred Spraul
  0 siblings, 1 reply; 8+ messages in thread
From: Artur Barsegyan @ 2020-05-23 20:34 UTC (permalink / raw)
  Cc: a.barsegyan96, skutepov, Andrew Morton, Lu Shuaibing,
	Manfred Spraul, Nathan Chancellor, linux-kernel

Take into account the total size of the already enqueued messages of
previously handled senders before another one.

Otherwise, we have serious degradation of receiver throughput for
case with multiple senders because another sender wakes up,
checks the queue capacity and falls into sleep again.

Each round-trip wastes CPU time a lot and leads to perceptible
throughput degradation.

Source code of:
	- sender/receiver
	- benchmark script
	- ready graphics of before/after results

is located here: https://github.com/artur-barsegyan/systemv_queue_research

Signed-off-by: Artur Barsegyan <a.barsegyan96@gmail.com>
---
 ipc/msg.c | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/ipc/msg.c b/ipc/msg.c
index caca67368cb5..52d634b0a65a 100644
--- a/ipc/msg.c
+++ b/ipc/msg.c
@@ -214,6 +214,7 @@ static void ss_wakeup(struct msg_queue *msq,
 	struct msg_sender *mss, *t;
 	struct task_struct *stop_tsk = NULL;
 	struct list_head *h = &msq->q_senders;
+	size_t msq_quota_used = 0;
 
 	list_for_each_entry_safe(mss, t, h, list) {
 		if (kill)
@@ -233,7 +234,7 @@ static void ss_wakeup(struct msg_queue *msq,
 		 * move the sender to the tail on behalf of the
 		 * blocked task.
 		 */
-		else if (!msg_fits_inqueue(msq, mss->msgsz)) {
+		else if (!msg_fits_inqueue(msq, msq_quota_used + mss->msgsz)) {
 			if (!stop_tsk)
 				stop_tsk = mss->tsk;
 
@@ -241,6 +242,7 @@ static void ss_wakeup(struct msg_queue *msq,
 			continue;
 		}
 
+		msq_quota_used += mss->msgsz;
 		wake_q_add(wake_q, mss->tsk);
 	}
 }
-- 
2.19.1


^ permalink raw reply related	[flat|nested] 8+ messages in thread
* Re: [PATCH] ipc/msg.c: wake up senders until there is a queue empty capacity
@ 2020-05-27 11:20 Artur Barsegyan
  0 siblings, 0 replies; 8+ messages in thread
From: Artur Barsegyan @ 2020-05-27 11:20 UTC (permalink / raw)
  To: linux-kernel

About your case:

The new receiver puts at the end of the receivers list.
pipelined_send() starts from the beginning of the list and iterates until the end.

If our queue is always full, each receiver should get a message because new receivers appends at the end.
In my vision: we waste some time in that loop but in general should increase the throughout. But it should be tested.

Yes, I'm gonna implement it and make a benchmark. But maybe it should be done in another patch thread?

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

end of thread, other threads:[~2020-06-01 14:21 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-05-23 20:34 [PATCH] ipc/msg.c: wake up senders until there is a queue empty capacity Artur Barsegyan
2020-05-24 13:21 ` Manfred Spraul
2020-05-26  7:56   ` Artur Barsegyan
2020-05-27  6:03     ` Manfred Spraul
2020-05-27 11:22       ` Artur Barsegyan
2020-06-01 14:02         ` Artur Barsegyan
2020-06-01 14:20           ` Manfred Spraul
2020-05-27 11:20 Artur Barsegyan

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.