search for: cacheextents_zero

Displaying 5 results from an estimated 5 matches for "cacheextents_zero".

2019 May 15
2
[nbdkit PATCH] Introduce cacheextents filter
...s_trim (struct nbdkit_next_ops *next_ops, void *nxdata, + void *handle, + uint32_t count, uint64_t offset, uint32_t flags, + int *err) +{ + kill_cacheextents (); + return next_ops->trim (nxdata, count, offset, flags, err); +} + +static int +cacheextents_zero (struct nbdkit_next_ops *next_ops, void *nxdata, + void *handle, + uint32_t count, uint64_t offset, uint32_t flags, + int *err) +{ + kill_cacheextents (); + return next_ops->zero (nxdata, count, offset, flags, err); +} + +static struct nbdk...
2019 May 15
0
Re: [nbdkit PATCH] Introduce cacheextents filter
....unload = cacheextents_unload, > + .pwrite = cacheextents_pwrite, > + .trim = cacheextents_trim, > + .zero = cacheextents_zero, > + .extents = cacheextents_extents, > +}; I know that for some reason emacs C mode has started to indent struct fields like this, which is very annoying, but these would be better indented in the same way as the other plugins and filters. Ric...
2019 May 15
6
[nbdkit PATCH v2] Introduce cacheextents filter
...s_trim (struct nbdkit_next_ops *next_ops, void *nxdata, + void *handle, + uint32_t count, uint64_t offset, uint32_t flags, + int *err) +{ + kill_cacheextents (); + return next_ops->trim (nxdata, count, offset, flags, err); +} + +static int +cacheextents_zero (struct nbdkit_next_ops *next_ops, void *nxdata, + void *handle, + uint32_t count, uint64_t offset, uint32_t flags, + int *err) +{ + kill_cacheextents (); + return next_ops->zero (nxdata, count, offset, flags, err); +} + +static struct nbdk...
2019 Jun 11
5
[nbdkit PATCH v2] Introduce cacheextents filter
...s_trim (struct nbdkit_next_ops *next_ops, void *nxdata, + void *handle, + uint32_t count, uint64_t offset, uint32_t flags, + int *err) +{ + kill_cacheextents (); + return next_ops->trim (nxdata, count, offset, flags, err); +} + +static int +cacheextents_zero (struct nbdkit_next_ops *next_ops, void *nxdata, + void *handle, + uint32_t count, uint64_t offset, uint32_t flags, + int *err) +{ + kill_cacheextents (); + return next_ops->zero (nxdata, count, offset, flags, err); +} + +static struct nbdk...
2019 Aug 30
1
[nbdkit PATCH v2] filters: Stronger version match requirements
....unload = cache_unload, .config = cache_config, diff --git a/filters/cacheextents/cacheextents.c b/filters/cacheextents/cacheextents.c index b3828f41..e89fe580 100644 --- a/filters/cacheextents/cacheextents.c +++ b/filters/cacheextents/cacheextents.c @@ -192,7 +192,6 @@ cacheextents_zero (struct nbdkit_next_ops *next_ops, void *nxdata, static struct nbdkit_filter filter = { .name = "cacheextents", .longname = "nbdkit cacheextents filter", - .version = PACKAGE_VERSION, .unload = cacheextents_unload, .pwrite...