Branch: refs/heads/compression
Home: https://github.com/fabbione/kronosnet
Commit: f94ccce1f1d068f1549bffadf41b139335b31505
https://github.com/fabbione/kronosnet/commit/f94ccce1f1d068f1549bffadf41b13…
Author: Fabio M. Di Nitto <fdinitto(a)redhat.com>
Date: 2017-08-06 (Sun, 06 Aug 2017)
Changed paths:
M configure.ac
M libknet/Makefile.am
A libknet/compress.c
A libknet/compress.h
A libknet/compress_zlib.c
A libknet/compress_zlib.h
M libknet/handle.c
M libknet/internals.h
M libknet/libknet.h
M libknet/logging.c
M libknet/onwire.h
M libknet/tests/api-check.mk
A libknet/tests/api_knet_handle_compress.c
M libknet/tests/knet_bench.c
M libknet/threads_rx.c
M libknet/threads_tx.c
Log Message:
-----------
[compress] add userdata compression support
- implement generic plugin for compression
- add zlib compression support
Signed-off-by: Fabio M. Di Nitto <fdinitto(a)redhat.com>
Branch: refs/heads/master
Home: https://github.com/fabbione/kronosnet
Commit: 8386d925f13557d1f2b754c6c410f17520abb82f
https://github.com/fabbione/kronosnet/commit/8386d925f13557d1f2b754c6c410f1…
Author: Christine Caulfield <ccaulfie(a)redhat.com>
Date: 2017-08-03 (Thu, 03 Aug 2017)
Changed paths:
M libknet/libknet.h
M libknet/link.c
M libknet/tests/api_knet_send_loopback.c
Log Message:
-----------
loopback: Only allow 1 link to localhost if loopback is used.
If loopback is configured as a link transport to localhost then
no other transport makes sense and could actually cause
duplicate packets to be received. So now it's enforced and tested.
Signed-off-by: Christine Caulfield <ccaulfie(a)redhat.com>
Commit: 5fb923c739773e297923339fe42948d607d717a6
https://github.com/fabbione/kronosnet/commit/5fb923c739773e297923339fe42948…
Author: Christine Caulfield <ccaulfie(a)redhat.com>
Date: 2017-08-04 (Fri, 04 Aug 2017)
Changed paths:
M libknet/link.c
Log Message:
-----------
loopback: Fix some errno assignments that should have been to savederrno
Commit: ae071dd4c286f50e81eb42b431b56832f621bac8
https://github.com/fabbione/kronosnet/commit/ae071dd4c286f50e81eb42b431b568…
Author: Fabio M. Di Nitto <fdinitto(a)redhat.com>
Date: 2017-08-04 (Fri, 04 Aug 2017)
Changed paths:
M libknet/libknet.h
M libknet/link.c
M libknet/tests/api_knet_send_loopback.c
Log Message:
-----------
Merge pull request #48 from chrissie-c/loopback-single
loopback: Only allow 1 link to localhost if loopback is used.
Compare: https://github.com/fabbione/kronosnet/compare/5449d7959188...ae071dd4c286
Branch: refs/heads/master
Home: https://github.com/fabbione/kronosnet
Commit: e1ad8c330243eb4b6ea28356584418d1f39f5f82
https://github.com/fabbione/kronosnet/commit/e1ad8c330243eb4b6ea28356584418…
Author: Fabio M. Di Nitto <fdinitto(a)redhat.com>
Date: 2017-08-03 (Thu, 03 Aug 2017)
Changed paths:
M libknet/crypto.c
Log Message:
-----------
[crypto] use unique name to avoid collision with other plugins
Signed-off-by: Fabio M. Di Nitto <fdinitto(a)redhat.com>
Branch: refs/heads/master
Home: https://github.com/fabbione/kronosnet
Commit: f8cbe6d5fc846b142160d95882333d8f6229b2de
https://github.com/fabbione/kronosnet/commit/f8cbe6d5fc846b142160d95882333d…
Author: Christine Caulfield <ccaulfie(a)redhat.com>
Date: 2017-08-01 (Tue, 01 Aug 2017)
Changed paths:
M libknet/Makefile.am
M libknet/handle.c
M libknet/internals.h
M libknet/libknet.h
M libknet/link.c
M libknet/tests/api-check.mk
A libknet/tests/api_knet_send_loopback.c
M libknet/threads_heartbeat.c
M libknet/threads_pmtud.c
M libknet/threads_tx.c
A libknet/transport_loopback.c
M libknet/transports.h
Log Message:
-----------
libknet: Add LOOPBACK transport
KNET_TRANSPORT_LOOPBACK is a transport designed for
high-speed communication internal to the local node. Data
packets are copied directly from the sendfd to the
receiving fd. The calling program must make sure that
data is removed from the receiving fd in a timely manner.
Signed-off-by: Christine Caulfield <ccaulfie(a)redhat.com>
Reviewed-by: Fabio M. Di Nitto <fdinitto(a)redhat.com>