diff options
author | Arnaldo Carvalho de Melo <acme@redhat.com> | 2024-12-13 11:53:27 -0300 |
---|---|---|
committer | Arnaldo Carvalho de Melo <acme@redhat.com> | 2024-12-13 11:53:27 -0300 |
commit | aec95d7ce1c8fe5ee9940b861b53e31509ce9428 (patch) | |
tree | 95d52689401dc3b3547134b2f2c04f03e1a5b933 /net/dccp/feat.c | |
parent | 1d18ebcfd302a2005b83ae5f13df223894d19902 (diff) | |
parent | f932fb9b40749d1c9a539d89bb3e288c077aafe5 (diff) | |
download | linux-aec95d7ce1c8fe5ee9940b861b53e31509ce9428.tar.gz linux-aec95d7ce1c8fe5ee9940b861b53e31509ce9428.tar.bz2 linux-aec95d7ce1c8fe5ee9940b861b53e31509ce9428.zip |
Merge remote-tracking branch 'torvalds/master' into perf-tools-next
To get the fixes that went thru perf-tools for v6.13.
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Diffstat (limited to 'net/dccp/feat.c')
-rw-r--r-- | net/dccp/feat.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/net/dccp/feat.c b/net/dccp/feat.c index 54086bb05c42..f7554dcdaaba 100644 --- a/net/dccp/feat.c +++ b/net/dccp/feat.c @@ -1166,8 +1166,12 @@ static u8 dccp_feat_change_recv(struct list_head *fn, u8 is_mandatory, u8 opt, goto not_valid_or_not_known; } - return dccp_feat_push_confirm(fn, feat, local, &fval); + if (dccp_feat_push_confirm(fn, feat, local, &fval)) { + kfree(fval.sp.vec); + return DCCP_RESET_CODE_TOO_BUSY; + } + return 0; } else if (entry->state == FEAT_UNSTABLE) { /* 6.6.2 */ return 0; } |