Displaying 3 results from an estimated 3 matches for "_trim_v1".
2020 Mar 17
0
[nbdkit PATCH 1/4] server: Normalize plugin can_* values
...uct backend *b, void *handle)
struct backend_plugin *p = container_of (b, struct backend_plugin, backend);
if (p->plugin.can_trim)
- return p->plugin.can_trim (handle);
+ return normalize_bool (p->plugin.can_trim (handle));
else
return p->plugin.trim || p->plugin._trim_v1;
}
@@ -380,7 +388,7 @@ plugin_can_fast_zero (struct backend *b, void *handle)
int r;
if (p->plugin.can_fast_zero)
- return p->plugin.can_fast_zero (handle);
+ return normalize_bool (p->plugin.can_fast_zero (handle));
/* Advertise support for fast zeroes if no .zero or .can...
2020 Mar 17
1
Re: [nbdkit PATCH 1/4] server: Normalize plugin can_* values
...struct backend_plugin *p = container_of (b, struct backend_plugin, backend);
>
> if (p->plugin.can_trim)
> - return p->plugin.can_trim (handle);
> + return normalize_bool (p->plugin.can_trim (handle));
> else
> return p->plugin.trim || p->plugin._trim_v1;
> }
> @@ -380,7 +388,7 @@ plugin_can_fast_zero (struct backend *b, void *handle)
> int r;
>
> if (p->plugin.can_fast_zero)
> - return p->plugin.can_fast_zero (handle);
> + return normalize_bool (p->plugin.can_fast_zero (handle));
> /* Advertise sup...
2020 Mar 17
9
[nbdkit PATCH 0/4] Fix testsuite hang with nbd-stadalone
Either patch 1 or patch 2 in isolation is sufficient to fix the
problem that Rich forwarded on from an archlinux tester (name so I can
credit them?). But both patches should be applied, as well as
backported to appropriate stable branches, to maximize cross-version
interoperability of nbdkit vs. plugins. Patch 3 will let us detect
future similar bugs much faster. I want patch 4 to ensure that