Displaying 4 results from an estimated 4 matches for "2468d74".
Did you mean:
24674
2019 Sep 10
2
[PATCH nbdkit] server: Add nbdkit_export_name() to allow export name to be read.
This is the sort of thing I had in mind for option (1) here:
https://www.redhat.com/archives/libguestfs/2019-September/msg00047.html
It does reveal that the way we currently list exports is naive to say
the least ...
Rich.
2019 Sep 10
0
[PATCH nbdkit] server: Add nbdkit_export_name() to allow export name to be read.
...server/connections.c | 1 +
server/internal.h | 1 +
server/protocol-handshake-newstyle.c | 30 ++++++++++++---------
server/public.c | 10 +++++++
6 files changed, 77 insertions(+), 12 deletions(-)
diff --git a/TODO b/TODO
index 49b60b1..2468d74 100644
--- a/TODO
+++ b/TODO
@@ -62,6 +62,12 @@ General ideas for improvements
and also look at the implementation of the -swap option in
nbd-client.
+* Clients should be able to list export names supported by plugins.
+ Current behaviour is not really correct: We only list the -e
+ param...
2019 Sep 10
1
Re: [PATCH nbdkit] server: Add nbdkit_export_name() to allow export name to be read.
...| 1 +
> server/internal.h | 1 +
> server/protocol-handshake-newstyle.c | 30 ++++++++++++---------
> server/public.c | 10 +++++++
> 6 files changed, 77 insertions(+), 12 deletions(-)
>
> diff --git a/TODO b/TODO
> index 49b60b1..2468d74 100644
> --- a/TODO
> +++ b/TODO
> @@ -62,6 +62,12 @@ General ideas for improvements
> and also look at the implementation of the -swap option in
> nbd-client.
>
> +* Clients should be able to list export names supported by plugins.
> + Current behaviour is not real...
2019 Sep 12
4
[PATCH nbdkit v2 0/3] Access export name from plugins.
The previous incomplete patch was here:
https://www.redhat.com/archives/libguestfs/2019-September/msg00049.html
based on earlier discussion here:
https://www.redhat.com/archives/libguestfs/2019-September/msg00047.html
In v2:
- The previous patch was incomplete. This version completes it by
adding tests and extending nbdkit-sh-plugin.
- nbdkit_export_name now returns NULL for error,