Skip to content

Commit

Permalink
linux/efa: Bump driver version to 2.12.0
Browse files Browse the repository at this point in the history
Reviewed-by: Firas Jahjah <firasj@amazon.com>
Reviewed-by: Yonatan Nachum <ynachum@amazon.com>
Signed-off-by: Michael Margolin <mrgolin@amazon.com>
  • Loading branch information
mrgolin committed Oct 1, 2024
1 parent 30efa4f commit b4e058d
Show file tree
Hide file tree
Showing 9 changed files with 26 additions and 6 deletions.
6 changes: 6 additions & 0 deletions kernel/linux/efa/RELEASENOTES.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,12 @@
## Supported Kernel Versions and Distributions
https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/efa.html#efa-amis

## r2.12.0 release notes
* Introduce EFA kernel verbs support
* Add 0xefa3 device support
* Report device node GUID
* Adjust CQ creation interface for mainline 6.11 kernels

## r2.10.0 release notes
* Introduce QP with unsolicited write with immediate receive
* Add gracefull shutdown
Expand Down
2 changes: 1 addition & 1 deletion kernel/linux/efa/conf/dkms.conf
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
PACKAGE_NAME="efa"
PACKAGE_VERSION="2.10.0"
PACKAGE_VERSION="2.12.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
Expand Down
8 changes: 8 additions & 0 deletions kernel/linux/efa/debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
efa (2.12.0-1.amzn1) unstable; urgency=medium
* Introduce EFA kernel verbs support
* Add 0xefa3 device support
* Report device node GUID
* Adjust CQ creation interface for mainline 6.11 kernels

-- Michael Margolin <mrgolin@amazon.com> Tue, 01 Oct 2024 09:17:30 +0000

efa (2.10.0-1.amzn1) unstable; urgency=medium
* Introduce QP with unsolicited write with immediate receive
* Add gracefull shutdown
Expand Down
2 changes: 1 addition & 1 deletion kernel/linux/efa/debian/efa.postinst
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
set -e

NAME=efa
DRIVER_VERSION=2.10.0
DRIVER_VERSION=2.12.0
INSTALL_PATH=/usr/src/${NAME}-${DRIVER_VERSION}

cd $INSTALL_PATH
Expand Down
2 changes: 1 addition & 1 deletion kernel/linux/efa/debian/efa.prerm
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
set -e

NAME=efa
DRIVER_VERSION=2.10.0
DRIVER_VERSION=2.12.0

dkms remove -m ${NAME} -v ${DRIVER_VERSION} --all

Expand Down
2 changes: 1 addition & 1 deletion kernel/linux/efa/debian/rules
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ include /usr/share/dpkg/pkg-info.mk
export DH_VERBOSE = 1

NAME = efa
VERSION = 2.10.0
VERSION = 2.12.0
DESTDIR:=`pwd`/debian/${NAME}
INSTALL_PATH = /usr/src/${NAME}-${VERSION}

Expand Down
2 changes: 1 addition & 1 deletion kernel/linux/efa/rpm/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

NAME = efa
SPEC = $(NAME).spec
VERSION = 2.10.0
VERSION = 2.12.0

TOPDIR := $(shell git rev-parse --show-toplevel)
TAG ?= HEAD
Expand Down
6 changes: 6 additions & 0 deletions kernel/linux/efa/rpm/efa.spec
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,12 @@ install -m 644 neuron_p2p.h %{buildroot}%{install_path}/src
/etc/modprobe.d/efa.conf

%changelog
* Tue Oct 01 2024 Michael Margolin <mrgolin@amazon.com> - 2.12.0
- Introduce EFA kernel verbs support
- Add 0xefa3 device support
- Report device node GUID
- Adjust CQ creation interface for mainline 6.11 kernels

* Wed Jun 05 2024 Michael Margolin <mrgolin@amazon.com> - 2.10.0
- Introduce QP with unsolicited write with immediate receive
- Add gracefull shutdown
Expand Down
2 changes: 1 addition & 1 deletion kernel/linux/efa/src/efa_main.c
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ static const struct pci_device_id efa_pci_tbl[] = {
};

#define DRV_MODULE_VER_MAJOR 2
#define DRV_MODULE_VER_MINOR 10
#define DRV_MODULE_VER_MINOR 12
#define DRV_MODULE_VER_SUBMINOR 0

#ifndef DRV_MODULE_VERSION
Expand Down

0 comments on commit b4e058d

Please sign in to comment.