From: Dmitry Torokhov <dmitry.torokhov@gmail.com>
To: Sinclair Yeh <syeh@vmware.com>
Cc: "# 4 . 1-" <stable@vger.kernel.org>,
linux-input@vger.kernel.org, pv-drivers@vmware.com
Subject: Re: [PATCH] Input: vmmouse - remove port reservation
Date: Thu, 23 Jun 2016 17:39:04 -0700 [thread overview]
Message-ID: <20160624003904.GT32561@dtor-ws> (raw)
In-Reply-To: <1464715558-3343-1-git-send-email-syeh@vmware.com>
On Tue, May 31, 2016 at 10:25:58AM -0700, Sinclair Yeh wrote:
> The VMWare EFI BIOS will expose port 0x5658 as an ACPI resource. This
> causes the port to be reserved by the APCI module as the system comes up,
> making it unavailable to be reserved again by other drivers, thus
> preserving this VMWare port for special use in a VMWare guest.
>
> This port is designed to be shared among multiple VMWare services, such as
> the VMMOUSE. Because of this, VMMOUSE should not try to reserve this port
> on its own.
>
> The VMWare non-EFI BIOS does not do this to preserve compatibility with
> existing/legacy VMs. It is known that there is small chance a VM may be
> configured such that these ports get reserved by other non-VMWare devices,
> and if this ever happens, the result is undefined.
>
> Signed-off-by: Sinclair Yeh <syeh@vmware.com>
> Reviewed-by: Thomas Hellstrom <thellstrom@vmware.com>
> Cc: <stable@vger.kernel.org> # 4.1-
> Cc: linux-input@vger.kernel.org
> Cc: pv-drivers@vmware.com
Applied, thank you.
> ---
> My previous attempt at sending this might have failed.
> Resending...
> ---
> drivers/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 a3f0f5a..8f2c408 100644
> --- a/drivers/input/mouse/vmmouse.c
> +++ b/drivers/input/mouse/vmmouse.c
> @@ -355,16 +355,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;
> VMMOUSE_CMD(GETVERSION, 0, version, response, dummy1, dummy2);
> if (response != VMMOUSE_PROTO_MAGIC || version == 0xffffffffU) {
> - release_region(VMMOUSE_PROTO_PORT, 4);
> return -ENXIO;
> }
>
> @@ -374,8 +368,6 @@ int vmmouse_detect(struct psmouse *psmouse, bool set_properties)
> psmouse->model = version;
> }
>
> - release_region(VMMOUSE_PROTO_PORT, 4);
> -
> return 0;
> }
>
> @@ -394,7 +386,6 @@ static void vmmouse_disconnect(struct psmouse *psmouse)
> psmouse_reset(psmouse);
> input_unregister_device(priv->abs_dev);
> kfree(priv);
> - release_region(VMMOUSE_PROTO_PORT, 4);
> }
>
> /**
> @@ -438,15 +429,10 @@ int vmmouse_init(struct psmouse *psmouse)
> struct input_dev *rel_dev = psmouse->dev, *abs_dev;
> int error;
>
> - if (!request_region(VMMOUSE_PROTO_PORT, 4, "vmmouse")) {
> - psmouse_dbg(psmouse, "VMMouse port in use.\n");
> - return -EBUSY;
> - }
> -
> psmouse_reset(psmouse);
> error = vmmouse_enable(psmouse);
> if (error)
> - goto release_region;
> + return error;
>
> priv = kzalloc(sizeof(*priv), GFP_KERNEL);
> abs_dev = input_allocate_device();
> @@ -502,8 +488,5 @@ init_fail:
> kfree(priv);
> psmouse->private = NULL;
>
> -release_region:
> - release_region(VMMOUSE_PROTO_PORT, 4);
> -
> return error;
> }
> --
> 2.7.4
>
--
Dmitry
prev parent reply other threads:[~2016-06-24 0:39 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-05-31 17:25 [PATCH] Input: vmmouse - remove port reservation Sinclair Yeh
2016-06-24 0:39 ` Dmitry Torokhov [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20160624003904.GT32561@dtor-ws \
--to=dmitry.torokhov@gmail.com \
--cc=linux-input@vger.kernel.org \
--cc=pv-drivers@vmware.com \
--cc=stable@vger.kernel.org \
--cc=syeh@vmware.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).