-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[teamd]: Administratively shutdown port channel has member ports in d…
- Loading branch information
1 parent
10a6157
commit df149cd
Showing
2 changed files
with
23 additions
and
0 deletions.
There are no files selected for viewing
22 changes: 22 additions & 0 deletions
22
src/libteam/0013-teamd-lacp-port-admin-down-recv-not-processing.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
diff --git a/teamd/teamd_runner_lacp.c b/teamd/teamd_runner_lacp.c | ||
index 4a3fe6b..19592c5 100644 | ||
--- a/teamd/teamd_runner_lacp.c | ||
+++ b/teamd/teamd_runner_lacp.c | ||
@@ -1182,12 +1182,17 @@ static int lacpdu_recv(struct lacp_port *lacp_port) | ||
struct lacpdu lacpdu; | ||
struct sockaddr_ll ll_from; | ||
int err; | ||
+ bool admin_state; | ||
|
||
err = teamd_recvfrom(lacp_port->sock, &lacpdu, sizeof(lacpdu), 0, | ||
(struct sockaddr *) &ll_from, sizeof(ll_from)); | ||
if (err <= 0) | ||
return err; | ||
|
||
+ admin_state = team_get_ifinfo_admin_state(lacp_port->ctx->ifinfo); | ||
+ if (!admin_state) | ||
+ return 0; | ||
+ | ||
return lacpdu_process(lacp_port, &lacpdu); | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters