Displaying 3 results from an estimated 3 matches for "090a2144".
2020 Aug 27
0
[nbdkit PATCH 1/2] filters: Add .export_description wrappers
...= partition_pwrite,
+ .trim = partition_trim,
+ .zero = partition_zero,
+ .extents = partition_extents,
+ .cache = partition_cache,
};
NBDKIT_REGISTER_FILTER(filter)
diff --git a/filters/tar/tar.c b/filters/tar/tar.c
index cb42b918..090a2144 100644
--- a/filters/tar/tar.c
+++ b/filters/tar/tar.c
@@ -295,6 +295,21 @@ tar_prepare (struct nbdkit_next_ops *next_ops, void *nxdata,
return 0;
}
+/* Description. */
+static const char *
+tar_export_description (struct nbdkit_next_ops *next_ops, void *nxdata,
+ void *...
2020 Sep 01
1
Re: [nbdkit PATCH 1/2] filters: Add .export_description wrappers
...= partition_trim,
> + .zero = partition_zero,
> + .extents = partition_extents,
> + .cache = partition_cache,
> };
>
> NBDKIT_REGISTER_FILTER(filter)
> diff --git a/filters/tar/tar.c b/filters/tar/tar.c
> index cb42b918..090a2144 100644
> --- a/filters/tar/tar.c
> +++ b/filters/tar/tar.c
> @@ -295,6 +295,21 @@ tar_prepare (struct nbdkit_next_ops *next_ops, void *nxdata,
> return 0;
> }
>
> +/* Description. */
> +static const char *
> +tar_export_description (struct nbdkit_next_ops *next_ops,...
2020 Aug 27
4
[nbdkit PATCH 0/2] ext2 export list tweaks
Applies on top of my pending series for the exportname filter,
addressing one of the todo's in that cover letter.
Eric Blake (2):
filters: Add .export_description wrappers
ext2: Supply .list_exports and .default_export
filters/ext2/nbdkit-ext2-filter.pod | 3 +-
tests/Makefile.am | 16 +++-
filters/ext2/ext2.c | 125 +++++++++++++++++++---------