Branch: refs/heads/master
Home: https://github.com/fabbione/kronosnet
Commit: 0ed37216fd40bea8fa42ab21d38fcf2c629cf4e0
https://github.com/fabbione/kronosnet/commit/0ed37216fd40bea8fa42ab21d38fcf…
Author: Michele Baldessari <michele(a)acksyn.org>
Date: 2016-05-15 (Sun, 15 May 2016)
Changed paths:
M libknet/threads_send_recv.c
Log Message:
-----------
Initialize savederrno variable
This fixes an error seen on F23 arm/gcc:
In file included from threads_send_recv.c:26:0:
threads_send_recv.c: In function '_handle_send_to_links_thread':
logging.h:19:2: error: 'savederrno' may be used uninitialized in this
function [-Werror=maybe-uninitialized]
log_msg(knet_h, subsys, KNET_LOG_ERR, fmt, ##args)
^
threads_send_recv.c:475:6: note: 'savederrno' was declared here
int savederrno, docallback = 0;
^
cc1: all warnings being treated as errors
Makefile:843: recipe for target 'libknet_la-threads_send_recv.lo' failed
make[2]: *** [libknet_la-threads_send_recv.lo] Error 1
make[2]: Leaving directory
'/home/jenkins/workspace/kronosnet/arm-fedora-23-gcc/libknet'
Makefile:506: recipe for target 'all-recursive' failed
make[1]: *** [all-recursive] Error 1
make[1]: Leaving directory
'/home/jenkins/workspace/kronosnet/arm-fedora-23-gcc'
Makefile:417: recipe for target 'all' failed
make: *** [all] Error 2
Commit: d22c3822a4eab671940eeea134737614bfbbf5e2
https://github.com/fabbione/kronosnet/commit/d22c3822a4eab671940eeea1347376…
Author: Fabio M. Di Nitto <fdinitto(a)redhat.com>
Date: 2016-05-16 (Mon, 16 May 2016)
Changed paths:
M libknet/threads_send_recv.c
Log Message:
-----------
Merge pull request #4 from mbaldessari/arm-fix
Initialize savederrno variable
Compare: https://github.com/fabbione/kronosnet/compare/004bd26a1753...d22c3822a4ea
Branch: refs/heads/master
Home: https://github.com/fabbione/kronosnet
Commit: 004bd26a175338051df6845a179ae14a1eea6bcc
https://github.com/fabbione/kronosnet/commit/004bd26a175338051df6845a179ae1…
Author: Fabio M. Di Nitto <fdinitto(a)redhat.com>
Date: 2016-03-06 (Sun, 06 Mar 2016)
Changed paths:
M TODO
M libknet/host.c
M libknet/internals.h
M libknet/link.c
M libknet/threads_heartbeat.c
M libknet/threads_pmtud.c
Log Message:
-----------
[PMTUd] fix several issues around PMTUd and improve discovery performances
- Fix a race condition around first time MTU discovery where MTU value
would be out of the wazooo
- Fix a case where onwire MTU value would be smaller than crypto header
and generate errors
- Make MTU value a decision factor if a link is usable or not.
If MTU is not valid (either the discovery process failed) or
the value is not sane, the link will be removed from the available
data link pool till the problem is resolved. Once the problem is
solved the link will recover automatically.
- Have link up/down status trigger a PMTUd process to speed up
detection.
- Add ability to detect smaller MTU than minimum defined by protocol.
- Improve error reporting across the board.
- Make PMTUd timeout dynamic based on current link latency. This change
makes detection of small MTU very fast.
- Sanity check values returned by PMTUD to be in range between
minimum MTU defined by given protocol and maximum that knet can handle.
- Trigger host cache reculaculation on MTU validity change to reduce
risk of packet loss on bad links.
Signed-off-by: Fabio M. Di Nitto <fdinitto(a)redhat.com>
Branch: refs/heads/master
Home: https://github.com/fabbione/kronosnet
Commit: 4ddea0425b14b5ec2361457b746ae0b678c1f244
https://github.com/fabbione/kronosnet/commit/4ddea0425b14b5ec2361457b746ae0…
Author: Fabio M. Di Nitto <fdinitto(a)redhat.com>
Date: 2016-02-16 (Tue, 16 Feb 2016)
Changed paths:
M libknet/handle.c
M libknet/host.c
M libknet/internals.h
M libknet/link.c
M libknet/logging.c
M libknet/threads_dsthandler.c
M libknet/threads_heartbeat.c
M libknet/threads_pmtud.c
M libknet/threads_send_recv.c
Log Message:
-----------
[internal] rename list_rwlock to global_rwlock
Signed-off-by: Fabio M. Di Nitto <fdinitto(a)redhat.com>
Branch: refs/heads/master
Home: https://github.com/fabbione/kronosnet
Commit: 0bacb4ec24d837fd0dba1d746bb856418b970ec4
https://github.com/fabbione/kronosnet/commit/0bacb4ec24d837fd0dba1d746bb856…
Author: Fabio M. Di Nitto <fdinitto(a)redhat.com>
Date: 2016-02-15 (Mon, 15 Feb 2016)
Changed paths:
M libknet/host.c
Log Message:
-----------
[host] fix memory leak in knet_host_add in case of failure
make it easier to read knet_host_remove (no functional changes)
Signed-off-by: Fabio M. Di Nitto <fdinitto(a)redhat.com>