Re: [PATCH 3/3] udp: make use of static_key_slow_set_true() interface

2013-07-01 Thread Steven Rostedt
On Mon, 2013-07-01 at 00:20 -0400, Jason Baron wrote: > > >> @@ -1450,7 +1449,7 @@ int udp_queue_rcv_skb(struct sock *sk, struct > >> sk_buff *skb) > >>goto drop; > >>nf_reset(skb); > >> > >> - if (static_key_false(&udp_encap_needed) && up->encap_type) { > >> + if (static_k

Re: [PATCH 3/3] udp: make use of static_key_slow_set_true() interface

2013-06-30 Thread Jason Baron
On 06/28/2013 11:13 PM, Steven Rostedt wrote: On Fri, 2013-06-28 at 22:30 +, jba...@akamai.com wrote: Make use of the simpler API. Need to make the change log much more descriptive. Never assume someone in the future that looks up a change to this file will know about other commits that led

Re: [PATCH 3/3] udp: make use of static_key_slow_set_true() interface

2013-06-28 Thread Steven Rostedt
On Fri, 2013-06-28 at 22:30 +, jba...@akamai.com wrote: > Make use of the simpler API. Need to make the change log much more descriptive. Never assume someone in the future that looks up a change to this file will know about other commits that led to this. Each change log should be sufficient

[PATCH 3/3] udp: make use of static_key_slow_set_true() interface

2013-06-28 Thread jbaron
Make use of the simpler API. Signed-off-by: Jason Baron --- net/ipv4/udp.c |9 - net/ipv6/udp.c |9 - 2 files changed, 8 insertions(+), 10 deletions(-) diff --git a/net/ipv4/udp.c b/net/ipv4/udp.c index 0bf5d39..b8d0029 100644 --- a/net/ipv4/udp.c +++ b/net/ipv4/udp.c @@