Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
B
bake
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
8
Issues
8
List
Boards
Labels
Milestones
Merge Requests
2
Merge Requests
2
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
sds
bake
Commits
a6de00e0
Commit
a6de00e0
authored
Dec 13, 2017
by
Shane Snyder
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
document proxy api
parent
7ce66538
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
20 additions
and
0 deletions
+20
-0
include/bake-bulk-client.h
include/bake-bulk-client.h
+20
-0
No files found.
include/bake-bulk-client.h
View file @
a6de00e0
...
...
@@ -68,7 +68,17 @@ int bake_bulk_write(
uint64_t
buf_size
);
/**
* Write data into a previously created BAKE region like bake_bulk_write(),
* except the write is performed on behalf of some remote entity.
*
* @param [in] bti BAKE target identifier
* @param [in] rid identifier for region
* @param [in] region_offset offset into the target region to write
* @param [in] remote_bulk bulk_handle for remote data region to write from
* @param [in] remote_offset offset in the remote bulk handle to write from
* @param [in] remote_addr address string of the remote target to write from
* @param [in] size size to write from remote bulk handle
* @returns 0 on success, -1 on failure
*/
int
bake_bulk_proxy_write
(
bake_target_id_t
bti
,
...
...
@@ -125,7 +135,17 @@ int bake_bulk_read(
uint64_t
buf_size
);
/**
* Read data from a previously persisted BAKE region like bake_bulk_read(),
* except the read is performed on behalf of some remote entity.
*
* @param [in] bti BAKE target identifier
* @param [in] rid identifier for region
* @param [in] region_offset offset into the target region to write
* @param [in] remote_bulk bulk_handle for remote data region to read to
* @param [in] remote_offset offset in the remote bulk handle to read to
* @param [in] remote_addr address string of the remote target to read to
* @param [in] size size to read to remote bulk handle
* @returns 0 on success, -1 on failure
*/
int
bake_bulk_proxy_read
(
bake_target_id_t
bti
,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment