search for: delay_cache

Displaying 2 results from an estimated 2 matches for "delay_cache".

2019 Aug 30
1
[nbdkit PATCH v2] filters: Stronger version match requirements
...= PACKAGE_VERSION, .load = cow_load, .unload = cow_unload, .open = cow_open, diff --git a/filters/delay/delay.c b/filters/delay/delay.c index c92a12d7..6b13d459 100644 --- a/filters/delay/delay.c +++ b/filters/delay/delay.c @@ -266,7 +266,6 @@ delay_cache (struct nbdkit_next_ops *next_ops, void *nxdata, static struct nbdkit_filter filter = { .name = "delay", .longname = "nbdkit delay filter", - .version = PACKAGE_VERSION, .config = delay_config, .config_help = delay_c...
2019 May 16
27
[nbdkit PATCH v2 00/24] implement NBD_CMD_CACHE
Since v1: - rework .can_cache to be tri-state, with default of no advertisement (ripple effect through other patches) - add a lot more patches in order to round out filter support And in the meantime, Rich pushed NBD_CMD_CACHE support into libnbd, so in theory we now have a way to test cache commands through the entire stack. Eric Blake (24): server: Internal hooks for implementing