From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:51612) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UF2R1-0008Ex-Dh for qemu-devel@nongnu.org; Mon, 11 Mar 2013 09:06:37 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1UF2AW-0001CQ-Hc for qemu-devel@nongnu.org; Mon, 11 Mar 2013 08:49:52 -0400 Received: from e23smtp08.au.ibm.com ([202.81.31.141]:42977) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UF2AV-0001B6-Tm for qemu-devel@nongnu.org; Mon, 11 Mar 2013 08:49:32 -0400 Received: from /spool/local by e23smtp08.au.ibm.com with IBM ESMTP SMTP Gateway: Authorized Use Only! Violators will be prosecuted for from ; Mon, 11 Mar 2013 22:47:33 +1000 Received: from d23relay03.au.ibm.com (d23relay03.au.ibm.com [9.190.235.21]) by d23dlp02.au.ibm.com (Postfix) with ESMTP id 95EA62BB0023 for ; Mon, 11 Mar 2013 23:49:25 +1100 (EST) Received: from d23av03.au.ibm.com (d23av03.au.ibm.com [9.190.234.97]) by d23relay03.au.ibm.com (8.13.8/8.13.8/NCO v10.0) with ESMTP id r2BCnMjg6750516 for ; Mon, 11 Mar 2013 23:49:22 +1100 Received: from d23av03.au.ibm.com (loopback [127.0.0.1]) by d23av03.au.ibm.com (8.14.4/8.13.1/NCO v10.0 AVout) with ESMTP id r2BCnPKw018726 for ; Mon, 11 Mar 2013 23:49:25 +1100 From: Anthony Liguori In-Reply-To: <513DAA39.7080702@redhat.com> References: <1362752571-2056-1-git-send-email-kraxel@redhat.com> <1362752571-2056-3-git-send-email-kraxel@redhat.com> <877glethja.fsf@blackfin.pond.sub.org> <513DAA39.7080702@redhat.com> Date: Mon, 11 Mar 2013 07:49:16 -0500 Message-ID: <871ubmaypf.fsf@codemonkey.ws> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Subject: Re: [Qemu-devel] [PATCH v2 2/2] input: introduce keyboard handler list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Gerd Hoffmann , Markus Armbruster Cc: qemu-devel@nongnu.org Gerd Hoffmann writes: > On 03/11/13 10:25, Markus Armbruster wrote: >> Gerd Hoffmann writes: >> >>> Add a linked list of keyboard handlers. Added handlers will go >>> to the head of the list. Removed handlers will be zapped from >>> the list. The head of the list will be used for events. >>> >>> This fixes the keyboard-dead-after-usb-kbd-unplug issue, key events >>> will be re-routed to the ps/2 kbd instead of being discarded. >>> >>> [ v2: fix cut+paste bug found my Markus ] >> >> In the future, please put patch history information below the --- line. >> >>> Signed-off-by: Gerd Hoffmann >>> --- >> >> Put it here. Thanks! > > How do I get it there? You can just stick a '---' prior to the history in the git commit. git-format-patch and git-am will then do the right thing. Just make sure you don't push those commits. Process them via git-am like you would a patch from someone else. Regards, Anthony Liguori > > thanks, > Gerd