diff options
| author | Dan Carpenter <[email protected]> | 2023-06-09 11:04:43 +0000 |
|---|---|---|
| committer | David S. Miller <[email protected]> | 2023-06-12 08:36:27 +0000 |
| commit | a0067dfcd9418fd3b0632bc59210d120d038a9c6 (patch) | |
| tree | 4b623bd0686fac08075b288c9cb55932eb3dc493 | |
| parent | ipvlan: fix bound dev checking for IPv6 l3s mode (diff) | |
| download | kernel-a0067dfcd9418fd3b0632bc59210d120d038a9c6.tar.gz kernel-a0067dfcd9418fd3b0632bc59210d120d038a9c6.zip | |
sctp: handle invalid error codes without calling BUG()
The sctp_sf_eat_auth() function is supposed to return enum sctp_disposition
values but if the call to sctp_ulpevent_make_authkey() fails, it returns
-ENOMEM.
This results in calling BUG() inside the sctp_side_effects() function.
Calling BUG() is an over reaction and not helpful. Call WARN_ON_ONCE()
instead.
This code predates git.
Signed-off-by: Dan Carpenter <[email protected]>
Signed-off-by: David S. Miller <[email protected]>
| -rw-r--r-- | net/sctp/sm_sideeffect.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/net/sctp/sm_sideeffect.c b/net/sctp/sm_sideeffect.c index 7fbeb99d8d32..23d6633966b1 100644 --- a/net/sctp/sm_sideeffect.c +++ b/net/sctp/sm_sideeffect.c @@ -1250,7 +1250,10 @@ static int sctp_side_effects(enum sctp_event_type event_type, default: pr_err("impossible disposition %d in state %d, event_type %d, event_id %d\n", status, state, event_type, subtype.chunk); - BUG(); + error = status; + if (error >= 0) + error = -EINVAL; + WARN_ON_ONCE(1); break; } |
