Re: [PATCH] tools/virtiofsd: add support for --socket-group

2020-03-17 Thread Marc-André Lureau
Hi On Wed, Mar 18, 2020 at 12:21 AM Alex Bennée wrote: > > > Dr. David Alan Gilbert writes: > > > * Stefan Hajnoczi (stefa...@redhat.com) wrote: > >> On Mon, Mar 16, 2020 at 10:33:31AM +, Daniel P. Berrangé wrote: > >> > On Sat, Mar 14, 2020 at 02:33:25PM +0100, Marc-André Lureau wrote: >

Re: [PATCH] tools/virtiofsd: add support for --socket-group

2020-03-17 Thread Alex Bennée
Dr. David Alan Gilbert writes: > * Stefan Hajnoczi (stefa...@redhat.com) wrote: >> On Mon, Mar 16, 2020 at 10:33:31AM +, Daniel P. Berrangé wrote: >> > On Sat, Mar 14, 2020 at 02:33:25PM +0100, Marc-André Lureau wrote: >> > > Hi >> > > >> > > On Thu, Mar 12, 2020 at 11:49 AM Daniel P.

Re: [PATCH] tools/virtiofsd: add support for --socket-group

2020-03-17 Thread Dr. David Alan Gilbert
* Stefan Hajnoczi (stefa...@redhat.com) wrote: > On Mon, Mar 16, 2020 at 10:33:31AM +, Daniel P. Berrangé wrote: > > On Sat, Mar 14, 2020 at 02:33:25PM +0100, Marc-André Lureau wrote: > > > Hi > > > > > > On Thu, Mar 12, 2020 at 11:49 AM Daniel P. Berrangé > > > wrote: > > > > > > > > On

Re: [PATCH] tools/virtiofsd: add support for --socket-group

2020-03-17 Thread Stefan Hajnoczi
On Mon, Mar 16, 2020 at 10:33:31AM +, Daniel P. Berrangé wrote: > On Sat, Mar 14, 2020 at 02:33:25PM +0100, Marc-André Lureau wrote: > > Hi > > > > On Thu, Mar 12, 2020 at 11:49 AM Daniel P. Berrangé > > wrote: > > > > > > On Thu, Mar 12, 2020 at 10:41:42AM +, Alex Bennée wrote: > > > >

Re: [PATCH] tools/virtiofsd: add support for --socket-group

2020-03-16 Thread Daniel P . Berrangé
On Sat, Mar 14, 2020 at 02:33:25PM +0100, Marc-André Lureau wrote: > Hi > > On Thu, Mar 12, 2020 at 11:49 AM Daniel P. Berrangé > wrote: > > > > On Thu, Mar 12, 2020 at 10:41:42AM +, Alex Bennée wrote: > > > If you like running QEMU as a normal user (very common for TCG runs) > > > but you

Re: [PATCH] tools/virtiofsd: add support for --socket-group

2020-03-14 Thread Marc-André Lureau
Hi On Thu, Mar 12, 2020 at 11:49 AM Daniel P. Berrangé wrote: > > On Thu, Mar 12, 2020 at 10:41:42AM +, Alex Bennée wrote: > > If you like running QEMU as a normal user (very common for TCG runs) > > but you have to run virtiofsd as a root user you run into connection > > problems. Adding

Re: [PATCH] tools/virtiofsd: add support for --socket-group

2020-03-14 Thread Stefan Hajnoczi
On Thu, Mar 12, 2020 at 10:41:42AM +, Alex Bennée wrote: > If you like running QEMU as a normal user (very common for TCG runs) > but you have to run virtiofsd as a root user you run into connection > problems. Adding support for an optional --socket-group allows the > users to keep using the

Re: [PATCH] tools/virtiofsd: add support for --socket-group

2020-03-12 Thread Daniel P . Berrangé
On Thu, Mar 12, 2020 at 10:41:42AM +, Alex Bennée wrote: > If you like running QEMU as a normal user (very common for TCG runs) > but you have to run virtiofsd as a root user you run into connection > problems. Adding support for an optional --socket-group allows the > users to keep using the

[PATCH] tools/virtiofsd: add support for --socket-group

2020-03-12 Thread Alex Bennée
If you like running QEMU as a normal user (very common for TCG runs) but you have to run virtiofsd as a root user you run into connection problems. Adding support for an optional --socket-group allows the users to keep using the command line. Signed-off-by: Alex Bennée --- v1 - tweak

Re: [RFC PATCH] tools/virtiofsd: add support for --socket-group

2020-03-06 Thread Stefan Hajnoczi
On Wed, Mar 04, 2020 at 06:50:25PM +, Alex Bennée wrote: > diff --git a/docs/tools/virtiofsd.rst b/docs/tools/virtiofsd.rst > index 378594c422a..6d2342f74d4 100644 > --- a/docs/tools/virtiofsd.rst > +++ b/docs/tools/virtiofsd.rst > @@ -85,6 +85,10 @@ Options > >Listen on vhost-user UNIX

[RFC PATCH] tools/virtiofsd: add support for --socket-group

2020-03-04 Thread Alex Bennée
If you like running QEMU as a normal user (very common for TCG runs) but you have to run virtiofsd as a root user you run into connection problems. Adding support for an optional --socket-group allows the users to keep using the command line. Signed-off-by: Alex Bennée ---