Re: [Qemu-devel] [PATCH V2 1/2] block/nfs: tear down aio before nfs_close

2019-09-13 Thread Kevin Wolf
Am 13.09.2019 um 11:51 hat Max Reitz geschrieben: > On 10.09.19 17:41, Peter Lieven wrote: > > nfs_close is a sync call from libnfs and has its own event > > handler polling on the nfs FD. Avoid that both QEMU and libnfs > > are intefering here. > > > > CC: qemu-sta...@nongnu.org > > Signed-off-by

Re: [Qemu-devel] [PATCH V2 1/2] block/nfs: tear down aio before nfs_close

2019-09-13 Thread Peter Lieven
Am 13.09.19 um 11:51 schrieb Max Reitz: > On 10.09.19 17:41, Peter Lieven wrote: >> nfs_close is a sync call from libnfs and has its own event >> handler polling on the nfs FD. Avoid that both QEMU and libnfs >> are intefering here. >> >> CC: qemu-sta...@nongnu.org >> Signed-off-by: Peter Lieven >

Re: [Qemu-devel] [PATCH V2 1/2] block/nfs: tear down aio before nfs_close

2019-09-13 Thread Max Reitz
On 10.09.19 17:41, Peter Lieven wrote: > nfs_close is a sync call from libnfs and has its own event > handler polling on the nfs FD. Avoid that both QEMU and libnfs > are intefering here. > > CC: qemu-sta...@nongnu.org > Signed-off-by: Peter Lieven > --- > block/nfs.c | 6 -- > 1 file change

[Qemu-devel] [PATCH V2 1/2] block/nfs: tear down aio before nfs_close

2019-09-10 Thread Peter Lieven
nfs_close is a sync call from libnfs and has its own event handler polling on the nfs FD. Avoid that both QEMU and libnfs are intefering here. CC: qemu-sta...@nongnu.org Signed-off-by: Peter Lieven --- block/nfs.c | 6 -- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/block/nf