From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:45509) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XrkXo-00009o-HD for qemu-devel@nongnu.org; Fri, 21 Nov 2014 04:30:30 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1XrkXi-0004zS-Dm for qemu-devel@nongnu.org; Fri, 21 Nov 2014 04:30:24 -0500 Received: from mx1.redhat.com ([209.132.183.28]:60918) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XrkXi-0004zI-7A for qemu-devel@nongnu.org; Fri, 21 Nov 2014 04:30:18 -0500 Received: from int-mx14.intmail.prod.int.phx2.redhat.com (int-mx14.intmail.prod.int.phx2.redhat.com [10.5.11.27]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id sAL9UHRB006044 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=FAIL) for ; Fri, 21 Nov 2014 04:30:17 -0500 From: Gerd Hoffmann Date: Fri, 21 Nov 2014 10:30:15 +0100 Message-Id: <1416562215-9317-1-git-send-email-kraxel@redhat.com> Subject: [Qemu-devel] [PATCH] input: improve docs for input-send-event qmp command List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Luiz Capitulino , armbru@redhat.com, Gerd Hoffmann Text partly suggested by Markus Armbruster Signed-off-by: Gerd Hoffmann --- qapi-schema.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/qapi-schema.json b/qapi-schema.json index d0926d9..fcd49b1 100644 --- a/qapi-schema.json +++ b/qapi-schema.json @@ -3250,6 +3250,18 @@ # Send input event(s) to guest. # # @console: #optional console to send event(s) to. +# This parameter can be used to send the input event to +# specific input devices in case (a) multiple input devices +# of the same kind are added to the virtual machine and (b) +# you have configured input routing (see docs/multiseat.txt) +# for those input devices. If input routing is not +# configured this parameter has no effect. +# If @console is missing, only devices that aren't associated +# with a console are admissible. +# If @console is specified, it must exist, and both devices +# associated with that console and devices not associated with a +# console are admissible, but the former take precedence. + # # @events: List of InputEvent union. # -- 1.8.3.1