summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Restructured kiro-server implementation to make it a bit more modularTimo Dritschler2014-05-099-179/+404
| | | | | | | | | | Added interface to kiro-client to access the memory allocated for communication Added new 'kiro_destroy_connection' to kiro-rdma package Changed interface of 'kiro_destroy_connection_context' and updated server and client accordingly Started to implement a more visual testing routine in test-server Made test-client use commandline arguments for address and port Updated Makefile
* Added documentation to KIRO TRB Header fileTimo Dritschler2014-04-302-24/+180
|
* Added new function 'kiro_trb_dma_push' that allows the user to directlyTimo Dritschler2014-04-285-8/+112
| | | | | | | | 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
* KIRO Server and Client now automatically exchange MRI on connectTimo Dritschler2014-04-256-33/+138
| | | | | | Added 'kiro_client_sync' that RDMA-READs the KIRO-TRB from the server Updated Makefile Updated test-client
* Added 'kiro_trb_refresh' that refreshes all internal metaTimo Dritschler2014-04-253-20/+40
| | | | | | information based on the memory content Added 'kiro_trb_is_setup' to check if the buffer is consistent
* Fixed kiro_create_rdma_memory not setting pointers correctlyTimo Dritschler2014-04-256-15/+27
| | | | Fixed a bug in KIRO Server and Client that prevented preemtive "Post Recv"
* Small detail fix in KIRO ServerTimo Dritschler2014-04-254-7/+39
| | | | | Added small test program for KIRO Server and Client Updated Makefile
* Added first draft of 'KIRO Server' classTimo Dritschler2014-04-253-1/+329
| | | | Updated Makefile
* Added first draft of a KIRO Client classTimo Dritschler2014-04-243-2/+297
| | | | Updated Makefile
* Added new 'toolbox' unit KIRO RDMA that contains all 'loose'Timo Dritschler2014-04-241-0/+172
| | | | functionality that will be used by both, server and client
* Initial Commit for "KIT Infiniband Remote Objects" (KIRO) LibraryTimo Dritschler2014-04-234-0/+402
Created KiroTrb (KIRO Transmittable Ring Buffer) class Wrote short test for KiroTrb class