Re: [PATCH v2 4/4] Add the NVMM acceleration enlightenments

2020-02-06 Thread Kamil Rytarowski
On 06.02.2020 17:07, Philippe Mathieu-Daudé wrote: > On 2/6/20 4:38 PM, Kamil Rytarowski wrote: >> On 06.02.2020 15:13, Markus Armbruster wrote: >>> Kamil Rytarowski writes: >>> On 06.02.2020 14:09, Philippe Mathieu-Daudé wrote: > On Thu, Feb 6, 2020 at 2:06 PM Markus Armbruster > wr

Re: [PATCH v2 4/4] Add the NVMM acceleration enlightenments

2020-02-06 Thread Philippe Mathieu-Daudé
On 2/6/20 4:38 PM, Kamil Rytarowski wrote: On 06.02.2020 15:13, Markus Armbruster wrote: Kamil Rytarowski writes: On 06.02.2020 14:09, Philippe Mathieu-Daudé wrote: On Thu, Feb 6, 2020 at 2:06 PM Markus Armbruster wrote: Kamil Rytarowski writes: On 03.02.2020 12:54, Philippe Mathieu-Dau

Re: [PATCH v2 4/4] Add the NVMM acceleration enlightenments

2020-02-06 Thread Kamil Rytarowski
On 06.02.2020 15:13, Markus Armbruster wrote: > Kamil Rytarowski writes: > >> On 06.02.2020 14:09, Philippe Mathieu-Daudé wrote: >>> On Thu, Feb 6, 2020 at 2:06 PM Markus Armbruster wrote: Kamil Rytarowski writes: > On 03.02.2020 12:54, Philippe Mathieu-Daudé wrote: >>> @@ -202

Re: [PATCH v2 4/4] Add the NVMM acceleration enlightenments

2020-02-06 Thread Markus Armbruster
Kamil Rytarowski writes: > On 06.02.2020 14:09, Philippe Mathieu-Daudé wrote: >> On Thu, Feb 6, 2020 at 2:06 PM Markus Armbruster wrote: >>> Kamil Rytarowski writes: >>> On 03.02.2020 12:54, Philippe Mathieu-Daudé wrote: >> @@ -2029,6 +2072,19 @@ static void qemu_whpx_start_vcpu(CPUSta

Re: [PATCH v2 4/4] Add the NVMM acceleration enlightenments

2020-02-06 Thread Kamil Rytarowski
On 06.02.2020 14:09, Philippe Mathieu-Daudé wrote: > On Thu, Feb 6, 2020 at 2:06 PM Markus Armbruster wrote: >> Kamil Rytarowski writes: >> >>> On 03.02.2020 12:54, Philippe Mathieu-Daudé wrote: > @@ -2029,6 +2072,19 @@ static void qemu_whpx_start_vcpu(CPUState *cpu) > #endif > }

Re: [PATCH v2 4/4] Add the NVMM acceleration enlightenments

2020-02-06 Thread Markus Armbruster
Kamil Rytarowski writes: > On 03.02.2020 12:54, Philippe Mathieu-Daudé wrote: >>> @@ -2029,6 +2072,19 @@ static void qemu_whpx_start_vcpu(CPUState *cpu) >>>   #endif >>>   } >>> >>> +static void qemu_nvmm_start_vcpu(CPUState *cpu) >>> +{ >>> +    char thread_name[VCPU_THREAD_NAME_SIZE]; >>> + >>>

Re: [PATCH v2 4/4] Add the NVMM acceleration enlightenments

2020-02-06 Thread Philippe Mathieu-Daudé
On Thu, Feb 6, 2020 at 2:06 PM Markus Armbruster wrote: > Kamil Rytarowski writes: > > > On 03.02.2020 12:54, Philippe Mathieu-Daudé wrote: > >>> @@ -2029,6 +2072,19 @@ static void qemu_whpx_start_vcpu(CPUState *cpu) > >>> #endif > >>> } > >>> > >>> +static void qemu_nvmm_start_vcpu(CPUState

Re: [PATCH v2 4/4] Add the NVMM acceleration enlightenments

2020-02-06 Thread Philippe Mathieu-Daudé
On 2/6/20 11:24 AM, Kamil Rytarowski wrote: On 03.02.2020 12:54, Philippe Mathieu-Daudé wrote: @@ -2029,6 +2072,19 @@ static void qemu_whpx_start_vcpu(CPUState *cpu)   #endif   } +static void qemu_nvmm_start_vcpu(CPUState *cpu) +{ +    char thread_name[VCPU_THREAD_NAME_SIZE]; + +    cpu->thre

Re: [PATCH v2 4/4] Add the NVMM acceleration enlightenments

2020-02-06 Thread Kamil Rytarowski
On 03.02.2020 12:54, Philippe Mathieu-Daudé wrote: >> @@ -2029,6 +2072,19 @@ static void qemu_whpx_start_vcpu(CPUState *cpu) >>   #endif >>   } >> >> +static void qemu_nvmm_start_vcpu(CPUState *cpu) >> +{ >> +    char thread_name[VCPU_THREAD_NAME_SIZE]; >> + >> +    cpu->thread = g_malloc0(sizeof(Q

Re: [PATCH v2 4/4] Add the NVMM acceleration enlightenments

2020-02-03 Thread Philippe Mathieu-Daudé
On 1/28/20 3:09 PM, Kamil Rytarowski wrote: From: Maxime Villard Implements the NVMM accelerator cpu enlightenments to actually use the nvmm-all accelerator on NetBSD platforms. Signed-off-by: Maxime Villard Signed-off-by: Kamil Rytarowski Reviewed-by: Sergio Lopez --- cpus.c

[PATCH v2 4/4] Add the NVMM acceleration enlightenments

2020-01-28 Thread Kamil Rytarowski
From: Maxime Villard Implements the NVMM accelerator cpu enlightenments to actually use the nvmm-all accelerator on NetBSD platforms. Signed-off-by: Maxime Villard Signed-off-by: Kamil Rytarowski Reviewed-by: Sergio Lopez --- cpus.c| 58 +++