Re: [Qemu-devel] [PATCH 4/4] 9p: switch back to readdir()

2016-06-02 Thread Greg Kurz
On Thu, 2 Jun 2016 15:00:26 -0600 Eric Blake wrote: > On 06/02/2016 02:52 AM, Greg Kurz wrote: > > This patch changes the 9p code to use readdir() again instead of > > readdir_r(), which is deprecated in glibc 2.24. > > > > All the locking was put in place by a previous patch. > > > > Signed-of

Re: [Qemu-devel] [PATCH 4/4] 9p: switch back to readdir()

2016-06-02 Thread Eric Blake
On 06/02/2016 02:52 AM, Greg Kurz wrote: > This patch changes the 9p code to use readdir() again instead of > readdir_r(), which is deprecated in glibc 2.24. > > All the locking was put in place by a previous patch. > > Signed-off-by: Greg Kurz > --- > +++ b/hw/9pfs/codir.c > @@ -17,8 +17,7 @@

[Qemu-devel] [PATCH 4/4] 9p: switch back to readdir()

2016-06-02 Thread Greg Kurz
This patch changes the 9p code to use readdir() again instead of readdir_r(), which is deprecated in glibc 2.24. All the locking was put in place by a previous patch. Signed-off-by: Greg Kurz --- fsdev/file-op-9p.h |3 +-- hw/9pfs/9p-handle.c |8 +++- hw/9pfs/9p-local.c | 20 +++