[PATCH v2 0/2] docs: show how to spawn qemu-storage-daemon with fd passing

Stefan Hajnoczi posted 2 patches 3 years, 2 months ago
Test checkpatch passed
Patches applied successfully (tree, apply log)
git fetch https://github.com/patchew-project/qemu tags/patchew/20210301171107.134100-1-stefanha@redhat.com
There is a newer version of this series
docs/tools/qemu-storage-daemon.rst | 44 ++++++++++++++++++++++++++----
1 file changed, 39 insertions(+), 5 deletions(-)
[PATCH v2 0/2] docs: show how to spawn qemu-storage-daemon with fd passing
Posted by Stefan Hajnoczi 3 years, 2 months ago
Add an example of how to spawn qemu-storage-daemon with fd passing. This
approach eliminates the need to busy wait for the QMP, NBD, or vhost-user
socket to become available.

v2:
 * Use /var/run/qmp.sock instead of /tmp/qmp-$PID.sock to prevent security
   issues with world-writeable directories [Rich, Daniel]
 * Add Patch 2 to fix insecure examples in the documentation [Rich, Daniel]

Stefan Hajnoczi (2):
  docs: show how to spawn qemu-storage-daemon with fd passing
  docs: replace insecure /tmp examples in qsd docs

 docs/tools/qemu-storage-daemon.rst | 44 ++++++++++++++++++++++++++----
 1 file changed, 39 insertions(+), 5 deletions(-)

-- 
2.29.2

Re: [PATCH v2 0/2] docs: show how to spawn qemu-storage-daemon with fd passing
Posted by Stefan Hajnoczi 3 years, 2 months ago
On Mon, Mar 01, 2021 at 05:11:05PM +0000, Stefan Hajnoczi wrote:
> Add an example of how to spawn qemu-storage-daemon with fd passing. This
> approach eliminates the need to busy wait for the QMP, NBD, or vhost-user
> socket to become available.
> 
> v2:
>  * Use /var/run/qmp.sock instead of /tmp/qmp-$PID.sock to prevent security
>    issues with world-writeable directories [Rich, Daniel]
>  * Add Patch 2 to fix insecure examples in the documentation [Rich, Daniel]
> 
> Stefan Hajnoczi (2):
>   docs: show how to spawn qemu-storage-daemon with fd passing
>   docs: replace insecure /tmp examples in qsd docs
> 
>  docs/tools/qemu-storage-daemon.rst | 44 ++++++++++++++++++++++++++----
>  1 file changed, 39 insertions(+), 5 deletions(-)

Obsoleted by v3.

Stefan