[Qemu-block] [PATCH] nvme: Add tracing

2017-11-03 Thread Doug Gale
Add trace output for commands, errors, and undefined behavior. Add guest error log output for undefined behavior. Report invalid undefined accesses to MMIO. Annotate unlikely error checks with unlikely. Signed-off-by: Doug Gale <doug...@gmail.com> --- hw/block/nvme.c

[Qemu-block] [PATCH v4] nvme: Add tracing

2017-10-30 Thread Doug Gale
>From 0e27b5dca8f4f32a1b194e1b3544be77dd4f45d9 Mon Sep 17 00:00:00 2001 From: Doug Gale <doug...@gmail.com> Date: Mon, 30 Oct 2017 09:28:43 -0400 Subject: [PATCH] nvme: Add tracing Add trace output for commands, errors, and undefined behavior. Add guest error log output for undefined

Re: [Qemu-block] nvme: Add tracing v3

2017-10-30 Thread Doug Gale
On Fri, Oct 20, 2017 at 4:11 PM, Doug Gale <doug...@gmail.com> wrote: > On Thu, Oct 12, 2017 at 3:07 PM, Doug Gale <doug...@gmail.com> wrote: > >> From c7f12a5949458fdd195b5e0b52f158e8f114f203 Mon Sep 17 00:00:00 2001 >> From: Doug Gale <doug...@gmail.com> >

Re: [Qemu-block] nvme: Add tracing v3

2017-10-20 Thread Doug Gale
On Thu, Oct 12, 2017 at 3:07 PM, Doug Gale <doug...@gmail.com> wrote: > From c7f12a5949458fdd195b5e0b52f158e8f114f203 Mon Sep 17 00:00:00 2001 > From: Doug Gale <doug...@gmail.com> > Date: Thu, 12 Oct 2017 14:29:07 -0400 > Subject: [PATCH] nvme: Add tracing > >

[Qemu-block] nvme: Add tracing v3

2017-10-12 Thread Doug Gale
>From c7f12a5949458fdd195b5e0b52f158e8f114f203 Mon Sep 17 00:00:00 2001 From: Doug Gale <doug...@gmail.com> Date: Thu, 12 Oct 2017 14:29:07 -0400 Subject: [PATCH] nvme: Add tracing Add trace output for commands, errors, and undefined behavior. Add guest error log output for undefined

Re: [Qemu-block] [Qemu-devel] Patch to add helpful tracing output for driver authors in NVMe emulation

2017-10-11 Thread Doug Gale
On Tue, Oct 10, 2017 at 4:02 AM, Kevin Wolf <kw...@redhat.com> wrote: > Am 10.10.2017 um 08:58 hat Markus Armbruster geschrieben: >> Doug Gale <doug...@gmail.com> writes: >> >> > I used exclamations as a concise way of indicating that the driver did >> &g

Re: [Qemu-block] [Qemu-devel] Patch to add helpful tracing output for driver authors in NVMe emulation

2017-10-09 Thread Doug Gale
of those messages with exclamations should ever happen. If any of them are possible when the driver is correct, then I have made a mistake. On Mon, Oct 9, 2017 at 11:52 AM, Eric Blake <ebl...@redhat.com> wrote: > On 10/07/2017 02:51 AM, Doug Gale wrote: >> Completely re-im

Re: [Qemu-block] [Qemu-devel] Patch to add helpful tracing output for driver authors in NVMe emulation

2017-10-07 Thread Doug Gale
rom 166f57458d60d363a10a0933c3e860985531ac96 Mon Sep 17 00:00:00 2001 From: Doug Gale <doug...@gmail.com> Date: Thu, 5 Oct 2017 19:02:03 -0400 Subject: [PATCH] Add tracing output to NVMe emulation to help driver authors. This uses the tracing infrastructure using nvme_ as the prefix. Signed-off-by:

Re: [Qemu-block] [Qemu-devel] Patch to add helpful tracing output for driver authors in NVMe emulation

2017-10-06 Thread Doug Gale
rra...@redhat.com> wrote: > On Fri, Oct 06, 2017 at 08:50:31AM -0500, Eric Blake wrote: >> On 10/05/2017 06:18 PM, Doug Gale wrote: >> > I added the tracing output in this patch to assist me in implementing >> > an NVMe driver. It helped tremendously. >> > >> >

[Qemu-block] Patch to add helpful tracing output for driver authors in NVMe emulation

2017-10-06 Thread Doug Gale
I added the tracing output in this patch to assist me in implementing an NVMe driver. It helped tremendously. >From 1d19086cdef8d492929852d582cb41dcc5026f71 Mon Sep 17 00:00:00 2001 From: Doug Gale <doug...@gmail.com> Date: Thu, 5 Oct 2017 19:02:03 -0400 Subject: [PATCH] Add traci