Branch: refs/heads/master
Home: https://github.com/fabbione/kronosnet
Commit: 540cf2523291a983f304ef1fc912d876e74c9a29
https://github.com/fabbione/kronosnet/commit/540cf2523291a983f304ef1fc912d8…
Author: Fabio M. Di Nitto <fdinitto(a)redhat.com>
Date: 2010-11-22 (Mon, 22 Nov 2010)
Changed paths:
M Makefile.am
Log Message:
-----------
build: fix make dist
Signed-off-by: Fabio M. Di Nitto <fdinitto(a)redhat.com>
Commit: ba6bc349dc6c86a07c17f8517d905602bd1307ed
https://github.com/fabbione/kronosnet/commit/ba6bc349dc6c86a07c17f8517d9056…
Author: Fabio M. Di Nitto <fdinitto(a)redhat.com>
Date: 2010-11-22 (Mon, 22 Nov 2010)
Changed paths:
M configure.ac
Log Message:
-----------
build: update configure.ac after autoscan
Signed-off-by: Fabio M. Di Nitto <fdinitto(a)redhat.com>
Commit: 76c7b463a681b502d9cb5f863c6a113550c8e3d8
https://github.com/fabbione/kronosnet/commit/76c7b463a681b502d9cb5f863c6a11…
Author: Fabio M. Di Nitto <fdinitto(a)redhat.com>
Date: 2010-11-22 (Mon, 22 Nov 2010)
Changed paths:
M netutils.c
M netutils.h
M ring.c
M tests/Makefile.am
Log Message:
-----------
ring: fix address comparison to determine if link is up/down
also initialize addrlen properly and fix make dist
Signed-off-by: Fabio M. Di Nitto <fdinitto(a)redhat.com>
Commit: 6017777833520d8cfc27f804e9f651f2a86ee8e2
https://github.com/fabbione/kronosnet/commit/6017777833520d8cfc27f804e9f651…
Author: Fabio M. Di Nitto <fdinitto(a)redhat.com>
Date: 2010-11-22 (Mon, 22 Nov 2010)
Changed paths:
M cfg.c
M cfg.h
M vty_cli_cmds.c
Log Message:
-----------
vty: add start/stop commands to interface
configure
interface kronosnet0 2
baseport 50000
mtu 9000
ip 192.168.7.2 24
peer node1 1
link 192.168.5.1
link 192.168.4.1
exit
start
exit
exit
exit
now starts the bridge and traffic is flowing!
Signed-off-by: Fabio M. Di Nitto <fdinitto(a)redhat.com>
Branch: refs/heads/master
Home: https://github.com/fabbione/kronosnet
Commit: e7822e14021b86ce05f45d67fd579b561e2bfe07
https://github.com/fabbione/kronosnet/commit/e7822e14021b86ce05f45d67fd579b…
Author: Fabio M. Di Nitto <fdinitto(a)redhat.com>
Date: 2010-11-21 (Sun, 21 Nov 2010)
Changed paths:
M cfg.c
M cfg.h
M vty_cli_cmds.c
Log Message:
-----------
vty: remove concept of auto-listeners/manual listeners
switch to a much simpler baseport and port range concept.
for now, only baseport is implementend and needs extra checks implementation.
portrange will come soon enough.
Signed-off-by: Fabio M. Di Nitto <fdinitto(a)redhat.com>
Branch: refs/heads/master
Home: https://github.com/fabbione/kronosnet
Commit: 11a54d069bc0cae1656f040990dbbb9fb6ce1a07
https://github.com/fabbione/kronosnet/commit/11a54d069bc0cae1656f040990dbbb…
Author: Fabio M. Di Nitto <fdinitto(a)redhat.com>
Date: 2010-11-21 (Sun, 21 Nov 2010)
Changed paths:
M ring.c
M ring.h
M tests/ping_test.c
Log Message:
-----------
ring: fix ping calculation for good
finally I have been able to reproduce the problem and it's related to
the "unknown" source in MONOTONIC clock. It can rollover making the signed
comparison useless. Force unsigned long long for the calculation that
fixes the issue.
Switching from:
Notice: timediff: -345483470 interval: 1000000
To:
Notice: timediff: 18446744073387515858 interval: 1000000
Signed-off-by: Fabio M. Di Nitto <fdinitto(a)redhat.com>
Branch: refs/heads/master
Home: https://github.com/fabbione/kronosnet
Commit: 63cb9913f319302fb4411f882c5a93481e81b7f2
https://github.com/fabbione/kronosnet/commit/63cb9913f319302fb4411f882c5a93…
Author: Fabio M. Di Nitto <fdinitto(a)redhat.com>
Date: 2010-11-21 (Sun, 21 Nov 2010)
Changed paths:
M ring.c
M ring.h
M tests/ping_test.c
Log Message:
-----------
ring: use long long instead of suseconds_t
it appears (but not totally sure) that suseconds_t is not easily portable.
On sparc it was showing, at random, some different behaviour.
Signed-off-by: Fabio M. Di Nitto <fdinitto(a)redhat.com>