Login
[x]
Log in using an account from:
Fedora Account System
Red Hat Associate
Red Hat Customer
Or login using a Red Hat Bugzilla account
Forgot Password
Login:
Hide Forgot
Create an Account
Red Hat Bugzilla – Attachment 613394 Details for
Bug 839564
vdservice stops running inside windows guests - mouse pointer cannot click
[?]
New
Simple Search
Advanced Search
My Links
Browse
Requests
Reports
Current State
Search
Tabular reports
Graphical reports
Duplicates
Other Reports
User Changes
Plotly Reports
Bug Status
Bug Severity
Non-Defaults
|
Product Dashboard
Help
Page Help!
Bug Writing Guidelines
What's new
Browser Support Policy
5.0.4.rh83 Release notes
FAQ
Guides index
User guide
Web Services
Contact
Legal
This site requires JavaScript to be enabled to function correctly, please enable it.
[patch]
vdservice: retry virtio-serial read on ERROR_NO_SYSTEM_RESOURCES (1450)
0002-vdservice-retry-virtio-serial-read-on-ERROR_NO_SYSTE.patch (text/plain), 1018 bytes, created by
Arnon Gilboa
on 2012-09-16 11:00:51 UTC
(
hide
)
Description:
vdservice: retry virtio-serial read on ERROR_NO_SYSTEM_RESOURCES (1450)
Filename:
MIME Type:
Creator:
Arnon Gilboa
Created:
2012-09-16 11:00:51 UTC
Size:
1018 bytes
patch
obsolete
>From 1f56b3812fecf885280213aeb4bdedea7e42dd66 Mon Sep 17 00:00:00 2001 >From: Arnon Gilboa <agilboa@redhat.com> >Date: Thu, 13 Sep 2012 17:23:02 +0300 >Subject: [PATCH 2/3] vdservice: retry virtio-serial read on ERROR_NO_SYSTEM_RESOURCES (1450) > >as recommended by MS. seems like defined behavior of the driver. > >rhbz#839564 >--- > vdservice/virtio_vdi_port.cpp | 2 +- > 1 files changed, 1 insertions(+), 1 deletions(-) > >diff --git a/vdservice/virtio_vdi_port.cpp b/vdservice/virtio_vdi_port.cpp >index 31a3862..92eb129 100644 >--- a/vdservice/virtio_vdi_port.cpp >+++ b/vdservice/virtio_vdi_port.cpp >@@ -167,7 +167,7 @@ void VirtioVDIPort::read_completion() > if (!GetOverlappedResult(_handle, &_read.overlap, &bytes, FALSE)) { > DWORD err = GetLastError(); > >- if (err == ERROR_OPERATION_ABORTED) { >+ if (err == ERROR_OPERATION_ABORTED || err == ERROR_NO_SYSTEM_RESOURCES) { > _read.pending = false; > return; > } else if (err != ERROR_MORE_DATA) { >-- >1.7.4.1 >
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 839564
:
597755
|
597756
|
609620
|
609621
| 613394 |
613395