[Bug 1407808] Re: virtual console gives strange response to ANSI DSR

2020-08-10 Thread Nadav Har'El
The bug still very much exists (I tested qemu 4.2.1): If you don't use "-serial stdio" (or its newer variants), by default Qemu opens a new black "console" to run the application. It is not clear to me exactly which terminal this console is supposed to emulate, but it does seem to support most A

[Qemu-devel] [Bug 1668041] [NEW] x86 Floating point exceptions - incorrect support?

2017-02-26 Thread Nadav Har'El
Public bug reported: It seems that qemu does not correctly emulate the x86 support for optionally causing a floating-point exception (#FP) when, for example, dividing by zero. Reports such as: https://github.com/cloudius-systems/osv/issues/855 http://stackoverflow.com/questions/15134189/qemu-div-

[Qemu-devel] [Bug 1407813] [NEW] QEMU wrongly translates newlines on serial output

2015-01-05 Thread Nadav Har'El
Public bug reported: When using "-serial stdio", QEMU shows the guest serial port's output on the tty running qemu. As it should, QEMU sets the tty to raw mode. Or almost... Strangely, it neglects to remove one output-translation bit, ONLCR (see termios(3)) enabled on the tty. And it should have r

[Qemu-devel] [Bug 1407808] [NEW] virtual console gives strange response to ANSI DSR

2015-01-05 Thread Nadav Har'El
Public bug reported: With "-serial vc" (which is the default), qemu make strange responses to the ANSI DSR escape sequence (\033[6n) which can confuse guests. Terminal emulators supporting the ANSI escape sequences usually support the "Device Status Report" escape sequence, \033[6n, to which as a

[Qemu-devel] [Bug 994378] Re: Nested-virt)L1 (kvm on kvm)guest panic with parameter “-cpu host” in qemu command line.

2012-05-06 Thread Nadav Har'El
Can you please check if you run "qemu-system-x86_64 -m 2048 -hda L1-kvm.img -cpu host" but *without * the nested=1 module option, does L1 also panic, or not? -- You received this bug notification because you are a member of qemu- devel-ml, which is subscribed to QEMU. https://bugs.launchpad.net/b

Re: [Qemu-devel] is it possible to run KVM module inside a qemu VM

2012-04-29 Thread Nadav Har'El
before you set out to add VMX instructions emulation, you need to also consider the option of emulating SVM (AMD's virtualization extensions) instead of VMX - even on Intel hosts. I believe (though I didn't consider this too carefully) this will be easier to implement, as in many respects, SV

Re: [Qemu-devel] [RFC] postcopy livemigration proposal

2011-08-08 Thread Nadav Har'El
al machine. Those failures are very > rare. How is this different from a VM running on a single machine that fails? Just that the small probability of failure (roughly) doubles for the relatively-short duration of the transfer? -- Nadav Har'El| Monday, Aug 8 2011, 8 Av 5771 n...@math.technion.ac.il |- Phone +972-523-790466, ICQ 13349191 |If glory comes after death, I'm not in a http://nadav.harel.org.il |hurry. (Latin proverb)

Re: [Qemu-devel] drop -enable-nesting

2011-05-30 Thread Nadav Har'El
default emulated CPU does not include the "vmx" capability, and you need to enable it with something like "-cpu qemu64,+vmx" (or "-cpu host"). I am not sure if it does enable the "svm" capability. If it does, it isn't useful when KVM is enabled and the under

Re: [Qemu-devel] drop -enable-nesting (was: [PATCH 3/7] cpu model bug fixes and definition corrections...)

2011-05-30 Thread Nadav Har'El
ot;-enable-nesting" could remain as a synonym for enabling either VMX or SVM in the guest, depending on what was available in the host (because KVM now supports both nested SVM and nested VMX, but not SVM-on-VMX or vice versa). -- Nadav Har'El

Re: [Qemu-devel] [PATCH] Add VMX cpuid feature to qemu64

2011-01-05 Thread Nadav Har'El
stating the CPU type and not rely on the default, so nothing will break. At the same time, people who do use the command line will benefit, because they won't be baffled why the nested VMX feature, even if supported by the KVM module, is hidden from them, while nested SVM isn't. Thank

Re: [Qemu-devel] [PATCH] Add VMX cpuid feature to qemu64

2011-01-05 Thread Nadav Har'El
s far as KVM is concerned) that it lists the SVM capability, but not the VMX capability? Thanks, Nadav. -- Nadav Har'El|Wednesday, Jan 5 2011, 29 Tevet 5771 n...@math.technion.ac.il |- Phone +972-523-790466, ICQ 13349191 |I had a lovely evening. Unfortunately, http://nadav.harel.org.il |this wasn't it. - Groucho Marx

Re: [Qemu-devel] [PATCH] Add VMX cpuid feature to qemu64

2011-01-05 Thread Nadav Har'El
as well? Thanks, Nadav. > If you add CPUID_EXT_VMX to the "kvm64" type and make that the default when > kvm is enabled (like we did for nested svm), all should be well, no? I don't know, I don't know how the KVM users would react to their default CPU type being changed

Re: [Qemu-devel] [PATCH] Add VMX cpuid feature to qemu64

2011-01-04 Thread Nadav Har'El
On Tue, Jan 04, 2011, Alexander Graf wrote about "Re: [Qemu-devel] [PATCH] Add VMX cpuid feature to qemu64": > > On 04.01.2011, at 16:06, Nadav Har'El wrote: > > > This patch adds the "VMX" cpuid feature to the default "qemu64" CPU type. > &g

[Qemu-devel] [PATCH] Add VMX cpuid feature to qemu64

2011-01-04 Thread Nadav Har'El
rectly include the VMX feature, and "qemu64" already includes the SVM feature needed for nested SVM (again, KVM will remove this bit if it doesn't support nested SVM), so there is no reason not to list the VMX feature as well. Signed-off-by: Nadav Har'El --- target-i386/cpuid.c