summaryrefslogtreecommitdiffstats
path: root/kiro-client.c
diff options
context:
space:
mode:
authorTimo Dritschler <timo.dritschler@kit.edu>2014-04-28 19:24:44 +0200
committerTimo Dritschler <timo.dritschler@kit.edu>2014-04-28 19:28:23 +0200
commit6b28a07e6bba885b3f33e7b81d3e76544f18ce07 (patch)
tree16b114536cd35b79545c098a747700dedcaebe3e /kiro-client.c
parent3405180e97cd6b4d4bef6fed2a7e666eb8126906 (diff)
downloadkiro-6b28a07e6bba885b3f33e7b81d3e76544f18ce07.tar.gz
kiro-6b28a07e6bba885b3f33e7b81d3e76544f18ce07.tar.bz2
kiro-6b28a07e6bba885b3f33e7b81d3e76544f18ce07.tar.xz
kiro-6b28a07e6bba885b3f33e7b81d3e76544f18ce07.zip
Added new function 'kiro_trb_dma_push' that allows the user to directly
write a new element into the buffers memory Changed the name of 'kiro_trb_ingest' to 'kiro_trb_adopt' Added new function 'kiro_trb_clone' that copies the pointed memory before 'adopting' it. Started to add documentation
Diffstat (limited to 'kiro-client.c')
-rw-r--r--kiro-client.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/kiro-client.c b/kiro-client.c
index 253251f..3df870f 100644
--- a/kiro-client.c
+++ b/kiro-client.c
@@ -226,7 +226,7 @@ int kiro_client_sync (KiroClient *self)
if(!kiro_trb_is_setup(priv->buffer))
{
//First time setup
- kiro_trb_ingest(priv->buffer, ctx->rdma_mr->mem);
+ kiro_trb_adopt(priv->buffer, ctx->rdma_mr->mem);
}
else
{