Displaying 5 results from an estimated 5 matches for "inputvsc".
2009 Aug 26
0
How to install the InputVSC driver ?
Hi,
We have an issue when execute the next procedure :
The InputVSC driver requires the Linux Integration Components to be installed, and supports the same guest distro versions.
To install the InputVSC driver: (you must be root:)
1. Download and attach the .ISO file to a Hyper-V guest with the Linux Integration Components already installed.
2. Copy the content...
2011 Mar 01
0
Finding inputvsc.iso...
Hello!
First time poster, longtime lurker here.
I have been trying to get full functionality on a Centos 5.5 in a Hyper-V
environment but the mouse pointer is not cooperating at all. It seems I need
to find a file called inputvsc.iso that xen has until recently distributed.
However the file is nowhere to be found. The link
http://www.xen.org/download/satori.html is out of order and I have googled
my eyes out all day to no avail.
Does anyone have a working source/link for this ISO?
=T=
-------------- next part -----...
2009 Dec 14
1
Citrix Project Satori and 2.6.32-7
Hello group,
I am running the Linux kernel 2.6.32-7 and using the GPL Hyper-V
drivers (hv_vmbus, hv_storvsc, hv_netvsc, hv_blkvsc). The only thing
that is not working is the mouse integration. This a Linux guest under
Hyper-V on Windows Server 2008 R2.
I had InputVSC (Citrix Project Satori) working under kernel 2.6.18-6
with Microsoft''s Linux integration components. This worked great under
Windows Server 2008 (non-R2). But now that I am to the latest version
of Windows and the Linux kernel, my mouse is back to not working.
Is there a version of InputV...
2011 Apr 01
4
[PATCH 1/5] staging: hv: change camel case funct names to lower case funct in hv_mouse
...ct mousevsc_drv_obj *inputDriver;
struct hv_input_dev_info dev_info;
- inputDevice = AllocInputDevice(Device);
+ inputDevice = alloc_input_device(Device);
if (!inputDevice) {
ret = -1;
@@ -678,25 +684,25 @@ static int MousevscOnDeviceAdd(struct hv_device *Device, void *AdditionalInfo)
INPUTVSC_RECV_RING_BUFFER_SIZE,
NULL,
0,
- MousevscOnChannelCallback,
+ mousevsc_on_channel_callback,
Device
);
if (ret != 0) {
pr_err("unable to open channel: %d", ret);
- FreeInputDevice(inputDevice);
+ free_input_device(inputDevice);
return -1;
}
pr_info("In...
2011 Apr 01
4
[PATCH 1/5] staging: hv: change camel case funct names to lower case funct in hv_mouse
...ct mousevsc_drv_obj *inputDriver;
struct hv_input_dev_info dev_info;
- inputDevice = AllocInputDevice(Device);
+ inputDevice = alloc_input_device(Device);
if (!inputDevice) {
ret = -1;
@@ -678,25 +684,25 @@ static int MousevscOnDeviceAdd(struct hv_device *Device, void *AdditionalInfo)
INPUTVSC_RECV_RING_BUFFER_SIZE,
NULL,
0,
- MousevscOnChannelCallback,
+ mousevsc_on_channel_callback,
Device
);
if (ret != 0) {
pr_err("unable to open channel: %d", ret);
- FreeInputDevice(inputDevice);
+ free_input_device(inputDevice);
return -1;
}
pr_info("In...