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

Commit 475370f9 authored by Dylan Chang's avatar Dylan Chang Committed by hecaiqiang
Browse files

Optimize the kernel log reserve schedule

Change-Id: Ifd64aef74a32028dac0db7a00eb44ba472dadeac
(cherry picked from commit 8489252d952a3f7c690e7f09bdd74662c0b44117)
parent e78dc85f
Loading
Loading
Loading
Loading
+2 −3
Original line number Diff line number Diff line
@@ -99,9 +99,8 @@ void wb_workqueue_handler(struct work_struct *work)
	if (stop_size == 0)
		schedule_delayed_work(&wb_workq, HZ/10);
	else {
		cancel_delayed_work_sync(&wb_workq);
		pr_info
			("[Op_kernel_log]Stop write back from work queue\n");
		cancel_delayed_work(&wb_workq);
		pr_info("[Op_kernel_log] Stop write back from work queue\n");
	}
}