search for: vmmouse_detect

Displaying 9 results from an estimated 9 matches for "vmmouse_detect".

2015 Apr 09
0
[ANNOUNCE] xf86-input-vmmouse 13.0.99
...T on ABI 19.1 Don't de-reference pMse if it hasn't been initialised yet Drop AM_MAINTAINER_MODE Stefan Dirsch (1): vmmouse_client.h: Include xorg-server.h before xf86_OSproc.h Thomas Hellstrom (5): Back off if we detect a vmmouse kernel driver v3 vmmouse: Run vmmouse_detect as an io privileged process vmmouse: Add support for the access restrict command vmmouse: Fix vmmouse_detect build on BSD vmmouse: Bump version number for release git tag: xf86-input-vmmouse-13.0.99 http://xorg.freedesktop.org/archive/individual/driver/xf86-input-vmmouse-13.0.99...
2015 Dec 01
0
[PATCH 4/6] Input: Remove vmmouse port reservation
...input/mouse/vmmouse.c | 19 +------------------ 1 file changed, 1 insertion(+), 18 deletions(-) diff --git a/drivers/input/mouse/vmmouse.c b/drivers/input/mouse/vmmouse.c index d34e3e4..9109d54 100644 --- a/drivers/input/mouse/vmmouse.c +++ b/drivers/input/mouse/vmmouse.c @@ -347,16 +347,10 @@ int vmmouse_detect(struct psmouse *psmouse, bool set_properties) return -ENXIO; } - if (!request_region(VMMOUSE_PROTO_PORT, 4, "vmmouse")) { - psmouse_dbg(psmouse, "VMMouse port in use.\n"); - return -EBUSY; - } - /* Check if the device is present */ response = ~VMMOUSE_PROTO_MAGIC;...
2015 Dec 04
0
[PATCH 4/6] Input: Remove vmmouse port reservation
...input/mouse/vmmouse.c | 19 +------------------ 1 file changed, 1 insertion(+), 18 deletions(-) diff --git a/drivers/input/mouse/vmmouse.c b/drivers/input/mouse/vmmouse.c index ddb152c..e881c87 100644 --- a/drivers/input/mouse/vmmouse.c +++ b/drivers/input/mouse/vmmouse.c @@ -347,16 +347,10 @@ int vmmouse_detect(struct psmouse *psmouse, bool set_properties) return -ENXIO; } - if (!request_region(VMMOUSE_PROTO_PORT, 4, "vmmouse")) { - psmouse_dbg(psmouse, "VMMouse port in use.\n"); - return -EBUSY; - } - /* Check if the device is present */ response = ~VMMOUSE_PROTO_MAGIC;...
2016 Jan 19
0
[PATCH 4/6] Input: Remove vmmouse port reservation
...nput/mouse/vmmouse.c | 19 +------------------ 1 file changed, 1 insertion(+), 18 deletions(-) diff --git a/drivers/input/mouse/vmmouse.c b/drivers/input/mouse/vmmouse.c index d06daf6..85fb3d47 100644 --- a/drivers/input/mouse/vmmouse.c +++ b/drivers/input/mouse/vmmouse.c @@ -347,16 +347,10 @@ int vmmouse_detect(struct psmouse *psmouse, bool set_properties) return -ENXIO; } - if (!request_region(VMMOUSE_PROTO_PORT, 4, "vmmouse")) { - psmouse_dbg(psmouse, "VMMouse port in use.\n"); - return -EBUSY; - } - /* Check if the device is present */ response = ~VMMOUSE_PROTO_MAGIC;...
2015 Dec 04
0
[PATCH 4/6] Input: Remove vmmouse port reservation
...input/mouse/vmmouse.c | 19 +------------------ 1 file changed, 1 insertion(+), 18 deletions(-) diff --git a/drivers/input/mouse/vmmouse.c b/drivers/input/mouse/vmmouse.c index ddb152c..e881c87 100644 --- a/drivers/input/mouse/vmmouse.c +++ b/drivers/input/mouse/vmmouse.c @@ -347,16 +347,10 @@ int vmmouse_detect(struct psmouse *psmouse, bool set_properties) return -ENXIO; } - if (!request_region(VMMOUSE_PROTO_PORT, 4, "vmmouse")) { - psmouse_dbg(psmouse, "VMMouse port in use.\n"); - return -EBUSY; - } - /* Check if the device is present */ response = ~VMMOUSE_PROTO_MAGIC;...
2016 Jan 19
0
[PATCH 4/6] Input: Remove vmmouse port reservation
...nput/mouse/vmmouse.c | 19 +------------------ 1 file changed, 1 insertion(+), 18 deletions(-) diff --git a/drivers/input/mouse/vmmouse.c b/drivers/input/mouse/vmmouse.c index d06daf6..85fb3d47 100644 --- a/drivers/input/mouse/vmmouse.c +++ b/drivers/input/mouse/vmmouse.c @@ -347,16 +347,10 @@ int vmmouse_detect(struct psmouse *psmouse, bool set_properties) return -ENXIO; } - if (!request_region(VMMOUSE_PROTO_PORT, 4, "vmmouse")) { - psmouse_dbg(psmouse, "VMMouse port in use.\n"); - return -EBUSY; - } - /* Check if the device is present */ response = ~VMMOUSE_PROTO_MAGIC;...
2015 Jun 25
0
[ANNOUNCE] xf86-input-vmmouse 13.1.0
...T on ABI 19.1 Don't de-reference pMse if it hasn't been initialised yet Drop AM_MAINTAINER_MODE Stefan Dirsch (1): vmmouse_client.h: Include xorg-server.h before xf86_OSproc.h Thomas Hellstrom (5): Back off if we detect a vmmouse kernel driver v3 vmmouse: Run vmmouse_detect as an io privileged process vmmouse: Add support for the access restrict command vmmouse: Fix vmmouse_detect build on BSD vmmouse: Bump version number for release git tag: xf86-input-vmmouse-13.1.0 http://xorg.freedesktop.org/archive/individual/driver/xf86-input-vmmouse-13.1.0.t...
2015 Dec 01
11
[PATCH 1/6] x86: Add VMWare Host Communication Macros
These macros will be used by multiple VMWare modules for handling host communication. v2: * Keeping only the minimal common platform defines * added vmware_platform() check function v3: * Added new field to handle different hypervisor magic values Signed-off-by: Sinclair Yeh <syeh at vmware.com> Reviewed-by: Thomas Hellstrom <thellstrom at vmware.com> Reviewed-by: Alok N Kataria
2015 Dec 01
11
[PATCH 1/6] x86: Add VMWare Host Communication Macros
These macros will be used by multiple VMWare modules for handling host communication. v2: * Keeping only the minimal common platform defines * added vmware_platform() check function v3: * Added new field to handle different hypervisor magic values Signed-off-by: Sinclair Yeh <syeh at vmware.com> Reviewed-by: Thomas Hellstrom <thellstrom at vmware.com> Reviewed-by: Alok N Kataria