qcacld-3.0: Scale HDD inactivity timeout by multiplier

Emulation builds can be very slow, leading to watchdog timeout issues.
One specific issue involves the HDD inactivity watchdog timer. Scale the
HDD inactivity timer by the qdf timer multiplier to avoid false
positives on emulation setups.

Change-Id: Idc7f3d25f836ff5406d4fb5758e975ab5d83f596
CRs-Fixed: 2269834
This commit is contained in:
Dustin Brown
2018-06-18 16:17:41 -07:00
committed by nshrivas
parent 54bd784a48
commit cfc54fe81b

View File

@@ -13996,7 +13996,7 @@ void hdd_start_driver_ops_timer(int drv_op)
hdd_drv_ops_task = current; hdd_drv_ops_task = current;
qdf_timer_start(&hdd_drv_ops_inactivity_timer, qdf_timer_start(&hdd_drv_ops_inactivity_timer,
HDD_OPS_INACTIVITY_TIMEOUT); HDD_OPS_INACTIVITY_TIMEOUT * qdf_timer_get_multiplier());
} }
/** /**