aboutsummaryrefslogtreecommitdiffstats
path: root/net/tipc
diff options
context:
space:
mode:
authorParthasarathy Bhuvaragan <parthasarathy.bhuvaragan@ericsson.com>2016-02-02 04:52:17 -0500
committerDavid S. Miller <davem@davemloft.net>2016-02-06 03:41:58 -0500
commit06c8581f85e99bbf69723f76ad2a40fa8a8c8cdd (patch)
tree1956a277b4830fef41fbdbc5ae57db0cbfdf04e6 /net/tipc
parentae245557f87fffe2e1c39ba07524024e650e822b (diff)
tipc: use alloc_ordered_workqueue() instead of WQ_UNBOUND w/ max_active = 1
Until now, tipc_rcv and tipc_send workqueues in server are allocated with parameters WQ_UNBOUND & max_active = 1. This parameters passed to this function makes it equivalent to alloc_ordered_workqueue(). The later form is more explicit and can inherit future ordered_workqueue changes. In this commit we replace alloc_workqueue() with more readable alloc_ordered_workqueue(). Acked-by: Ying Xue <ying.xue@windriver.com> Reviewed-by: Jon Maloy <jon.maloy@ericsson.com> Signed-off-by: Parthasarathy Bhuvaragan <parthasarathy.bhuvaragan@ericsson.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/tipc')
-rw-r--r--net/tipc/server.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/net/tipc/server.c b/net/tipc/server.c
index 922e04a43396..2446bfbaa309 100644
--- a/net/tipc/server.c
+++ b/net/tipc/server.c
@@ -571,13 +571,13 @@ static void tipc_work_stop(struct tipc_server *s)
571 571
572static int tipc_work_start(struct tipc_server *s) 572static int tipc_work_start(struct tipc_server *s)
573{ 573{
574 s->rcv_wq = alloc_workqueue("tipc_rcv", WQ_UNBOUND, 1); 574 s->rcv_wq = alloc_ordered_workqueue("tipc_rcv", 0);
575 if (!s->rcv_wq) { 575 if (!s->rcv_wq) {
576 pr_err("can't start tipc receive workqueue\n"); 576 pr_err("can't start tipc receive workqueue\n");
577 return -ENOMEM; 577 return -ENOMEM;
578 } 578 }
579 579
580 s->send_wq = alloc_workqueue("tipc_send", WQ_UNBOUND, 1); 580 s->send_wq = alloc_ordered_workqueue("tipc_send", 0);
581 if (!s->send_wq) { 581 if (!s->send_wq) {
582 pr_err("can't start tipc send workqueue\n"); 582 pr_err("can't start tipc send workqueue\n");
583 destroy_workqueue(s->rcv_wq); 583 destroy_workqueue(s->rcv_wq);