From: Dmitry Shmidt Date: Thu, 14 Jun 2012 18:32:15 +0000 (-0700) Subject: net: wireless: bcmdhd: Reduce priority for dhd_dpc and watchdog X-Git-Tag: firefly_0821_release~7613^2~87 X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=1ed2a48549a7e76b3790957a0d6f686e391f3aac;p=firefly-linux-kernel-4.4.55.git net: wireless: bcmdhd: Reduce priority for dhd_dpc and watchdog Signed-off-by: Dmitry Shmidt --- diff --git a/drivers/net/wireless/bcmdhd/dhd_linux.c b/drivers/net/wireless/bcmdhd/dhd_linux.c index a600b58cbb8e..b8fb0a90b0ce 100644 --- a/drivers/net/wireless/bcmdhd/dhd_linux.c +++ b/drivers/net/wireless/bcmdhd/dhd_linux.c @@ -346,14 +346,13 @@ module_param(dhd_master_mode, uint, 0); #ifdef DHDTHREAD /* Watchdog thread priority, -1 to use kernel timer */ -int dhd_watchdog_prio = 97; +int dhd_watchdog_prio = 0; module_param(dhd_watchdog_prio, int, 0); /* DPC thread priority, -1 to use tasklet */ -int dhd_dpc_prio = 98; +int dhd_dpc_prio = 1; module_param(dhd_dpc_prio, int, 0); -/* DPC thread priority, -1 to use tasklet */ extern int dhd_dongle_memsize; module_param(dhd_dongle_memsize, int, 0); #endif /* DHDTHREAD */