Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755112AbYGZMuU (ORCPT ); Sat, 26 Jul 2008 08:50:20 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1751786AbYGZMuD (ORCPT ); Sat, 26 Jul 2008 08:50:03 -0400 Received: from extu-mxob-1.symantec.com ([216.10.194.28]:41444 "EHLO extu-mxob-1.symantec.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750934AbYGZMuC (ORCPT ); Sat, 26 Jul 2008 08:50:02 -0400 Date: Sat, 26 Jul 2008 13:48:57 +0100 (BST) From: Hugh Dickins X-X-Sender: hugh@blonde.site To: David Miller cc: "Denis V. Lunev" , Andrew Morton , Ingo Molnar , netdev@vger.kernel.org, linux-kernel@vger.kernel.org Subject: [PATCH] netns: fix ip_rt_frag_needed rt_is_expired Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1238 Lines: 30 Running recent kernels, and using a particular vpn gateway, I've been having to edit my mails down to get them accepted by the smtp server. Git bisect led to commit e84f84f276473dcc673f360e8ff3203148bdf0e2 - netns: place rt_genid into struct net. The conversion from a != test to rt_is_expired() put one negative too many: and now my mail works. Signed-off-by: Hugh Dickins --- Ingo was having strange distcc problems, might this help him too? net/ipv4/route.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- 2.6.26-git/net/ipv4/route.c 2008-07-26 12:31:50.000000000 +0100 +++ linux/net/ipv4/route.c 2008-07-26 13:10:04.000000000 +0100 @@ -1502,7 +1502,7 @@ unsigned short ip_rt_frag_needed(struct rth->fl.iif != 0 || dst_metric_locked(&rth->u.dst, RTAX_MTU) || !net_eq(dev_net(rth->u.dst.dev), net) || - !rt_is_expired(rth)) + rt_is_expired(rth)) continue; if (new_mtu < 68 || new_mtu >= old_mtu) { -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/