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");