[chrony-dev] [GIT] chrony/chrony.git branch master updated. 4.1-31-g127826a

[ Thread Index | Date Index | More chrony.tuxfamily.org/chrony-dev Archives ]


This is an automated email from git. It was generated because a ref
change was pushed to the "chrony/chrony.git" repository.

The branch, master has been updated
       via  127826a399826b048c3b13d04771129b6f4f373d (commit)
       via  7ee5f4888e59f46539b3a965c82a511c64bb44e2 (commit)
       via  9ed1d1afc26960194c96f57977dbc3d866a7bddf (commit)
       via  d0d9a3fa435a1bb508c52aedf4c23f88af3ba4e9 (commit)
       via  9600993c282d15353987f35b2b0f7475b37da5c4 (commit)
       via  5e6f8458ffae79f45546cbee60247b1d060b5887 (commit)
       via  f5fe5452f6bc8bcf7ee9945f70dab651c3910c5c (commit)
       via  3ac6a0c26cce479949ac4a675465338fd38e5f6c (commit)
       via  c2872d1e123b1afb8549ab6bec58f83ae562c60e (commit)
       via  e47e7e36616e7e438ccaf15a7cd826444ce9d678 (commit)
       via  d8f14ec59b0b7b8f5cdc217aaa4682cf4902fead (commit)
       via  274a51bc38b743e3f540ac81d9eb8ac87253ad54 (commit)
       via  92700e194ca3b34d1f0a2466cfcd65f41f003d12 (commit)
      from  87df2687236f1b3d87b96f6242cd531657a1de6c (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit 127826a399826b048c3b13d04771129b6f4f373d
Author: Miroslav Lichvar <mlichvar@xxxxxxxxxx>
Date:   Thu Sep 23 13:00:24 2021 +0200

    ntp: check software timestamps on Linux
    
    Apparently some routers with hardware NAT acceleration have a bug
    causing the kernel timestamps to be corrupted and break NTP. Similarly
    to the sanity check applied to hardware timestamps, require the
    kernel/driver timestamps to be within one second of the daemon timestamp
    to be accepted.

commit 7ee5f4888e59f46539b3a965c82a511c64bb44e2
Author: Miroslav Lichvar <mlichvar@xxxxxxxxxx>
Date:   Thu Sep 23 12:39:54 2021 +0200

    ntp: print stratum 1 refid in ASCII in debug message

commit 9ed1d1afc26960194c96f57977dbc3d866a7bddf
Author: Miroslav Lichvar <mlichvar@xxxxxxxxxx>
Date:   Thu Sep 23 10:08:07 2021 +0200

    doc: show arguments of ratelimit options

commit d0d9a3fa435a1bb508c52aedf4c23f88af3ba4e9
Author: Miroslav Lichvar <mlichvar@xxxxxxxxxx>
Date:   Thu Sep 23 10:01:50 2021 +0200

    use round() for rounding
    
    Replace casting of values incremented by +0.5/-0.5 with round().

commit 9600993c282d15353987f35b2b0f7475b37da5c4
Author: Miroslav Lichvar <mlichvar@xxxxxxxxxx>
Date:   Thu Sep 23 09:34:47 2021 +0200

    test: fix incorrect use of RAND_MAX
    
    On some systems (e.g. Solaris/OpenIndiana) rand() and random() have
    different ranges. RAND_MAX is the maximum value returned by rand(),
    but random() should always have a range of 0 through 2^31-1.
    
    This fixes multiple failures in different tests.

commit 5e6f8458ffae79f45546cbee60247b1d060b5887
Author: Miroslav Lichvar <mlichvar@xxxxxxxxxx>
Date:   Wed Sep 22 17:06:38 2021 +0200

    client: replace allow/deny parser
    
    Use the new cmdparse function for parsing the (cmd)allow/deny commands
    and refactor the code a bit to reduce the number of functions needed for
    all the (cmd)allow/deny(all) combinations.

commit f5fe5452f6bc8bcf7ee9945f70dab651c3910c5c
Author: Miroslav Lichvar <mlichvar@xxxxxxxxxx>
Date:   Wed Sep 22 15:54:50 2021 +0200

    conf: rework allow/deny parser
    
    Refactor the (cmd)allow/deny parser and make it more strict in what
    input it accepts. Check the scanned numbers and require whole input to
    be processed.
    
    Move the parser to cmdparse to make it available to the client.

commit 3ac6a0c26cce479949ac4a675465338fd38e5f6c
Author: Miroslav Lichvar <mlichvar@xxxxxxxxxx>
Date:   Wed Sep 22 10:34:51 2021 +0200

    cmdmon: move comment to make its scope clearer

commit c2872d1e123b1afb8549ab6bec58f83ae562c60e
Author: Miroslav Lichvar <mlichvar@xxxxxxxxxx>
Date:   Wed Sep 22 09:59:03 2021 +0200

    test: extend 110-chronyc test

commit e47e7e36616e7e438ccaf15a7cd826444ce9d678
Author: Miroslav Lichvar <mlichvar@xxxxxxxxxx>
Date:   Tue Sep 21 15:42:07 2021 +0200

    test: fix chronyc test with disabled IPv6 support

commit d8f14ec59b0b7b8f5cdc217aaa4682cf4902fead
Author: Miroslav Lichvar <mlichvar@xxxxxxxxxx>
Date:   Mon Sep 20 17:40:09 2021 +0200

    test: add 143-manual test

commit 274a51bc38b743e3f540ac81d9eb8ac87253ad54
Author: Miroslav Lichvar <mlichvar@xxxxxxxxxx>
Date:   Wed Sep 15 16:57:09 2021 +0200

    test: enable chronyc to use Unix domain socket

commit 92700e194ca3b34d1f0a2466cfcd65f41f003d12
Author: Miroslav Lichvar <mlichvar@xxxxxxxxxx>
Date:   Thu Sep 23 14:48:25 2021 +0200

    test: fix 002-scanbuild test

-----------------------------------------------------------------------

Summary of changes:
 candm.h                         |   3 +-
 client.c                        | 200 +++----------------------------
 cmdparse.c                      |  79 +++++++++++++
 cmdparse.h                      |   3 +
 conf.c                          | 102 ++--------------
 doc/chrony.conf.adoc            |   6 +-
 ntp_core.c                      |   5 +-
 ntp_io_linux.c                  |  27 ++++-
 refclock.c                      |   5 +-
 sys_linux.c                     |  17 +--
 test/compilation/002-scanbuild  |   2 +-
 test/compilation/003-sanitizers |   1 +
 test/simulation/110-chronyc     | 253 +++++++++++++++++++++++++++++++++++++++-
 test/simulation/143-manual      |  70 +++++++++++
 test/simulation/test.common     |  14 ++-
 test/unit/test.c                |   2 +-
 util.c                          |   2 +-
 17 files changed, 474 insertions(+), 317 deletions(-)
 create mode 100755 test/simulation/143-manual


hooks/post-receive
-- 
chrony/chrony.git

-- 
To unsubscribe email chrony-dev-request@xxxxxxxxxxxxxxxxxxxx with "unsubscribe" in the subject.
For help email chrony-dev-request@xxxxxxxxxxxxxxxxxxxx with "help" in the subject.
Trouble?  Email listmaster@xxxxxxxxxxxxxxxxxxxx.


Mail converted by MHonArc 2.6.19+ http://listengine.tuxfamily.org/