Commit 7f4a1c84 authored by Corey Minyard's avatar Corey Minyard

ipmi: Move message sending into its own function

Getting ready for a transmit queue.
Signed-off-by: default avatarCorey Minyard <cminyard@mvista.com>
parent 65be7544
......@@ -1485,6 +1485,12 @@ static inline void format_lan_msg(struct ipmi_smi_msg *smi_msg,
smi_msg->msgid = msgid;
}
static void smi_send(ipmi_smi_t intf, struct ipmi_smi_handlers *handlers,
struct ipmi_smi_msg *smi_msg, int priority)
{
handlers->sender(intf->send_info, smi_msg, 0);
}
/*
* Separate from ipmi_request so that the user does not have to be
* supplied in certain circumstances (mainly at panic time). If
......@@ -1868,7 +1874,7 @@ static int i_ipmi_request(ipmi_user_t user,
}
#endif
handlers->sender(intf->send_info, smi_msg, priority);
smi_send(intf, handlers, smi_msg, priority);
rcu_read_unlock();
return 0;
......@@ -3079,7 +3085,7 @@ static int handle_ipmb_get_msg_cmd(ipmi_smi_t intf,
rcu_read_lock();
handlers = intf->handlers;
if (handlers) {
handlers->sender(intf->send_info, msg, 0);
smi_send(intf, handlers, msg, 0);
/*
* We used the message, so return the value
* that causes it to not be freed or
......@@ -3972,8 +3978,7 @@ static void check_msg_timeout(ipmi_smi_t intf, struct seq_table *ent,
ipmi_inc_stat(intf,
retransmitted_ipmb_commands);
intf->handlers->sender(intf->send_info,
smi_msg, 0);
smi_send(intf, intf->handlers, smi_msg, 0);
} else
ipmi_free_smi_msg(smi_msg);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment