svn commit: r348416 - in head/sys: dev/ena modules/ena

Marcin Wojtas mw at FreeBSD.org
Thu May 30 13:52:34 UTC 2019


Author: mw
Date: Thu May 30 13:52:32 2019
New Revision: 348416
URL: https://svnweb.freebsd.org/changeset/base/348416

Log:
  Update ENA version to v2.0.0
  
  ENAv2 introduces many new features, bug fixes and improvements.
  
  Main new features are LLQ (Low Latency Queues) and independent queues
  reconfiguration using sysctl commands.
  
  The year in copyright notice was updated to 2019.
  
  Submitted by:  Michal Krawczyk <mk at semihalf.com>
  Obtained from: Semihalf
  Sponsored by:  Amazon, Inc.

Modified:
  head/sys/dev/ena/ena.c
  head/sys/dev/ena/ena.h
  head/sys/dev/ena/ena_sysctl.c
  head/sys/dev/ena/ena_sysctl.h
  head/sys/modules/ena/Makefile

Modified: head/sys/dev/ena/ena.c
==============================================================================
--- head/sys/dev/ena/ena.c	Thu May 30 13:51:11 2019	(r348415)
+++ head/sys/dev/ena/ena.c	Thu May 30 13:52:32 2019	(r348416)
@@ -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

Modified: head/sys/dev/ena/ena.h
==============================================================================
--- head/sys/dev/ena/ena.h	Thu May 30 13:51:11 2019	(r348415)
+++ head/sys/dev/ena/ena.h	Thu May 30 13:52:32 2019	(r348416)
@@ -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
@@ -39,9 +39,9 @@
 #include "ena-com/ena_com.h"
 #include "ena-com/ena_eth_com.h"
 
-#define DRV_MODULE_VER_MAJOR	0
-#define DRV_MODULE_VER_MINOR	8
-#define DRV_MODULE_VER_SUBMINOR 4
+#define DRV_MODULE_VER_MAJOR	2
+#define DRV_MODULE_VER_MINOR	0
+#define DRV_MODULE_VER_SUBMINOR 0
 
 #define DRV_MODULE_NAME		"ena"
 

Modified: head/sys/dev/ena/ena_sysctl.c
==============================================================================
--- head/sys/dev/ena/ena_sysctl.c	Thu May 30 13:51:11 2019	(r348415)
+++ head/sys/dev/ena/ena_sysctl.c	Thu May 30 13:52:32 2019	(r348416)
@@ -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

Modified: head/sys/dev/ena/ena_sysctl.h
==============================================================================
--- head/sys/dev/ena/ena_sysctl.h	Thu May 30 13:51:11 2019	(r348415)
+++ head/sys/dev/ena/ena_sysctl.h	Thu May 30 13:52:32 2019	(r348416)
@@ -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

Modified: head/sys/modules/ena/Makefile
==============================================================================
--- head/sys/modules/ena/Makefile	Thu May 30 13:51:11 2019	(r348415)
+++ head/sys/modules/ena/Makefile	Thu May 30 13:52:32 2019	(r348416)
@@ -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


More information about the svn-src-all mailing list