tipc: Optimize message initialization routine
This patch eliminates the rarely-used "error code" argument when initializing a TIPC message header, since the default value of zero is the desired result in most cases; the few exceptional cases now set the error code explicitly. Signed-off-by: Allan Stephens <allan.stephens@windriver.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
committed by
David S. Miller
parent
9c396a7bfb
commit
7571521756
@@ -120,8 +120,7 @@ static struct sk_buff *tipc_disc_init_msg(u32 type,
|
||||
|
||||
if (buf) {
|
||||
msg = buf_msg(buf);
|
||||
msg_init(msg, LINK_CONFIG, type, TIPC_OK, DSC_H_SIZE,
|
||||
dest_domain);
|
||||
msg_init(msg, LINK_CONFIG, type, DSC_H_SIZE, dest_domain);
|
||||
msg_set_non_seq(msg);
|
||||
msg_set_req_links(msg, req_links);
|
||||
msg_set_dest_domain(msg, dest_domain);
|
||||
|
Reference in New Issue
Block a user