Re: [Qemu-devel] [PATCH v5] cutils: Provide strchrnul

2018-06-13 Thread Greg Kurz
On Tue, 12 Jun 2018 23:48:31 -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

Re: [Qemu-devel] [PATCH v5] cutils: Provide strchrnul

2018-06-13 Thread Markus Armbruster
Greg Kurz writes: > On Wed, 13 Jun 2018 07:42:57 +0200 > Markus Armbruster wrote: > >> Keno Fischer writes: >> >> > 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

Re: [Qemu-devel] [PATCH v5] cutils: Provide strchrnul

2018-06-13 Thread Greg Kurz
On Wed, 13 Jun 2018 07:42:57 +0200 Markus Armbruster wrote: > Keno Fischer writes: > > > 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 func

Re: [Qemu-devel] [PATCH v5] cutils: Provide strchrnul

2018-06-12 Thread Markus Armbruster
Keno Fischer writes: > 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 b

[Qemu-devel] [PATCH v5] cutils: Provide strchrnul

2018-06-12 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