diff options
author | Dmitry Shmidt <dimitrysh@google.com> | 2012-06-14 11:32:15 -0700 |
---|---|---|
committer | Dmitry Shmidt <dimitrysh@google.com> | 2012-06-19 10:38:24 -0700 |
commit | 1ed2a48549a7e76b3790957a0d6f686e391f3aac (patch) | |
tree | a65a42c11d801984f65e05adabdf857becd314f7 /drivers/net | |
parent | 2749b2ea4f335eba5fa5fe399a8fc07b808ba5e9 (diff) | |
download | kernel_samsung_crespo-1ed2a48549a7e76b3790957a0d6f686e391f3aac.zip kernel_samsung_crespo-1ed2a48549a7e76b3790957a0d6f686e391f3aac.tar.gz kernel_samsung_crespo-1ed2a48549a7e76b3790957a0d6f686e391f3aac.tar.bz2 |
net: wireless: bcmdhd: Reduce priority for dhd_dpc and watchdog
Signed-off-by: Dmitry Shmidt <dimitrysh@google.com>
Diffstat (limited to 'drivers/net')
-rw-r--r-- | drivers/net/wireless/bcmdhd/dhd_linux.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/drivers/net/wireless/bcmdhd/dhd_linux.c b/drivers/net/wireless/bcmdhd/dhd_linux.c index a600b58..b8fb0a9 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 */ |