Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 40833
b: refs/heads/master
c: 46d52b0
h: refs/heads/master
i:
  40831: 562e845
v: v3
  • Loading branch information
Corey Minyard authored and Linus Torvalds committed Nov 9, 2006
1 parent 882910a commit a1e2253
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: f3ce6a0ead8c557e9acdc733addd23cbc206c7e3
refs/heads/master: 46d52b09fa6a2d1e313cb75ca352d6f466e67bd1
4 changes: 3 additions & 1 deletion trunk/drivers/char/ipmi/ipmi_msghandler.c
Original file line number Diff line number Diff line change
Expand Up @@ -3242,7 +3242,9 @@ void ipmi_smi_msg_received(ipmi_smi_t intf,
report the error immediately. */
if ((msg->rsp_size >= 3) && (msg->rsp[2] != 0)
&& (msg->rsp[2] != IPMI_NODE_BUSY_ERR)
&& (msg->rsp[2] != IPMI_LOST_ARBITRATION_ERR))
&& (msg->rsp[2] != IPMI_LOST_ARBITRATION_ERR)
&& (msg->rsp[2] != IPMI_BUS_ERR)
&& (msg->rsp[2] != IPMI_NAK_ON_WRITE_ERR))
{
int chan = msg->rsp[3] & 0xf;

Expand Down
2 changes: 2 additions & 0 deletions trunk/include/linux/ipmi_msgdefs.h
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,8 @@
#define IPMI_INVALID_COMMAND_ERR 0xc1
#define IPMI_ERR_MSG_TRUNCATED 0xc6
#define IPMI_LOST_ARBITRATION_ERR 0x81
#define IPMI_BUS_ERR 0x82
#define IPMI_NAK_ON_WRITE_ERR 0x83
#define IPMI_ERR_UNSPECIFIED 0xff

#define IPMI_CHANNEL_PROTOCOL_IPMB 1
Expand Down

0 comments on commit a1e2253

Please sign in to comment.