From mboxrd@z Thu Jan 1 00:00:00 1970 From: ludo@gnu.org (Ludovic =?utf-8?Q?Court=C3=A8s?=) Subject: Re: poor scrolling in qemu-kvm Date: Sat, 29 Nov 2014 21:53:54 +0100 Message-ID: <871tolwwwt.fsf@gnu.org> References: Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:56106) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Xup1n-0004XY-AH for guix-devel@gnu.org; Sat, 29 Nov 2014 15:54:08 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Xup1h-0005Bu-JM for guix-devel@gnu.org; Sat, 29 Nov 2014 15:54:03 -0500 Received: from hera.aquilenet.fr ([2a01:474::1]:43743) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Xup1h-0005Bp-CT for guix-devel@gnu.org; Sat, 29 Nov 2014 15:53:57 -0500 In-Reply-To: (Federico Beffa's message of "Sat, 29 Nov 2014 17:23:19 +0100") List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org Sender: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org To: Federico Beffa Cc: Guix-devel Federico Beffa skribis: > Have someone found out the reason for this poor performance in > qemu-kvm and how to fix it? Yes, I eventually found out: by default, QEMU uses a Cirrus VGA graphics adapter emulator, which is damn slow for this kind of framebuffer thing. The right thing is to use =E2=80=98-vga std=E2=80=99, which uses a =E2=80= =9Cstandard VGA=E2=80=9D emulator, which doesn=E2=80=99t have this problem. However, X will fail to start currently when using this. The fix is to use xf86-video-modesetting. But this driver is not currently usable because it requires a version of libdrm incompatible with that currently used by xorg-server/MESA. Long story short: we just need to update MESA to use the newer libdrm, and we should be able to fix that. Would you like to try? :-) Thanks, Ludo=E2=80=99.