Displaying 4 results from an estimated 4 matches for "811f233".
Did you mean:
112233
2019 May 28
1
Re: [PATCH] api: Add a special type for the flags argument.
...t;])
> -buf = h.pread (512, 0, 0)
> +buf = h.pread (512, 0)
At any rate, you achieved the same goal I had in mind for omitting a 0
flags argument in Python.
>
> print ("%r" % buf)
>
> diff --git a/python/t/410-pwrite.py b/python/t/410-pwrite.py
> index 9152ba2..811f233 100644
> --- a/python/t/410-pwrite.py
> +++ b/python/t/410-pwrite.py
> @@ -33,7 +33,7 @@ h = nbd.NBD ()
> h.connect_command (["nbdkit", "-s", "--exit-with-parent", "-v",
> "file", datafile])
> h.pwrite (buf1,...
2019 May 28
2
[PATCH] api: Add a special type for the flags argument.
This applies on top of patches 1 & 2 here (instead of patch 3):
https://www.redhat.com/archives/libguestfs/2019-May/msg00206.html
https://www.redhat.com/archives/libguestfs/2019-May/msg00207.html
Rich.
2019 May 28
0
[PATCH] api: Add a special type for the flags argument.
...it", "-s", "--exit-with-parent", "-v",
"pattern", "size=512"])
-buf = h.pread (512, 0, 0)
+buf = h.pread (512, 0)
print ("%r" % buf)
diff --git a/python/t/410-pwrite.py b/python/t/410-pwrite.py
index 9152ba2..811f233 100644
--- a/python/t/410-pwrite.py
+++ b/python/t/410-pwrite.py
@@ -33,7 +33,7 @@ h = nbd.NBD ()
h.connect_command (["nbdkit", "-s", "--exit-with-parent", "-v",
"file", datafile])
h.pwrite (buf1, 0, nbd.CMD_FLAG_FUA)
-buf2 =...
2019 May 28
6
[RFC libnbd PATCH 0/4] Add CMD_FLAG_DF support
RFC because this is an API break, but we haven't declared stable API
yet. If we like it, I'm working on using libnbd to implement the
nbdkit-nbd plugin; knowing whether it is API version 0.1 or 0.2 will
be useful. I also dabbled with allowing optional parameters in python,
although my OCaml is weak enough that there may be cleaner ways to
approach that.
Eric Blake (4):
api: Add flags