From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:46830) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YEG0c-0003nT-D2 for qemu-devel@nongnu.org; Thu, 22 Jan 2015 06:33:13 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1YEG0Q-0005p4-Lu for qemu-devel@nongnu.org; Thu, 22 Jan 2015 06:33:10 -0500 Received: from mx1.redhat.com ([209.132.183.28]:39917) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YEG0Q-0005oD-Eb for qemu-devel@nongnu.org; Thu, 22 Jan 2015 06:32:58 -0500 Received: from int-mx09.intmail.prod.int.phx2.redhat.com (int-mx09.intmail.prod.int.phx2.redhat.com [10.5.11.22]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id t0MBWvUW004010 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=FAIL) for ; Thu, 22 Jan 2015 06:32:57 -0500 From: Gerd Hoffmann Date: Thu, 22 Jan 2015 12:32:51 +0100 Message-Id: <1421926373-3734-2-git-send-email-kraxel@redhat.com> In-Reply-To: <1421926373-3734-1-git-send-email-kraxel@redhat.com> References: <1421926373-3734-1-git-send-email-kraxel@redhat.com> Subject: [Qemu-devel] [PULL 1/3] 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: Markus Armbruster , Gerd Hoffmann , Luiz Capitulino 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 fbfc52f..f5b1ed1 100644 --- a/qapi-schema.json +++ b/qapi-schema.json @@ -3258,6 +3258,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