Displaying 4 results from an estimated 4 matches for "method_scripts".
2020 Apr 19
2
[PATCH nbdkit 1/2] vddk: Use new vector library to allocate the argv list.
---
plugins/vddk/vddk.c | 41 +++++++++++++++++++++++++----------------
TODO | 1 -
2 files changed, 25 insertions(+), 17 deletions(-)
diff --git a/plugins/vddk/vddk.c b/plugins/vddk/vddk.c
index 87c0d146..d1a3015f 100644
--- a/plugins/vddk/vddk.c
+++ b/plugins/vddk/vddk.c
@@ -51,6 +51,7 @@
#include "isaligned.h"
#include "minmax.h"
#include
2020 Apr 19
0
[PATCH nbdkit 2/2] Add insert function and use the new vector library in several places.
...places without making those uses more
expensive.
We use this function in nbdkit-extentlist-filter, nbdkit-eval-plugin
and the sparse library.
This is refactoring, so should not affect functionality at all.
However during the rewrite of eval it revealed a fencepost error in
the loop iterating over method_scripts which is fixed here.
---
common/sparse/Makefile.am | 1 +
common/utils/vector.h | 24 +++++--
common/sparse/sparse.c | 50 +++++++-------
plugins/eval/eval.c | 49 ++++++--------
filters/extentlist/extentlist.c | 113 ++++++++++++++++----------------
TODO...
2020 Apr 20
1
Re: [PATCH nbdkit 2/2] Add insert function and use the new vector library in several places.
...t; expensive.
>
> We use this function in nbdkit-extentlist-filter, nbdkit-eval-plugin
> and the sparse library.
>
> This is refactoring, so should not affect functionality at all.
> However during the rewrite of eval it revealed a fencepost error in
> the loop iterating over method_scripts which is fixed here.
> ---
> common/sparse/Makefile.am | 1 +
> common/utils/vector.h | 24 +++++--
> common/sparse/sparse.c | 50 +++++++-------
> plugins/eval/eval.c | 49 ++++++--------
> filters/extentlist/extentlist.c | 113 ++++...
2020 Feb 10
3
[nbdkit PATCH] eval: Allow user override of 'missing'
A comment in the code mentioned something that didn't actually work,
but which can be useful for user-directed logging of what other
callbacks they might want to implement.
Signed-off-by: Eric Blake <eblake@redhat.com>
---
I haven't pushed this one, becuase I'm not sure if we want it; but it
was easy enough to whip together after an IRC question earlier today.