From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-wm0-x22c.google.com (mail-wm0-x22c.google.com [IPv6:2a00:1450:400c:c09::22c]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by ml01.01.org (Postfix) with ESMTPS id B602E1A1E05 for ; Fri, 7 Oct 2016 08:59:48 -0700 (PDT) Received: by mail-wm0-x22c.google.com with SMTP id f193so41010693wmg.0 for ; Fri, 07 Oct 2016 08:59:48 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linaro.org; s=google; h=date:from:to:cc:subject:message-id:references:mime-version :content-disposition:in-reply-to:user-agent; bh=dkt2ovgrkvcrQqWxAlsGL+4/1ZqhkPsTrGCPQEcmfoo=; b=YP65+Ljtnw0+9T4i1gWXUCXPKI9+Uw02T2AVgRO7QA0M/f9H/x+qcSdGDiwyG44wea +d/DgVtSfMbnxE0Ui2is3OX4JfdSqAULt1ZbILwuFx4NGv5+jf1DSdyD9zxqnGGUOa+V UjhLdap3rQJeQ5Dy7iJjGyiwkShRI98j49HvE= X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:date:from:to:cc:subject:message-id:references :mime-version:content-disposition:in-reply-to:user-agent; bh=dkt2ovgrkvcrQqWxAlsGL+4/1ZqhkPsTrGCPQEcmfoo=; b=F83P6R/ITtbwbxtdQmJqIrTk4T1wjKrnKgqzRHBdQTq1ZkIAafpHYWJjlMZtfowJPa GH7lI8XWszMcZF1hlYsbwpo9VMEAKepItiFkLuKgTzLBrpz7oTOFc68p366PvpA40WVP 7iD0WeudyKDoqxPT7bry9qmdxcJKNsFHbGc/Y2aEY1mMBlixaaXmrEXHV0VY96L3dNcB mnaawDyctWMAfaaxIbPzqN8U8FIRpEzLmOZN4xnr3Cjj831bf2j0wAK7OZHxOo9SQuUg AyvrJet6xLo7fLMWFoSs7i3nZYXmsB38ouYqXgOku1YchqpxljCEeL/KGgMPPmoK7riO /NBg== X-Gm-Message-State: AA6/9RmROIh9WsZlyNS+mp6W2eZpg2I0l3nKzBLjMlz0Z/aRNlHo1IbXafln5VmyayEXuVsT X-Received: by 10.28.27.84 with SMTP id b81mr21415521wmb.123.1475855986928; Fri, 07 Oct 2016 08:59:46 -0700 (PDT) Received: from bivouac.eciton.net (bivouac.eciton.net. [2a00:1098:0:86:1000:23:0:2]) by smtp.gmail.com with ESMTPSA id n5sm20188213wjv.35.2016.10.07.08.59.44 (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Fri, 07 Oct 2016 08:59:45 -0700 (PDT) Date: Fri, 7 Oct 2016 16:59:42 +0100 From: Leif Lindholm To: Laszlo Ersek Cc: Roy Franz , Ryan Harkin , "Brian J. Johnson" , edk2-devel@ml01.01.org, Feng Tian , Star Zeng Message-ID: <20161007155942.GD3471@bivouac.eciton.net> References: MIME-Version: 1.0 In-Reply-To: User-Agent: Mutt/1.5.23 (2014-03-12) Subject: Re: [PATCH 0/3] MdeModulePkg/TerminalDxe: TtyTerm improvements X-BeenThere: edk2-devel@lists.01.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: EDK II Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 07 Oct 2016 15:59:49 -0000 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Roy can now be found at Roy Franz (cc:d). On Fri, Oct 07, 2016 at 05:56:26PM +0200, Laszlo Ersek wrote: > Roy, Ryan, > > On 10/07/16 16:53, Brian J. Johnson wrote: > > This patch series implements some improvements to the TtyTerm terminal > > type in the TerminalDxe driver. It fixes an end case with cursor > > position tracking, and uses that to optimize cursor motion escape > > sequences. It also adds support for the page up, page down, insert, > > home, and end keys on some additional common terminal emulators. > > > > The result is improved performance, especially at the shell prompt, > > and better compatibility with common terminal emulators. In > > particular, as a side effect of the optimized cursor motion, terminal > > windows which are taller than the current mode setting (eg. 25 lines) > > work much better than before. > > > > Most of these fixes have been in production in some form on SGI's > > servers for years. > > > > Contributed-under: TianoCore Contribution Agreement 1.0 > > Signed-off-by: Brian Johnson > > Cc: Feng Tian > > Cc: Star Zeng > > > > Brian J. Johnson (3): > > MdeModulePkg/TerminalDxe: Improve TtyTerm cursor position tracking > > MdeModulePkg/TerminalDxe: Optimize TtyTerm cursor motion > > MdeModulePkg/TerminalDxe: Handle more keys with TtyTerm > > > > .../Universal/Console/TerminalDxe/Terminal.h | 2 + > > .../Universal/Console/TerminalDxe/TerminalConIn.c | 24 +++++++-- > > .../Universal/Console/TerminalDxe/TerminalConOut.c | 61 ++++++++++++++++++++-- > > 3 files changed, 79 insertions(+), 8 deletions(-) > > > > can you please provide feedback (testing or otherwise) on this series? > > Thanks > Laszlo > _______________________________________________ > edk2-devel mailing list > edk2-devel@lists.01.org > https://lists.01.org/mailman/listinfo/edk2-devel