* [Qemu-devel] [Bug 1673722] [NEW] Reading register at offset. It is not fully implemented warning make VM impossible to use
@ 2017-03-17 9:47 Julien Duponchelle
2017-03-20 14:20 ` Stefan Hajnoczi
` (2 more replies)
0 siblings, 3 replies; 6+ messages in thread
From: Julien Duponchelle @ 2017-03-17 9:47 UTC (permalink / raw)
To: qemu-devel
Public bug reported:
Hi,
Since this commit:
https://github.com/qemu/qemu/commit/bc0f0674f037a01f2ce0870ad6270a356a7a8347
We can no longer use the IOSvL2 image from Cisco. The problem is we got a lot of warning message saying:
e1000: Reading register at offset: 0x00002410. It is not fully implemented.
User got so much of this warning that they can't use the VM.
Thanks for the help
** Affects: qemu
Importance: Undecided
Status: New
** Tags: e1000
--
You received this bug notification because you are a member of qemu-
devel-ml, which is subscribed to QEMU.
https://bugs.launchpad.net/bugs/1673722
Title:
Reading register at offset. It is not fully implemented warning make
VM impossible to use
Status in QEMU:
New
Bug description:
Hi,
Since this commit:
https://github.com/qemu/qemu/commit/bc0f0674f037a01f2ce0870ad6270a356a7a8347
We can no longer use the IOSvL2 image from Cisco. The problem is we got a lot of warning message saying:
e1000: Reading register at offset: 0x00002410. It is not fully implemented.
User got so much of this warning that they can't use the VM.
Thanks for the help
To manage notifications about this bug go to:
https://bugs.launchpad.net/qemu/+bug/1673722/+subscriptions
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [Qemu-devel] [Bug 1673722] [NEW] Reading register at offset. It is not fully implemented warning make VM impossible to use
2017-03-17 9:47 [Qemu-devel] [Bug 1673722] [NEW] Reading register at offset. It is not fully implemented warning make VM impossible to use Julien Duponchelle
@ 2017-03-20 14:20 ` Stefan Hajnoczi
2017-03-20 14:58 ` Peter Maydell
2017-05-05 13:08 ` [Qemu-devel] [Bug 1673722] " Julien Duponchelle
2020-11-08 9:21 ` Thomas Huth
2 siblings, 1 reply; 6+ messages in thread
From: Stefan Hajnoczi @ 2017-03-20 14:20 UTC (permalink / raw)
To: Bug 1673722; +Cc: qemu-devel, Jason Wang, Dmitry Fleytman, Leonid Bloch
[-- Attachment #1: Type: text/plain, Size: 807 bytes --]
On Fri, Mar 17, 2017 at 09:47:14AM -0000, Julien Duponchelle wrote:
> Hi,
>
> Since this commit:
> https://github.com/qemu/qemu/commit/bc0f0674f037a01f2ce0870ad6270a356a7a8347
>
> We can no longer use the IOSvL2 image from Cisco. The problem is we got a lot of warning message saying:
> e1000: Reading register at offset: 0x00002410. It is not fully implemented.
>
> User got so much of this warning that they can't use the VM.
CCing the author and maintainers.
DBGOUT() is compiled in by default. Warnings that can be triggered at a
high rate by the guest should be off by default or use a
printf_once()-style macro so they are only printed once and not again.
Leonid: do you want to adjust e1000 DBGOUT() usage to avoid printing
guest-triggerable messages by default?
Stefan
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 455 bytes --]
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [Qemu-devel] [Bug 1673722] [NEW] Reading register at offset. It is not fully implemented warning make VM impossible to use
2017-03-20 14:20 ` Stefan Hajnoczi
@ 2017-03-20 14:58 ` Peter Maydell
2017-03-21 5:18 ` Jason Wang
0 siblings, 1 reply; 6+ messages in thread
From: Peter Maydell @ 2017-03-20 14:58 UTC (permalink / raw)
To: Stefan Hajnoczi
Cc: Bug 1673722, Leonid Bloch, Jason Wang, QEMU Developers,
Dmitry Fleytman
On 20 March 2017 at 14:20, Stefan Hajnoczi <stefanha@gmail.com> wrote:
> On Fri, Mar 17, 2017 at 09:47:14AM -0000, Julien Duponchelle wrote:
>> Hi,
>>
>> Since this commit:
>> https://github.com/qemu/qemu/commit/bc0f0674f037a01f2ce0870ad6270a356a7a8347
>>
>> We can no longer use the IOSvL2 image from Cisco. The problem is we got a lot of warning message saying:
>> e1000: Reading register at offset: 0x00002410. It is not fully implemented.
>>
>> User got so much of this warning that they can't use the VM.
>
> CCing the author and maintainers.
>
> DBGOUT() is compiled in by default. Warnings that can be triggered at a
> high rate by the guest should be off by default or use a
> printf_once()-style macro so they are only printed once and not again.
>
> Leonid: do you want to adjust e1000 DBGOUT() usage to avoid printing
> guest-triggerable messages by default?
If we want to report "whoops, we don't implement this yet" messages then
the recommended way to do that is
qemu_log_mask(LOG_UNIMP, "....");
(these are not reported by default but only if the user asks for them.)
thanks
-- PMM
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [Qemu-devel] [Bug 1673722] [NEW] Reading register at offset. It is not fully implemented warning make VM impossible to use
2017-03-20 14:58 ` Peter Maydell
@ 2017-03-21 5:18 ` Jason Wang
0 siblings, 0 replies; 6+ messages in thread
From: Jason Wang @ 2017-03-21 5:18 UTC (permalink / raw)
To: Peter Maydell, Stefan Hajnoczi
Cc: Bug 1673722, Leonid Bloch, QEMU Developers, Dmitry Fleytman
On 2017年03月20日 22:58, Peter Maydell wrote:
> On 20 March 2017 at 14:20, Stefan Hajnoczi <stefanha@gmail.com> wrote:
>> On Fri, Mar 17, 2017 at 09:47:14AM -0000, Julien Duponchelle wrote:
>>> Hi,
>>>
>>> Since this commit:
>>> https://github.com/qemu/qemu/commit/bc0f0674f037a01f2ce0870ad6270a356a7a8347
>>>
>>> We can no longer use the IOSvL2 image from Cisco. The problem is we got a lot of warning message saying:
>>> e1000: Reading register at offset: 0x00002410. It is not fully implemented.
>>>
>>> User got so much of this warning that they can't use the VM.
>> CCing the author and maintainers.
>>
>> DBGOUT() is compiled in by default. Warnings that can be triggered at a
>> high rate by the guest should be off by default or use a
>> printf_once()-style macro so they are only printed once and not again.
>>
>> Leonid: do you want to adjust e1000 DBGOUT() usage to avoid printing
>> guest-triggerable messages by default?
> If we want to report "whoops, we don't implement this yet" messages then
> the recommended way to do that is
> qemu_log_mask(LOG_UNIMP, "....");
>
> (these are not reported by default but only if the user asks for them.)
>
> thanks
> -- PMM
>
I don't see a reason that enabling E1000E_DEBUG by default. How about
just disable it by default?
Thanks
^ permalink raw reply [flat|nested] 6+ messages in thread
* [Qemu-devel] [Bug 1673722] Re: Reading register at offset. It is not fully implemented warning make VM impossible to use
2017-03-17 9:47 [Qemu-devel] [Bug 1673722] [NEW] Reading register at offset. It is not fully implemented warning make VM impossible to use Julien Duponchelle
2017-03-20 14:20 ` Stefan Hajnoczi
@ 2017-05-05 13:08 ` Julien Duponchelle
2020-11-08 9:21 ` Thomas Huth
2 siblings, 0 replies; 6+ messages in thread
From: Julien Duponchelle @ 2017-05-05 13:08 UTC (permalink / raw)
To: qemu-devel
I sent a patch to the mailing list:
http://lists.nongnu.org/archive/html/qemu-devel/2017-05/msg01294.html
--
You received this bug notification because you are a member of qemu-
devel-ml, which is subscribed to QEMU.
https://bugs.launchpad.net/bugs/1673722
Title:
Reading register at offset. It is not fully implemented warning make
VM impossible to use
Status in QEMU:
New
Bug description:
Hi,
Since this commit:
https://github.com/qemu/qemu/commit/bc0f0674f037a01f2ce0870ad6270a356a7a8347
We can no longer use the IOSvL2 image from Cisco. The problem is we got a lot of warning message saying:
e1000: Reading register at offset: 0x00002410. It is not fully implemented.
User got so much of this warning that they can't use the VM.
Thanks for the help
To manage notifications about this bug go to:
https://bugs.launchpad.net/qemu/+bug/1673722/+subscriptions
^ permalink raw reply [flat|nested] 6+ messages in thread
* [Bug 1673722] Re: Reading register at offset. It is not fully implemented warning make VM impossible to use
2017-03-17 9:47 [Qemu-devel] [Bug 1673722] [NEW] Reading register at offset. It is not fully implemented warning make VM impossible to use Julien Duponchelle
2017-03-20 14:20 ` Stefan Hajnoczi
2017-05-05 13:08 ` [Qemu-devel] [Bug 1673722] " Julien Duponchelle
@ 2020-11-08 9:21 ` Thomas Huth
2 siblings, 0 replies; 6+ messages in thread
From: Thomas Huth @ 2020-11-08 9:21 UTC (permalink / raw)
To: qemu-devel
I think this has been fixed by:
https://git.qemu.org/?p=qemu.git;a=commitdiff;h=b4053c64833
** Changed in: qemu
Status: New => Fix Released
--
You received this bug notification because you are a member of qemu-
devel-ml, which is subscribed to QEMU.
https://bugs.launchpad.net/bugs/1673722
Title:
Reading register at offset. It is not fully implemented warning make
VM impossible to use
Status in QEMU:
Fix Released
Bug description:
Hi,
Since this commit:
https://github.com/qemu/qemu/commit/bc0f0674f037a01f2ce0870ad6270a356a7a8347
We can no longer use the IOSvL2 image from Cisco. The problem is we got a lot of warning message saying:
e1000: Reading register at offset: 0x00002410. It is not fully implemented.
User got so much of this warning that they can't use the VM.
Thanks for the help
To manage notifications about this bug go to:
https://bugs.launchpad.net/qemu/+bug/1673722/+subscriptions
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2020-11-08 9:31 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-03-17 9:47 [Qemu-devel] [Bug 1673722] [NEW] Reading register at offset. It is not fully implemented warning make VM impossible to use Julien Duponchelle
2017-03-20 14:20 ` Stefan Hajnoczi
2017-03-20 14:58 ` Peter Maydell
2017-03-21 5:18 ` Jason Wang
2017-05-05 13:08 ` [Qemu-devel] [Bug 1673722] " Julien Duponchelle
2020-11-08 9:21 ` Thomas Huth
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).