The branch stable/12 has been updated by kbowling:

URL: 
https://cgit.FreeBSD.org/src/commit/?id=1fb11c84caa89453d6a1b15c38252ac464980193

commit 1fb11c84caa89453d6a1b15c38252ac464980193
Author:     Kevin Bowling <[email protected]>
AuthorDate: 2023-02-08 19:25:58 +0000
Commit:     Kevin Bowling <[email protected]>
CommitDate: 2023-02-22 00:51:20 +0000

    e1000: bump driver version
    
    Incrementing these to avoid confusion in users; we are on par with these
    out of tree versions.
    
    Reviewed by:    erj
    Sponsored by:   BBOX.io
    Pull Request:   https://github.com/freebsd/freebsd-src/pull/540
    
    (cherry picked from commit 647f2d2bc0cb9357ac083bf2aae4b669167dd66b)
---
 sys/dev/e1000/if_em.c | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/sys/dev/e1000/if_em.c b/sys/dev/e1000/if_em.c
index 3f6087404f36..869ce4fb4cf4 100644
--- a/sys/dev/e1000/if_em.c
+++ b/sys/dev/e1000/if_em.c
@@ -37,7 +37,8 @@
 /*********************************************************************
  *  Driver version:
  *********************************************************************/
-char em_driver_version[] = "7.6.1-k";
+char em_driver_version[] = "7.7.8-fbsd";
+char igb_driver_version[] = "2.5.19-fbsd";
 
 /*********************************************************************
  *  PCI Device ID Table
@@ -592,7 +593,7 @@ static struct if_shared_ctx igb_sctx_init = {
        .isc_ntxqs = 1,
        .isc_admin_intrcnt = 1,
        .isc_vendor_info = igb_vendor_info_array,
-       .isc_driver_version = em_driver_version,
+       .isc_driver_version = igb_driver_version,
        .isc_driver = &igb_if_driver,
        .isc_flags = IFLIB_NEED_SCRATCH | IFLIB_TSO_INIT_IP | 
IFLIB_NEED_ZERO_CSUM,
 

Reply via email to