diff --git a/kernel/linux/efa/RELEASENOTES.md b/kernel/linux/efa/RELEASENOTES.md index 0e487968..b5de5ebf 100644 --- a/kernel/linux/efa/RELEASENOTES.md +++ b/kernel/linux/efa/RELEASENOTES.md @@ -3,6 +3,10 @@ ## Supported Kernel Versions and Distributions https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/efa.html#efa-amis +## r2.13.0 release notes +* Add an option to create QP with specific service level +* Report link speed according to device parameters + ## r2.12.1 release notes * Fix RNR configuration for SRD kernel QPs diff --git a/kernel/linux/efa/conf/dkms.conf b/kernel/linux/efa/conf/dkms.conf index d9413235..8cca6dc1 100644 --- a/kernel/linux/efa/conf/dkms.conf +++ b/kernel/linux/efa/conf/dkms.conf @@ -1,5 +1,5 @@ PACKAGE_NAME="efa" -PACKAGE_VERSION="2.12.1" +PACKAGE_VERSION="2.13.0" CLEAN="cd build; make modules_clean; make clean" PRE_BUILD="./configure-dkms.sh $kernelver $source_tree" # Quoted 'make' to suppress DKMS append of KERNELRELEASE diff --git a/kernel/linux/efa/debian/changelog b/kernel/linux/efa/debian/changelog index 04643769..03098d3a 100644 --- a/kernel/linux/efa/debian/changelog +++ b/kernel/linux/efa/debian/changelog @@ -1,3 +1,9 @@ +efa (2.13.0-1.amzn1) unstable; urgency=medium + * Add an option to create QP with specific service level + * Report link speed according to device parameters + + -- Michael Margolin Wed, 30 Oct 2024 14:40:53 +0000 + efa (2.12.1-1.amzn1) unstable; urgency=medium * Fix RNR configuration for SRD kernel QPs diff --git a/kernel/linux/efa/debian/efa.postinst b/kernel/linux/efa/debian/efa.postinst index 3adf1b3c..882e2c37 100644 --- a/kernel/linux/efa/debian/efa.postinst +++ b/kernel/linux/efa/debian/efa.postinst @@ -3,7 +3,7 @@ set -e NAME=efa -DRIVER_VERSION=2.12.1 +DRIVER_VERSION=2.13.0 INSTALL_PATH=/usr/src/${NAME}-${DRIVER_VERSION} cd $INSTALL_PATH diff --git a/kernel/linux/efa/debian/efa.prerm b/kernel/linux/efa/debian/efa.prerm index af329a01..fb45769c 100644 --- a/kernel/linux/efa/debian/efa.prerm +++ b/kernel/linux/efa/debian/efa.prerm @@ -3,7 +3,7 @@ set -e NAME=efa -DRIVER_VERSION=2.12.1 +DRIVER_VERSION=2.13.0 dkms remove -m ${NAME} -v ${DRIVER_VERSION} --all diff --git a/kernel/linux/efa/debian/rules b/kernel/linux/efa/debian/rules index 07d442f6..38d1a17f 100755 --- a/kernel/linux/efa/debian/rules +++ b/kernel/linux/efa/debian/rules @@ -9,7 +9,7 @@ include /usr/share/dpkg/pkg-info.mk export DH_VERBOSE = 1 NAME = efa -VERSION = 2.12.1 +VERSION = 2.13.0 DESTDIR:=`pwd`/debian/${NAME} INSTALL_PATH = /usr/src/${NAME}-${VERSION} diff --git a/kernel/linux/efa/rpm/Makefile b/kernel/linux/efa/rpm/Makefile index 70f3cf51..6e35cf2c 100644 --- a/kernel/linux/efa/rpm/Makefile +++ b/kernel/linux/efa/rpm/Makefile @@ -2,7 +2,7 @@ NAME = efa SPEC = $(NAME).spec -VERSION = 2.12.1 +VERSION = 2.13.0 TOPDIR := $(shell git rev-parse --show-toplevel) TAG ?= HEAD diff --git a/kernel/linux/efa/rpm/efa.spec b/kernel/linux/efa/rpm/efa.spec index 7c618e63..b0ccf125 100644 --- a/kernel/linux/efa/rpm/efa.spec +++ b/kernel/linux/efa/rpm/efa.spec @@ -100,6 +100,10 @@ install -m 644 neuron_p2p.h %{buildroot}%{install_path}/src /etc/modprobe.d/efa.conf %changelog +* Wed Oct 30 2024 Michael Margolin - 2.13.0 +- Add an option to create QP with specific service level +- Report link speed according to device parameters + * Sun Oct 06 2024 Michael Margolin - 2.12.1 - Fix RNR configuration for SRD kernel QPs diff --git a/kernel/linux/efa/src/efa_main.c b/kernel/linux/efa/src/efa_main.c index aec1e2bf..dde957f7 100644 --- a/kernel/linux/efa/src/efa_main.c +++ b/kernel/linux/efa/src/efa_main.c @@ -38,8 +38,8 @@ static const struct pci_device_id efa_pci_tbl[] = { }; #define DRV_MODULE_VER_MAJOR 2 -#define DRV_MODULE_VER_MINOR 12 -#define DRV_MODULE_VER_SUBMINOR 1 +#define DRV_MODULE_VER_MINOR 13 +#define DRV_MODULE_VER_SUBMINOR 0 #ifndef DRV_MODULE_VERSION #define DRV_MODULE_VERSION \