Skip to content

Commit

Permalink
linux/efa: Bump driver version to 1.3.0
Browse files Browse the repository at this point in the history
Reviewed-by: Firas JahJah <[email protected]>
Reviewed-by: Yossi Leybovich <[email protected]>
Signed-off-by: Gal Pressman <[email protected]>
  • Loading branch information
gal-pressman committed Jul 9, 2019
1 parent 1e185f3 commit 77aab7c
Show file tree
Hide file tree
Showing 9 changed files with 33 additions and 8 deletions.
8 changes: 8 additions & 0 deletions kernel/linux/efa/RELEASENOTES.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,14 @@ The driver was tested on the following distributions:
* CentOS 7.4
* CentOS 7.6

## r1.3.0 release notes

* Align to the driver that was merged upstream
* Fix a bug where failed functions would return success return value
* Fix modify QP udata check backport
* Fix locking issues in mmap flow
* Add Debian packaging files

## r0.9.2 release notes

* Bug fix module load issue
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="0.9.2"
PACKAGE_VERSION="1.3.0"
CLEAN="make clean"
MAKE="make KERNEL_VERSION=${kernelver}"
BUILT_MODULE_NAME[0]="efa"
Expand Down
10 changes: 10 additions & 0 deletions kernel/linux/efa/debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
efa (1.3.0-1.amzn1) unstable; urgency=medium

* Align to the driver that was merged upstream
* Fix a bug where failed functions would return success return value
* Fix modify QP udata check backport
* Fix locking issues in mmap flow
* Add Debian packaging files

-- Gal Pressman <[email protected]> Sun, 7 Jul 2019 15:05:27 +0000

efa (0.9.2-1.amzn1) unstable; urgency=medium

* Initial release of EFA kernel driver Debian package
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=0.9.2
DRIVER_VERSION=1.3.0

dkms add -m ${NAME} -v ${DRIVER_VERSION}
for kernel in $(/bin/ls /lib/modules); do
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=0.9.2
DRIVER_VERSION=1.3.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 = 0.9.2
VERSION = 1.3.0
DESTDIR:=`pwd`/debian/${NAME}
INSTALL_PATH = /usr/src/${NAME}-${VERSION}

Expand Down
6 changes: 3 additions & 3 deletions kernel/linux/efa/efa_main.c
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@ static const struct pci_device_id efa_pci_tbl[] = {
{ }
};

#define DRV_MODULE_VER_MAJOR 0
#define DRV_MODULE_VER_MINOR 9
#define DRV_MODULE_VER_SUBMINOR 2
#define DRV_MODULE_VER_MAJOR 1
#define DRV_MODULE_VER_MINOR 3
#define DRV_MODULE_VER_SUBMINOR 0

#ifndef DRV_MODULE_VERSION
#define DRV_MODULE_VERSION \
Expand Down
2 changes: 1 addition & 1 deletion kernel/linux/efa/rpm/Makefile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Makefile for creating rpm of the Amazon EFA driver

NAME = efa
VERSION = 0.9.2
VERSION = 1.3.0

TOPDIR := $(shell git rev-parse --show-toplevel)
TAG = master
Expand Down
7 changes: 7 additions & 0 deletions kernel/linux/efa/rpm/efa.spec
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,13 @@ install -m 644 RELEASENOTES.md %{buildroot}%{install_path}
/etc/modprobe.d/efa.conf

%changelog
* Sun Jul 7 2019 Gal Pressman <[email protected]> - 1.3.0
- Align to the driver that was merged upstream
- Fix a bug where failed functions would return success return value
- Fix modify QP udata check backport
- Fix locking issues in mmap flow
- Add Debian packaging files

* Tue May 7 2019 Jie Zhang <[email protected]> - 0.9.2
- Add a separate configuration file to load ib_uverbs as a soft dependency module
on non-systemd based systems
Expand Down

0 comments on commit 77aab7c

Please sign in to comment.