Re: [Qemu-devel] [PATCH v2 01/20] cutils: Provide strchrnul

2018-06-01 Thread Eric Blake
On 05/31/2018 08:25 PM, Keno Fischer wrote: strchrnul is a GNU extension and thus unavailable on a number of targets. In the review for a commit removing strchrnul from 9p, I was asked to create a qemu_strchrnul helper to factor out this functionality. Do so, and use it in a number of other place

Re: [Qemu-devel] [PATCH v2 01/20] cutils: Provide strchrnul

2018-06-01 Thread Dr. David Alan Gilbert
* Greg Kurz (gr...@kaod.org) wrote: > On Thu, 31 May 2018 21:25:56 -0400 > Keno Fischer wrote: > > > strchrnul is a GNU extension and thus unavailable on a number of targets. > > In the review for a commit removing strchrnul from 9p, I was asked to > > create a qemu_strchrnul helper to factor out

Re: [Qemu-devel] [PATCH v2 01/20] cutils: Provide strchrnul

2018-06-01 Thread Greg Kurz
On Thu, 31 May 2018 21:25:56 -0400 Keno Fischer wrote: > strchrnul is a GNU extension and thus unavailable on a number of targets. > In the review for a commit removing strchrnul from 9p, I was asked to > create a qemu_strchrnul helper to factor out this functionality. > Do so, and use it in a nu

[Qemu-devel] [PATCH v2 01/20] cutils: Provide strchrnul

2018-05-31 Thread Keno Fischer
strchrnul is a GNU extension and thus unavailable on a number of targets. In the review for a commit removing strchrnul from 9p, I was asked to create a qemu_strchrnul helper to factor out this functionality. Do so, and use it in a number of other places in the code base that inlined the replacemen