i40e: use alloc_workqueue instead of create_singlethread_workqueue
Replace calls to create_singlethread_workqueue instead with alloc_workqueue as is style with other Intel drivers. This provides more control over workqueue creation, and allows explicit setting of the desired mode of operation. It also makes it more obvious that driver name constant is passed to a format "%s". Change-ID: I6192b44caf5140336cd54c5b350d51c73b541fdb Signed-off-by: Jacob Keller <jacob.e.keller@intel.com> Tested-by: Andrew Bowers <andrewx.bowers@intel.com> Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
This commit is contained in:
parent
552b996256
commit
6992a6c9c4
@ -11605,7 +11605,8 @@ static int __init i40e_init_module(void)
|
||||
* it can't be any worse than using the system workqueue which
|
||||
* was already single threaded
|
||||
*/
|
||||
i40e_wq = create_singlethread_workqueue(i40e_driver_name);
|
||||
i40e_wq = alloc_workqueue("%s", WQ_UNBOUND | WQ_MEM_RECLAIM, 1,
|
||||
i40e_driver_name);
|
||||
if (!i40e_wq) {
|
||||
pr_err("%s: Failed to create workqueue\n", i40e_driver_name);
|
||||
return -ENOMEM;
|
||||
|
@ -2833,7 +2833,8 @@ static int __init i40evf_init_module(void)
|
||||
|
||||
pr_info("%s\n", i40evf_copyright);
|
||||
|
||||
i40evf_wq = create_singlethread_workqueue(i40evf_driver_name);
|
||||
i40evf_wq = alloc_workqueue("%s", WQ_UNBOUND | WQ_MEM_RECLAIM, 1,
|
||||
i40evf_driver_name);
|
||||
if (!i40evf_wq) {
|
||||
pr_err("%s: Failed to create workqueue\n", i40evf_driver_name);
|
||||
return -ENOMEM;
|
||||
|
Loading…
Reference in New Issue
Block a user