Re: [Qemu-devel] [PATCH v3 0/7] improve error handling for IO instr

2017-10-19 Thread Cornelia Huck
On Tue, 17 Oct 2017 16:04:46 +0200 Halil Pasic wrote: > Abstract > === > > The basic idea is: tell how to handle an unusual condition where it's > identified, instead of mapping it to an errno (more or less arbitrarily), > then possibly mapping these errnos around, to finally (mentally) map

Re: [Qemu-devel] [PATCH v3 0/7] improve error handling for IO instr

2017-10-18 Thread Dong Jia Shi
* Cornelia Huck [2017-10-18 11:53:10 +0200]: > On Wed, 18 Oct 2017 16:23:47 +0800 > Dong Jia Shi wrote: > > > * Halil Pasic [2017-10-17 18:19:20 +0200]: > > > > [...] > > > > > >> Testing > > > >> === > > > >> > > > >> Nothing happened since v2 except for a quick smoke test. Dong Jia gav

Re: [Qemu-devel] [PATCH v3 0/7] improve error handling for IO instr

2017-10-18 Thread Cornelia Huck
On Tue, 17 Oct 2017 16:04:46 +0200 Halil Pasic wrote: > Abstract > === > > The basic idea is: tell how to handle an unusual condition where it's > identified, instead of mapping it to an errno (more or less arbitrarily), > then possibly mapping these errnos around, to finally (mentally) map

Re: [Qemu-devel] [PATCH v3 0/7] improve error handling for IO instr

2017-10-18 Thread Cornelia Huck
On Wed, 18 Oct 2017 16:23:47 +0800 Dong Jia Shi wrote: > * Halil Pasic [2017-10-17 18:19:20 +0200]: > > [...] > > > >> Testing > > >> === > > >> > > >> Nothing happened since v2 except for a quick smoke test. Dong Jia gave v2 > > >> a spin with a focus on vfio-ccw. @Dong Jia I would apprec

Re: [Qemu-devel] [PATCH v3 0/7] improve error handling for IO instr

2017-10-18 Thread Dong Jia Shi
* Halil Pasic [2017-10-17 18:19:20 +0200]: [...] > >> Testing > >> === > >> > >> Nothing happened since v2 except for a quick smoke test. Dong Jia gave v2 > >> a spin with a focus on vfio-ccw. @Dong Jia I would appreciate some proper > >> testing, especially regarding the changes in vfio-ccw

Re: [Qemu-devel] [PATCH v3 0/7] improve error handling for IO instr

2017-10-18 Thread Cornelia Huck
On Tue, 17 Oct 2017 18:19:20 +0200 Halil Pasic wrote: > On 10/17/2017 05:13 PM, Cornelia Huck wrote: > > On Tue, 17 Oct 2017 16:04:46 +0200 > > Halil Pasic wrote: > > > >> Abstract > >> === > >> > >> The basic idea is: tell how to handle an unusual condition where it's > >> identified, in

Re: [Qemu-devel] [PATCH v3 0/7] improve error handling for IO instr

2017-10-17 Thread Halil Pasic
On 10/17/2017 05:13 PM, Cornelia Huck wrote: > On Tue, 17 Oct 2017 16:04:46 +0200 > Halil Pasic wrote: > >> Abstract >> === >> >> The basic idea is: tell how to handle an unusual condition where it's >> identified, instead of mapping it to an errno (more or less arbitrarily), >> then possib

Re: [Qemu-devel] [PATCH v3 0/7] improve error handling for IO instr

2017-10-17 Thread Cornelia Huck
On Tue, 17 Oct 2017 16:04:46 +0200 Halil Pasic wrote: > Abstract > === > > The basic idea is: tell how to handle an unusual condition where it's > identified, instead of mapping it to an errno (more or less arbitrarily), > then possibly mapping these errnos around, to finally (mentally) map

[Qemu-devel] [PATCH v3 0/7] improve error handling for IO instr

2017-10-17 Thread Halil Pasic
Abstract === The basic idea is: tell how to handle an unusual condition where it's identified, instead of mapping it to an errno (more or less arbitrarily), then possibly mapping these errnos around, to finally (mentally) map the errno back to the condition and take appropriate action. Accord