ipmi: Move message sending into its own function

Getting ready for a transmit queue.

Signed-off-by: Corey Minyard <cminyard@mvista.com>
This commit is contained in:
Corey Minyard 2014-11-06 20:52:24 -06:00
parent 65be754453
commit 7f4a1c84c3
1 changed files with 9 additions and 4 deletions

View File

@ -1485,6 +1485,12 @@ static inline void format_lan_msg(struct ipmi_smi_msg *smi_msg,
smi_msg->msgid = msgid; 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 * Separate from ipmi_request so that the user does not have to be
* supplied in certain circumstances (mainly at panic time). If * supplied in certain circumstances (mainly at panic time). If
@ -1868,7 +1874,7 @@ static int i_ipmi_request(ipmi_user_t user,
} }
#endif #endif
handlers->sender(intf->send_info, smi_msg, priority); smi_send(intf, handlers, smi_msg, priority);
rcu_read_unlock(); rcu_read_unlock();
return 0; return 0;
@ -3079,7 +3085,7 @@ static int handle_ipmb_get_msg_cmd(ipmi_smi_t intf,
rcu_read_lock(); rcu_read_lock();
handlers = intf->handlers; handlers = intf->handlers;
if (handlers) { if (handlers) {
handlers->sender(intf->send_info, msg, 0); smi_send(intf, handlers, msg, 0);
/* /*
* We used the message, so return the value * We used the message, so return the value
* that causes it to not be freed or * 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, ipmi_inc_stat(intf,
retransmitted_ipmb_commands); retransmitted_ipmb_commands);
intf->handlers->sender(intf->send_info, smi_send(intf, intf->handlers, smi_msg, 0);
smi_msg, 0);
} else } else
ipmi_free_smi_msg(smi_msg); ipmi_free_smi_msg(smi_msg);