diff options
author | Marcin Wojtas <mw@FreeBSD.org> | 2019-05-30 12:27:55 +0000 |
---|---|---|
committer | Marcin Wojtas <mw@FreeBSD.org> | 2019-05-30 12:27:55 +0000 |
commit | b6ee6cf7ab6368a44c82ae4e5ec591421b7a12df (patch) | |
tree | 26e56a25682de7c43c358e2b9c8a7e592a951c5b /ena_defs/ena_gen_info.h | |
parent | e8887c3139a74b570b032a003db60e9a34eb976c (diff) | |
download | src-b6ee6cf7ab6368a44c82ae4e5ec591421b7a12df.tar.gz src-b6ee6cf7ab6368a44c82ae4e5ec591421b7a12df.zip |
Update ena-com for the ENAv2 versionvendor/ena-com/2.0.0
The new ena-com is required for the ENAv2 release of the driver.
Genmask macro was fixed in the platform file.
The GENMASK macro is intended to work on 32-bit values. Before this
patch the, calling GENMASK(31, 0) would cause 32-bit value to be
shifted by 32. This could lead to unexpected behavior, as shifting by
the number greater or equal to word length is undefined operation.
Submitted by: Michal Krawczyk <mk@semihalf.com>
Obtained from: Semihalf
Sponsored by: Amazon, Inc.
Notes
Notes:
svn path=/vendor-sys/ena-com/dist/; revision=348383
svn path=/vendor-sys/ena-com/2.0.0/; revision=348384; tag=vendor/ena-com/2.0.0
Diffstat (limited to 'ena_defs/ena_gen_info.h')
-rw-r--r-- | ena_defs/ena_gen_info.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ena_defs/ena_gen_info.h b/ena_defs/ena_gen_info.h index 0ff47871ea22..5620816a9672 100644 --- a/ena_defs/ena_gen_info.h +++ b/ena_defs/ena_gen_info.h @@ -1,7 +1,7 @@ /*- * BSD LICENSE * - * Copyright (c) 2015-2017 Amazon.com, Inc. or its affiliates. + * Copyright (c) 2015-2019 Amazon.com, Inc. or its affiliates. * All rights reserved. * * Redistribution and use in source and binary forms, with or without @@ -30,5 +30,5 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ -#define ENA_GEN_DATE "Sun Nov 20 11:22:05 IST 2016" -#define ENA_GEN_COMMIT "44da4e8" +#define ENA_GEN_DATE "Mon Oct 8 20:25:08 DST 2018" +#define ENA_GEN_COMMIT "e70f3a6" |