Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge tag 'trace-rb-bm-fix-4.1-rc7' of git://git.kernel.org/pub/scm/linux/kernel/git/rostedt/linux-trace

Pull ring buffer benchmark buglet fix from Steven Rostedt:
"Wang Long fixed a minor bug in the module parameter for the ring
buffer benchmark, where the produce_fifo was being ignored and the
producer thread's priority was being set with the consumer_fifo
parameter"

* tag 'trace-rb-bm-fix-4.1-rc7' of git://git.kernel.org/pub/scm/linux/kernel/git/rostedt/linux-trace:
ring-buffer-benchmark: Fix the wrong sched_priority of producer

+1 -1
+1 -1
kernel/trace/ring_buffer_benchmark.c
··· 450 450 451 451 if (producer_fifo >= 0) { 452 452 struct sched_param param = { 453 - .sched_priority = consumer_fifo 453 + .sched_priority = producer_fifo 454 454 }; 455 455 sched_setscheduler(producer, SCHED_FIFO, &param); 456 456 } else