[Linuxptp-devel] [PATCH 0/2] Enhanced Handling of Multiple Pdelay Responses

2023-11-07 Thread Chwee-Lin Choong
ple pdelay responses is now based on the 'allowedLostResponses' threshold. These modifications have been validated following Avnu Alliance Test Plan for '802.1AS Time Synchronization' Kishen Maloor (1): Make allowedLostResponses configurable Chwee-Lin Choong (1): port

[Linuxptp-devel] [PATCH 2/2] port: Fix multiple pdelay response handling

2023-11-07 Thread Chwee-Lin Choong
For multiple peers: port 1 (eth0): multiple peer responses port 1 (eth0): received pdelay_resp msg with unexpected peer port id 001201.fffe.01-1 Signed-off-by: Chwee-Lin Choong --- port.c | 31 +++ 1 file changed, 15 insertions(+), 16 deletions

[Linuxptp-devel] [PATCH 1/2] Make allowedLostResponses configurable

2023-11-07 Thread Chwee-Lin Choong
th IEEE 802.1AS-2020, clause 11.5.3 which specifies a default value of 9 (and in the range of 1-255). Signed-off-by: Kishen Maloor Signed-off-by: Chwee-Lin Choong --- config.c | 1 + port.c | 6 +++--- port_private.h | 1 + 3 files changed, 5 insertions(+), 3 deletions(-) diff --g

[Linuxptp-devel] [PATCH 2/2] port: Implement asCapableAcrossDomains and neighborGptpCapable

2023-11-14 Thread Chwee-Lin Choong
` function ensures backward compatibility with AS-2011, specifically addressing Condition (f)(2) of IEEE 802.1AS-2020 Section 11.2.2. Signed-off-by: Chwee-Lin Choong --- port.c | 65 ++ port_private.h | 3 +++ 2 files changed, 48 insertions

[Linuxptp-devel] [PATCH 1/2] port: Implement gPTP-capable TLV signaling message processing

2023-11-14 Thread Chwee-Lin Choong
, 14.8.41). Signed-off-by: Ganesh Venkatesan Signed-off-by: Chwee-Lin Choong --- config.c | 2 ++ fd.h | 4 +++- msg.h| 1 + port.c | 33 ++ port_private.h | 5 port_signaling.c | 61

[Linuxptp-devel] [PATCH 0/2] Implement gPTP-Capable TLV Signaling message for per-domain asCapable

2023-11-14 Thread Chwee-Lin Choong
-2011 on PTP domain 0, following Condition (f)(2) of Section 11.2.2. These changes have been validated on AS-2011 system without CMLDS, and on AS2020 multi-PTP domain system with CMLDS enabled. Ganesh Venkatesan (1): port: implement gPTP-capable TLV signaling message processing Chwee-Lin Choong (1

[Linuxptp-devel] [PATCH] Add scaledLastGmFreqChange computation

2023-11-22 Thread Chwee-Lin Choong
to scaledLastGmFreqChange. Signed-off-by: Tan Tee Min Signed-off-by: Chwee-Lin Choong --- clock.c | 59 + clock.h | 7 +++ pmc.c | 4 ++-- port.c | 5 +++-- tlv.c | 8 tlv.h | 4 ++-- 6 files changed, 73 insertions

[Linuxptp-devel] [PATCH v2 1/1] Add scaledLastGmFreqChange computation

2023-12-01 Thread Chwee-Lin Choong
to scaledLastGmFreqChange. v2: Maintain existing printed name 'scaledLastGmPhaseChange' in pmc.c to avoid potential disruptions to users' setups. Signed-off-by: Tan Tee Min Signed-off-by: Chwee-Lin Choong --- clock.c | 59 +---