Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 11 Jul 2023 17:41:51 GMT
From:      Piotr Kubaj <pkubaj@FreeBSD.org>
To:        src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-main@FreeBSD.org
Subject:   git: 5ddb1aa30563 - main - ix, ixv: fix kernel build
Message-ID:  <202307111741.36BHfpsW067767@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
The branch main has been updated by pkubaj:

URL: https://cgit.FreeBSD.org/src/commit/?id=5ddb1aa3056305c202e604dd456fe0dcf365edd7

commit 5ddb1aa3056305c202e604dd456fe0dcf365edd7
Author:     Piotr Kubaj <pkubaj@FreeBSD.org>
AuthorDate: 2023-07-11 17:41:26 +0000
Commit:     Piotr Kubaj <pkubaj@FreeBSD.org>
CommitDate: 2023-07-11 17:41:26 +0000

    ix, ixv: fix kernel build
    
    struct adapter was renamed to struct sc.
    
    Reported by: FreeBSD User <freebsd@walstatt-de.de>
---
 sys/dev/ixgbe/if_ix.c  | 2 +-
 sys/dev/ixgbe/if_ixv.c | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/sys/dev/ixgbe/if_ix.c b/sys/dev/ixgbe/if_ix.c
index 45ab7c27233a..487a5625dd3a 100644
--- a/sys/dev/ixgbe/if_ix.c
+++ b/sys/dev/ixgbe/if_ix.c
@@ -3679,7 +3679,7 @@ ixgbe_if_update_admin_status(if_ctx_t ctx)
 			/* Update DMA coalescing config */
 			ixgbe_config_dmac(sc);
 			iflib_link_state_change(ctx, LINK_STATE_UP,
-			    ixgbe_link_speed_to_baudrate(adapter->link_speed));
+			    ixgbe_link_speed_to_baudrate(sc->link_speed));
 
 			if (sc->feat_en & IXGBE_FEATURE_SRIOV)
 				ixgbe_ping_all_vfs(sc);
diff --git a/sys/dev/ixgbe/if_ixv.c b/sys/dev/ixgbe/if_ixv.c
index 13f48a6fd3ec..cf5c8f92c450 100644
--- a/sys/dev/ixgbe/if_ixv.c
+++ b/sys/dev/ixgbe/if_ixv.c
@@ -937,7 +937,7 @@ ixv_if_update_admin_status(if_ctx_t ctx)
 				    "Full Duplex");
 			sc->link_active = true;
 			iflib_link_state_change(ctx, LINK_STATE_UP,
-			    ixgbe_link_speed_to_baudrate(adapter->link_speed));
+			    ixgbe_link_speed_to_baudrate(sc->link_speed));
 		}
 	} else { /* Link down */
 		if (sc->link_active == true) {



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202307111741.36BHfpsW067767>