From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:48784) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aA0aV-0000Id-LP for qemu-devel@nongnu.org; Fri, 18 Dec 2015 14:21:12 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1aA0aS-00056s-Db for qemu-devel@nongnu.org; Fri, 18 Dec 2015 14:21:11 -0500 Received: from mx1.redhat.com ([209.132.183.28]:33629) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aA0aS-00056O-8W for qemu-devel@nongnu.org; Fri, 18 Dec 2015 14:21:08 -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 (Postfix) with ESMTPS id 47D4842E5C9 for ; Fri, 18 Dec 2015 19:21:07 +0000 (UTC) Date: Fri, 18 Dec 2015 17:20:43 -0200 From: Marcelo Tosatti Message-ID: <20151218192042.GA27278@amt.cnet> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Subject: [Qemu-devel] x-input-send-event marked as experimental List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Gerd Hoffmann , Markus Armbruster , qemu-devel Gerd, commit df5b2adb7398d71016ee469f71e52075ed95e04e Author: Gerd Hoffmann Date: Tue Nov 25 14:54:17 2014 +0100 input: move input-send-event into experimental namespace Ongoing discussions on how we are going to specify the console, so tag the command as experiental so we can refine things in the 2.3 development cycle. So what is the problem here again? input-send-event can send an input event to a particular console, so that (the console number) has to be specified somehow. But, its already there, you can specify the console: -{ 'command': 'input-send-event', +{ 'command': 'x-input-send-event', 'data': { '*console':'int', 'events': [ 'InputEvent' ] } } So what its waiting for to be moved out of experimental status? Thanks