mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-07-23 07:12:09 +00:00
net: rename sk_clone to sk_clone_lock
Make clear that sk_clone() and inet_csk_clone() return a locked socket. Add _lock() prefix and kerneldoc. Suggested-by: Linus Torvalds <torvalds@linux-foundation.org> Signed-off-by: Eric Dumazet <eric.dumazet@gmail.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
9ecd04bc04
commit
e56c57d0d3
6 changed files with 29 additions and 13 deletions
|
@ -1204,7 +1204,14 @@ void sk_release_kernel(struct sock *sk)
|
|||
}
|
||||
EXPORT_SYMBOL(sk_release_kernel);
|
||||
|
||||
struct sock *sk_clone(const struct sock *sk, const gfp_t priority)
|
||||
/**
|
||||
* sk_clone_lock - clone a socket, and lock its clone
|
||||
* @sk: the socket to clone
|
||||
* @priority: for allocation (%GFP_KERNEL, %GFP_ATOMIC, etc)
|
||||
*
|
||||
* Caller must unlock socket even in error path (bh_unlock_sock(newsk))
|
||||
*/
|
||||
struct sock *sk_clone_lock(const struct sock *sk, const gfp_t priority)
|
||||
{
|
||||
struct sock *newsk;
|
||||
|
||||
|
@ -1297,7 +1304,7 @@ struct sock *sk_clone(const struct sock *sk, const gfp_t priority)
|
|||
out:
|
||||
return newsk;
|
||||
}
|
||||
EXPORT_SYMBOL_GPL(sk_clone);
|
||||
EXPORT_SYMBOL_GPL(sk_clone_lock);
|
||||
|
||||
void sk_setup_caps(struct sock *sk, struct dst_entry *dst)
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue