Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 10802932 authored by Wang Long's avatar Wang Long Committed by Steven Rostedt
Browse files

ring-buffer-benchmark: Fix the wrong sched_priority of producer

The producer should be used producer_fifo as its sched_priority,
so correct it.

Link: http://lkml.kernel.org/r/1433923957-67842-1-git-send-email-long.wanglong@huawei.com



Cc: stable@vger.kernel.org # 2.6.33+
Signed-off-by: default avatarWang Long <long.wanglong@huawei.com>
Signed-off-by: default avatarSteven Rostedt <rostedt@goodmis.org>
parent 030bbdbf
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -450,7 +450,7 @@ static int __init ring_buffer_benchmark_init(void)

	if (producer_fifo >= 0) {
		struct sched_param param = {
			.sched_priority = consumer_fifo
			.sched_priority = producer_fifo
		};
		sched_setscheduler(producer, SCHED_FIFO, &param);
	} else