Re: [PATCH] qemu-sockets: add abstract UNIX domain socket support

2020-04-23 Thread Marc-André Lureau
Hi On Thu, Apr 23, 2020 at 4:48 AM xiaoqiang zhao wrote: > > unix_connect_saddr now support abstract address type > > By default qemu does not support abstract UNIX domain > socket address. Add this ability to make qemu handy > when abstract address is needed. > Abstract address is marked by pref

Re: [PATCH] qemu-sockets: add abstract UNIX domain socket support

2020-04-22 Thread no-reply
Patchew URL: https://patchew.org/QEMU/20200423023212.20968-1-zxq_yx_...@163.com/ Hi, This series seems to have some coding style problems. See output below for more information: Subject: [PATCH] qemu-sockets: add abstract UNIX domain socket support Message-id: 20200423023212.20968-1-zxq_yx_

Re: [PATCH] qemu-sockets: add abstract UNIX domain socket support

2020-04-22 Thread no-reply
Patchew URL: https://patchew.org/QEMU/20200423023212.20968-1-zxq_yx_...@163.com/ Hi, This series failed the asan build test. Please find the testing commands and their output below. If you have Docker installed, you can probably reproduce it locally. === TEST SCRIPT BEGIN === #!/bin/bash expor

[PATCH] qemu-sockets: add abstract UNIX domain socket support

2020-04-22 Thread xiaoqiang zhao
unix_connect_saddr now support abstract address type By default qemu does not support abstract UNIX domain socket address. Add this ability to make qemu handy when abstract address is needed. Abstract address is marked by prefixing the address name with a '@'. Signed-off-by: xiaoqiang zhao ---