search for: cbdkit

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

Did you mean: nbdkit
2018 Jan 19
2
Re: [nbdkit PATCH v2 13/13] RFC: plugins: Add callbacks for FUA semantics
Our cbdkit was branched from 1.1.12 with some patches from 1.1.13 added as well. The project has morphed significantly enough that a direct diff or merging between the two would not be feasible. Even the structure of the project directory and build has been changed to be in line with our other internal projec...
2018 Jan 21
0
Re: [nbdkit PATCH v2 13/13] RFC: plugins: Add callbacks for FUA semantics
On Fri, Jan 19, 2018 at 12:41:01PM -0500, Shaun McDowell wrote: [...] Thanks for the other email, I thought it was very interesting and I'm glad that people are looking at the performance of nbdkit seriously. > Our cbdkit was branched from 1.1.12 with some patches from 1.1.13 added as > well. The project has morphed significantly enough that a direct diff or > merging between the two would not be feasible. Even the structure of the > project directory and build has been changed to be in line with our other...
2018 Jan 19
2
Re: [nbdkit PATCH v2 13/13] RFC: plugins: Add callbacks for FUA semantics
Hi, We've been using a modified nbdkit (ours is cbdkit internally) for about half a year now and since you guys appear to be working on a next version of the API I wanted to go over some of the limitations we hit with nbdkit that we think others may also hit for consideration into the batch of changes you are making to the api. About Us: Our primary u...
2018 Jan 19
0
Re: [nbdkit PATCH v2 13/13] RFC: plugins: Add callbacks for FUA semantics
...ng concurrently on multiple threads) while yours is a different approach of breaking things into smaller stages that piece together and possible with fewer threads. > > Here are some of what our function prototypes look like that support an > asynchronous nbdkit model > > #define CBDKIT_THREAD_MODEL_SERIALIZE_REQUESTS 2 > #define CBDKIT_THREAD_MODEL_PARALLEL 3 > #define CBDKIT_THREAD_MODEL_ASYNC 4 > > struct cbdkit_plugin { > ... > int (*pread) (void *handle, void *buf, uint32_t count, uint64_t offset); > in...
2018 Jan 19
16
[nbdkit PATCH v2 00/13] Add filters + FUA support to nbdkit
A combination of the work that both Rich and I have been doing lately, where filters use only the new API with flags on every command that the client can send over the wire (we can then add support for more flags in nbdkit without having to add new callbacks, as NBD adds more flags upstream). Eric Blake (4): protocol: Split flags from cmd field in requests backend: Pass flags argument through