From d741f2f6347496a34c0bcc856fac4a0661b28b92 Mon Sep 17 00:00:00 2001 From: Karthik Chandrashekar Date: Thu, 24 Oct 2024 18:55:13 +0000 Subject: [PATCH] Update NEWS and SB XML. Update NEWS and SB XML files for 84030e9bb70b51452499c54ebafb7c6b70e2ed3c Signed-off-by: Karthik Chandrashekar Signed-off-by: Numan Siddique --- NEWS | 3 +++ ovn-sb.xml | 4 ++-- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/NEWS b/NEWS index aaa3964a97..8eb6fc3220 100644 --- a/NEWS +++ b/NEWS @@ -1,5 +1,8 @@ Post v24.09.0 ------------- + - Added support to choose selection methods - dp_hash or + hash (with specified hash fields) for ECMP routes + while choosing nexthop. OVN v24.09.0 - 13 Sep 2024 -------------------------- diff --git a/ovn-sb.xml b/ovn-sb.xml index e079018d82..479d3e2851 100644 --- a/ovn-sb.xml +++ b/ovn-sb.xml @@ -2545,7 +2545,7 @@ tcp.flags = RST;
R = select(N1[=W1], N2[=W2], ...);
-
R = select(values=N1[=W1], N2[=W2], ...; hash_felds="field1,field2,...");
+
R = select(values=(N1[=W1], N2[=W2], ...); hash_fields="field1,field2,...");

Parameters: Integer N1, N2..., with @@ -2583,7 +2583,7 @@ tcp.flags = RST;

Example: reg8[16..31] = select(1=20, 2=30, 3=50); - Example: reg8[16..31] = select(values=1=20, 2=30, 3=50; hash_fields="ip_proto,src_ip,dst_ip"); + Example: reg8[16..31] = select(values=(1=20, 2=30, 3=50); hash_fields="ip_proto,src_ip,dst_ip");