diff --git a/kernel/linux/ena/RELEASENOTES.md b/kernel/linux/ena/RELEASENOTES.md index 32015fad..5e02c05d 100644 --- a/kernel/linux/ena/RELEASENOTES.md +++ b/kernel/linux/ena/RELEASENOTES.md @@ -39,6 +39,23 @@ The driver was verified on the following distributions: SUSE Linux Enterprise Server 12 SP2 SUSE Linux Enterprise Server 12 SP3 +## r2.6.0 release notes +**New Features** +* Add "capabilities" field to negotiate device capabilities +* Add support for kernel 5.14 +* Allow the device to signal the driver if features renogotiation is required + +**Bug Fixes** +* Fix XDP packet fowarding on 6th generaion instances +* Prevent device reset when device isn't responsive + +**Minor Changes** +* Move Local Page Cache (LPC) code to a separate file +* Reset device when receiving wrong request id on RX +* Cosmetic changes and code restructuring +* Fix typo in README +* Remove redundant code + ## r2.5.0 release notes **New Features** * Unify skb allocation path and use build_skb() diff --git a/kernel/linux/ena/ena_netdev.h b/kernel/linux/ena/ena_netdev.h index 7d67b448..48cb953e 100644 --- a/kernel/linux/ena/ena_netdev.h +++ b/kernel/linux/ena/ena_netdev.h @@ -25,7 +25,7 @@ #include "ena_eth_com.h" #define DRV_MODULE_GEN_MAJOR 2 -#define DRV_MODULE_GEN_MINOR 5 +#define DRV_MODULE_GEN_MINOR 6 #define DRV_MODULE_GEN_SUBMINOR 0 #define DRV_MODULE_NAME "ena" diff --git a/kernel/linux/rpm/Makefile b/kernel/linux/rpm/Makefile index 8f7599f8..34ef56d4 100644 --- a/kernel/linux/rpm/Makefile +++ b/kernel/linux/rpm/Makefile @@ -3,7 +3,7 @@ # Author: Cristian Gafton NAME = ena -VERSION = 2.5.0 +VERSION = 2.6.0 TOPDIR := $(shell git rev-parse --show-toplevel) diff --git a/kernel/linux/rpm/README-rpm.txt b/kernel/linux/rpm/README-rpm.txt index b38b8f2c..aa63dd45 100644 --- a/kernel/linux/rpm/README-rpm.txt +++ b/kernel/linux/rpm/README-rpm.txt @@ -32,7 +32,7 @@ Once the pre-requisites have been installed, you can simply issue a "make" in this directory to build the kmod src.rpm package: bash$ make -cd .. && git archive --format=tar --prefix=ena-2.5.0/ -o rpm/ena-2.5.0.tar ena_linux_2.5.0 +cd .. && git archive --format=tar --prefix=ena-2.6.0/ -o rpm/ena-2.6.0.tar ena_linux_2.6.0 rpmbuild -bs \ --define '_topdir %(pwd)' --define '_ntopdir %(pwd)' \ --define '_builddir %{_ntopdir}' \ @@ -41,7 +41,7 @@ rpmbuild -bs \ --define '_rpmdir %{_ntopdir}' \ --define '_srcrpmdir %{_ntopdir}' \ ena.spec -Wrote: /home/ec2-user/amzn-drivers/rpm/ena-2.5.0-1.el7.3.src.rpm +Wrote: /home/ec2-user/amzn-drivers/rpm/ena-2.6.0-1.el7.3.src.rpm bash$ _ @@ -50,10 +50,10 @@ COMPILING AND INSTALLING Once the src.rpm has been created, you can build binary packages for the installed kernel-devel and kernel-headers environments: -bash$ rpmbuild --rebuild ena-2.5.0-1.el7.3.src.rpm +bash$ rpmbuild --rebuild ena-2.6.0-1.el7.3.src.rpm [....] -Wrote: /home/ec2-user/rpmbuild/RPMS/x86_64/kmod-ena-2.5.0-1.el7.3.x86_64.rpm -Wrote: /home/ec2-user/rpmbuild/RPMS/x86_64/ena-debuginfo-2.5.0-1.el7.3.x86_64.rpm +Wrote: /home/ec2-user/rpmbuild/RPMS/x86_64/kmod-ena-2.6.0-1.el7.3.x86_64.rpm +Wrote: /home/ec2-user/rpmbuild/RPMS/x86_64/ena-debuginfo-2.6.0-1.el7.3.x86_64.rpm [...] bash$ _ @@ -61,5 +61,5 @@ Now you should be able to install/deploy the resulting binary rpm packages using your preferred rpm install too. For example, using yum: bash$ sudo yum -y localinstall -/home/ec2-user/rpmbuild/RPMS/x86_64/kmod-ena-2.5.0-1.el7.3.x86_64.rpm +/home/ec2-user/rpmbuild/RPMS/x86_64/kmod-ena-2.6.0-1.el7.3.x86_64.rpm diff --git a/kernel/linux/rpm/ena.spec b/kernel/linux/rpm/ena.spec index 5321b627..6115f7ac 100644 --- a/kernel/linux/rpm/ena.spec +++ b/kernel/linux/rpm/ena.spec @@ -1,5 +1,5 @@ %define kmod_name ena -%define kmod_driver_version 2.5.0 +%define kmod_driver_version 2.6.0 %define kmod_rpm_release 1 %define kmod_git_hash 3ac3e0bf079b2c0468f759f2213541e214a6dd77 %define kmod_kbuild_dir kernel/linux/ena @@ -22,7 +22,7 @@ Source7: preamble Name: %{kmod_name} Version: %{kmod_driver_version} -Release: %{kmod_rpm_release}%{?dist}.31 +Release: %{kmod_rpm_release}%{?dist}.32 Summary: %{kmod_name} kernel module Group: System/Kernel @@ -99,6 +99,9 @@ install -m 644 -D source/%{kmod_kbuild_dir}/RELEASENOTES.md $RPM_BUILD_ROOT/usr/ rm -rf $RPM_BUILD_ROOT %changelog +* Wed Sep 29 2021 Shay Agroskin shayagr@amazon.com - 2.6.0-1.32 +- Update ENA driver to version 2.6.0 + * Wed Mar 03 2021 Arthur Kiyanovski akiyano@amazon.com - 2.5.0-1.31 - Update ENA driver to version 2.5.0