提交 966a09fa 编写于 作者: G George Kennedy 提交者: Paolo Bonzini

lsi_scsi: add support for PPR Extended Message

The LSI 53c895a code does not handle the PPR Extended Message. Add
support to handle PPR Extended Message like SDTR and WDTR are handled.
That is, to skip past the message bytes and ignore the message.
Signed-off-by: NGeorge Kennedy <george.kennedy@oracle.com>
Signed-off-by: NPaolo Bonzini <pbonzini@redhat.com>
上级 e38bf612
...@@ -959,6 +959,10 @@ static void lsi_do_msgout(LSIState *s) ...@@ -959,6 +959,10 @@ static void lsi_do_msgout(LSIState *s)
DPRINTF("WDTR (ignored)\n"); DPRINTF("WDTR (ignored)\n");
lsi_skip_msgbytes(s, 1); lsi_skip_msgbytes(s, 1);
break; break;
case 4:
DPRINTF("PPR (ignored)\n");
lsi_skip_msgbytes(s, 5);
break;
default: default:
goto bad; goto bad;
} }
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册