[PATCH v2] iwlwifi: dvm: use alloc_ordered_workqueue()

2016-03-19 Thread Eva Rachel Retuya
trict execution ordering of a single threaded (ST) workqueue by switching to alloc_ordered_workqueue(). WQ_MEM_RECLAIM flag is not needed since the worker is not supposed to free memory. Signed-off-by: Eva Rachel Retuya --- Changes in v2: * switch from alloc_workqueue() to alloc_ordered_workqueue() * r

[PATCH] iwlwifi: dvm: convert create_singlethread_workqueue() to alloc_workqueue()

2016-03-19 Thread Eva Rachel Retuya
astly, guarantee forward progress for work items depended upon during memory reclaim by the addition of the WQ_MEM_RECLAIM flag. Signed-off-by: Eva Rachel Retuya --- To the maintainers: Just to confirm, are work items depended upon during memory reclaim? If not, the WQ_MEM_RECLAIM flag will be dropped. I

[PATCH v3] iwlwifi: dvm: use alloc_ordered_workqueue()

2016-03-18 Thread Eva Rachel Retuya
trict execution ordering of a single threaded (ST) workqueue by switching to alloc_ordered_workqueue(). WQ_MEM_RECLAIM flag is not needed since the worker is not depended during memory reclaim. Signed-off-by: Eva Rachel Retuya Acked-by: Tejun Heo --- Changes in v3: * revise commit message about WQ_MEM_RE