|
1 | 1 | #!/bin/sh - |
2 | 2 | # program: dpvs |
3 | | -# Apr 26, 2021 |
| 3 | +# Dec 29, 2021 |
| 4 | +# |
| 5 | +# Major changes |
| 6 | +# ---------- |
| 7 | +# - Ipset framework and 12 set types. |
| 8 | +# - Ipset based tc classifier. |
4 | 9 | # |
5 | 10 | # Features |
6 | 11 | # ---------- |
7 | | -# - CI: Enable CI workflow. |
8 | | -# - Dpvs: TC stability and performance enhancement. |
9 | | -# - Dpvs: TC supports ipv6 and ingress traffic. |
10 | | -# - Dpvs: Add document and examples for dpvs tc. |
11 | | -# - Dpvs: Add supports for ipvs whitelist. |
12 | | -# - Dpvs: Support icmp forwarding with icmp_fwd_core. |
13 | | -# - Dpvs: Support mtu config. |
14 | | -# - Dpvs: Obsolete dpdk 16.07 and 17.05.02. |
15 | | -# - Patch: Add eal memory debug patch for dpdk-stable-18.11.2. |
| 12 | +# - Dpvs: Add ipset framework and 12 set types. |
| 13 | +# - Dpvs: Add l2/l3/l4 header parse apis from mbuf. |
| 14 | +# - Dpvs: Add an ipset based tc classifier -- tc_cls_ipset. |
| 15 | +# - Docs: Update docs of tc and ipset. |
| 16 | +# - Dpvs: Add config option "dedicated_queues" for bonding mode 4 (802.3ad). |
| 17 | +# - Keepalived: Add UDP_CHECK health checker. |
16 | 18 | # |
17 | 19 | # # Bugfix |
18 | 20 | # -------- |
19 | | -# - Dpvs: Fix traceroute problem of dpvs ip address. |
20 | | -# - Dpvs: Fix flags conflicts for ipvs conn/service/dest. |
21 | | -# - Dpvs: Reset tcp connection when syn-cookie check fails. |
22 | | -# - Dpvs: Use correct mbuf:l4_len for checkout offload. |
23 | | -# - Dpvs: Fix udp checksum problem for uoa when checksum offload is off. |
24 | | -# - Dpvs: Simplify checksum calculations and remove superfluous checksum functions. |
25 | | -# - Dpvs: Refactor netif recv procedure. |
26 | | -# - Dpvs: Fix debug level log problem. |
27 | | -# - Keepalived: Fix problem that local ip config doesn't take effect when restart. |
28 | | -# - Keepalived: Fix crash problem when tunnel is configured. |
| 21 | +# - Dpvs: Fix ipvs rr/wrr/wlc problem of uneven load distribution across dests. |
| 22 | +# - Dpvs: Fix bonding mode 4 problem caused by LACP failure. |
29 | 23 |
|
30 | 24 | export VERSION=1.8 |
31 | | -export RELEASE=10 |
| 25 | +export RELEASE=12 |
32 | 26 |
|
33 | 27 | echo $VERSION-$RELEASE |
0 commit comments