提交 56bebe70 编写于 作者: B bellard

usb setup state machine fix when driver reads or writes too many bytes


git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@1847 c046a42c-6fe2-441c-8c8c-71466251a162
上级 fd4a43e4
......@@ -91,8 +91,8 @@ int usb_generic_handle_packet(USBDevice *s, int pid,
case 0:
switch(s->setup_state) {
case SETUP_STATE_ACK:
s->setup_state = SETUP_STATE_IDLE;
if (!(s->setup_buf[0] & USB_DIR_IN)) {
s->setup_state = SETUP_STATE_IDLE;
ret = s->handle_control(s,
(s->setup_buf[0] << 8) | s->setup_buf[1],
(s->setup_buf[3] << 8) | s->setup_buf[2],
......@@ -102,7 +102,7 @@ int usb_generic_handle_packet(USBDevice *s, int pid,
if (ret > 0)
ret = 0;
} else {
goto fail;
/* return 0 byte */
}
break;
case SETUP_STATE_DATA:
......@@ -136,11 +136,11 @@ int usb_generic_handle_packet(USBDevice *s, int pid,
case 0:
switch(s->setup_state) {
case SETUP_STATE_ACK:
s->setup_state = SETUP_STATE_IDLE;
if (s->setup_buf[0] & USB_DIR_IN) {
s->setup_state = SETUP_STATE_IDLE;
/* transfer OK */
} else {
goto fail;
/* ignore additionnal output */
}
break;
case SETUP_STATE_DATA:
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册