Re: [PATCH v3 17/33] tools/xl: support new 9pfs backend xen-9pfsd

2024-02-02 Thread Juergen Gross
On 02.02.24 16:28, Juergen Gross wrote: On 31.01.24 16:20, Jürgen Groß wrote: On 15.01.24 16:14, Anthony PERARD wrote: On Thu, Jan 04, 2024 at 10:00:39AM +0100, Juergen Gross wrote: @@ -2242,6 +2256,28 @@ void parse_config_data(const char *config_source,  

Re: [PATCH v3 17/33] tools/xl: support new 9pfs backend xen-9pfsd

2024-02-02 Thread Juergen Gross
On 31.01.24 16:20, Jürgen Groß wrote: On 15.01.24 16:14, Anthony PERARD wrote: On Thu, Jan 04, 2024 at 10:00:39AM +0100, Juergen Gross wrote: @@ -2242,6 +2256,28 @@ void parse_config_data(const char *config_source,   libxl_string_list_dispose(); +    if (p9->type ==

Re: [PATCH v3 17/33] tools/xl: support new 9pfs backend xen-9pfsd

2024-01-31 Thread Jürgen Groß
On 15.01.24 16:14, Anthony PERARD wrote: On Thu, Jan 04, 2024 at 10:00:39AM +0100, Juergen Gross wrote: @@ -2242,6 +2256,28 @@ void parse_config_data(const char *config_source, libxl_string_list_dispose(); +if (p9->type == LIBXL_P9_TYPE_UNKNOWN) { +

Re: [PATCH v3 17/33] tools/xl: support new 9pfs backend xen-9pfsd

2024-01-15 Thread Anthony PERARD
On Thu, Jan 04, 2024 at 10:00:39AM +0100, Juergen Gross wrote: > @@ -2242,6 +2256,28 @@ void parse_config_data(const char *config_source, > > libxl_string_list_dispose(); > > +if (p9->type == LIBXL_P9_TYPE_UNKNOWN) { > +p9->type = LIBXL_P9_TYPE_QEMU;

Re: [PATCH v3 17/33] tools/xl: support new 9pfs backend xen-9pfsd

2024-01-09 Thread Jason Andryuk
On Thu, Jan 4, 2024 at 4:02 AM Juergen Gross wrote: > > Add support for the new 9pfs backend "xen-9pfsd". For this backend type > the tag defaults to "Xen" and the host side path to > "/var/log/xen/guests/". > > Signed-off-by: Juergen Gross > Reviewed-by: Jason Andryuk > --- > V2: > - test

[PATCH v3 17/33] tools/xl: support new 9pfs backend xen-9pfsd

2024-01-04 Thread Juergen Gross
Add support for the new 9pfs backend "xen-9pfsd". For this backend type the tag defaults to "Xen" and the host side path to "/var/log/xen/guests/". Signed-off-by: Juergen Gross Reviewed-by: Jason Andryuk --- V2: - test max_files and max_open_files, too (Jason Andryuk) ---