.. | .. |
---|
| 1 | +// SPDX-License-Identifier: GPL-2.0-or-later |
---|
1 | 2 | /* |
---|
2 | 3 | * net/dccp/minisocks.c |
---|
3 | 4 | * |
---|
4 | 5 | * An implementation of the DCCP protocol |
---|
5 | 6 | * Arnaldo Carvalho de Melo <acme@conectiva.com.br> |
---|
6 | | - * |
---|
7 | | - * This program is free software; you can redistribute it and/or |
---|
8 | | - * modify it under the terms of the GNU General Public License |
---|
9 | | - * as published by the Free Software Foundation; either version |
---|
10 | | - * 2 of the License, or (at your option) any later version. |
---|
11 | 7 | */ |
---|
12 | 8 | |
---|
13 | 9 | #include <linux/dccp.h> |
---|
.. | .. |
---|
222 | 218 | */ |
---|
223 | 219 | int dccp_child_process(struct sock *parent, struct sock *child, |
---|
224 | 220 | struct sk_buff *skb) |
---|
| 221 | + __releases(child) |
---|
225 | 222 | { |
---|
226 | 223 | int ret = 0; |
---|
227 | 224 | const int state = child->sk_state; |
---|