Commit dc9b3346 authored by Paul Bonser's avatar Paul Bonser Committed by David S. Miller

[NET]: Re-fix of doc-comment in sock.h

Restoring old, correct comment for sk_filter_release, moving it to
where it should actually be, and changing new comment into proper
comment for sk_filter_rcu_free, where it actually makes sense.

The original fix submitted for this on Oct 23 mistakenly documented
the wrong function.
Signed-off-by: default avatarPaul Bonser <misterpib@gmail.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 95f6134e
...@@ -883,18 +883,23 @@ static inline int sk_filter(struct sock *sk, struct sk_buff *skb) ...@@ -883,18 +883,23 @@ static inline int sk_filter(struct sock *sk, struct sk_buff *skb)
} }
/** /**
* sk_filter_release: Release a socket filter * sk_filter_rcu_free: Free a socket filter
* @rcu: rcu_head that contains the sk_filter info to remove * @rcu: rcu_head that contains the sk_filter to free
*
* Remove a filter from a socket and release its resources.
*/ */
static inline void sk_filter_rcu_free(struct rcu_head *rcu) static inline void sk_filter_rcu_free(struct rcu_head *rcu)
{ {
struct sk_filter *fp = container_of(rcu, struct sk_filter, rcu); struct sk_filter *fp = container_of(rcu, struct sk_filter, rcu);
kfree(fp); kfree(fp);
} }
/**
* sk_filter_release: Release a socket filter
* @sk: socket
* @fp: filter to remove
*
* Remove a filter from a socket and release its resources.
*/
static inline void sk_filter_release(struct sock *sk, struct sk_filter *fp) static inline void sk_filter_release(struct sock *sk, struct sk_filter *fp)
{ {
unsigned int size = sk_filter_len(fp); unsigned int size = sk_filter_len(fp);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment