This is a note to let you know that I've just added the patch titled tcp: Add missing braces to do_tcp_setsockopt to the 3.10-stable tree which can be found at: http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary The filename of the patch is: tcp-add-missing-braces-to-do_tcp_setsockopt.patch and it can be found in the queue-3.10 subdirectory. If you, or anyone else, feels it should not be added to the stable tree, please let <stable@xxxxxxxxxxxxxxx> know about it. >From a24082ad423574b271fefac759257d426ffd032a Mon Sep 17 00:00:00 2001 From: Dave Jones <davej@xxxxxxxxxx> Date: Thu, 5 Sep 2013 13:43:34 -0400 Subject: tcp: Add missing braces to do_tcp_setsockopt From: Dave Jones <davej@xxxxxxxxxx> [ Upstream commit e2e5c4c07caf810d7849658dca42f598b3938e21 ] Signed-off-by: Dave Jones <davej@xxxxxxxxxxxxxxxxx> Acked-by: Neal Cardwell <ncardwell@xxxxxxxxxx> Signed-off-by: David S. Miller <davem@xxxxxxxxxxxxx> Signed-off-by: Greg Kroah-Hartman <gregkh@xxxxxxxxxxxxxxxxxxx> --- net/ipv4/tcp.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) --- a/net/ipv4/tcp.c +++ b/net/ipv4/tcp.c @@ -2447,10 +2447,11 @@ static int do_tcp_setsockopt(struct sock case TCP_THIN_DUPACK: if (val < 0 || val > 1) err = -EINVAL; - else + else { tp->thin_dupack = val; if (tp->thin_dupack) tcp_disable_early_retrans(tp); + } break; case TCP_REPAIR: Patches currently in stable-queue which might be from davej@xxxxxxxxxx are queue-3.10/tcp-add-missing-braces-to-do_tcp_setsockopt.patch queue-3.10/caif-add-missing-braces-to-multiline-if-in-cfctrl_linkup_request.patch -- To unsubscribe from this list: send the line "unsubscribe stable" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html