wifi: softirq: reduce ksoftirqd scheduled rate to improve TCP throughtput
authorlibo <bo.li@amlogic.com>
Fri, 13 Jul 2018 02:20:59 +0000 (10:20 +0800)
committerBo Li <bo.li@amlogic.com>
Tue, 17 Jul 2018 09:03:45 +0000 (02:03 -0700)
PD#162113: improve ap62x8 rx tput

The reason why wifi TCP rx throughtput lower than kernel3.14 are as flollows:
On K3.14, RX has more time to work in ISR, but on K4.9, RX has more time to
work in kernel ksoftirqd thread, however, ksoftirqd has a very low priority.

On K4.9, a commit from upstream caused this difference, then revert it.

Revert "softirq: Let ksoftirqd do its job"

This reverts commit 4cd13c21b207e80ddb1144c576500098f2d5f882.

Change-Id: I094232dad5dfddbcd94c35ec42a5e3302ed52459
Signed-off-by: libo <bo.li@amlogic.com>
kernel/softirq.c

index 8c832fba05543bfd9097b4b56c96f3810a0925e7..9c672baf8bf1745b05707806345fcbd1de93d667 100644 (file)
 #include <linux/tick.h>
 #include <linux/irq.h>
 
+#ifndef CONFIG_AMLOGIC_MODIFY
+#define KSOFTIRQD_HIGH_RATE
+#endif
+
 #define CREATE_TRACE_POINTS
 #include <trace/events/irq.h>
 
@@ -81,12 +85,14 @@ static void wakeup_softirqd(void)
  * If ksoftirqd is scheduled, we do not want to process pending softirqs
  * right now. Let ksoftirqd handle this at its own rate, to get fairness.
  */
+#ifdef KSOFTIRQD_HIGH_RATE
 static bool ksoftirqd_running(void)
 {
        struct task_struct *tsk = __this_cpu_read(ksoftirqd);
 
        return tsk && (tsk->state == TASK_RUNNING);
 }
+#endif
 
 /*
  * preempt_count and SOFTIRQ_OFFSET usage:
@@ -335,8 +341,13 @@ asmlinkage __visible void do_softirq(void)
 
        pending = local_softirq_pending();
 
-       if (pending && !ksoftirqd_running())
+#ifdef KSOFTIRQD_HIGH_RATE
+       if (pending && !ksoftirqd_running()) {
+#else
+       if (pending) {
+#endif
                do_softirq_own_stack();
+       }
 
        local_irq_restore(flags);
 }
@@ -362,9 +373,10 @@ void irq_enter(void)
 
 static inline void invoke_softirq(void)
 {
+#ifdef KSOFTIRQD_HIGH_RATE
        if (ksoftirqd_running())
                return;
-
+#endif
        if (!force_irqthreads) {
 #ifdef CONFIG_HAVE_IRQ_EXIT_ON_IRQ_STACK
                /*