mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* [PATCH] 2.5.45 [TRIVIAL] Fixed pmtu usage in iptunnel
@ 2002-11-01 15:18 Marcelo Roberto Jimenez
  0 siblings, 0 replies; only message in thread
From: Marcelo Roberto Jimenez @ 2002-11-01 15:18 UTC (permalink / raw)
  To: trivial; +Cc: linux-kernel

# This is a BitKeeper generated patch for the following project:
# Project Name: Linux kernel tree
# This patch format is intended for GNU patch command version 2.5 or higher.
# This patch includes the following deltas:
#	           ChangeSet	1.858   -> 1.859  
#	net/ipv4/netfilter/ipt_TCPMSS.c	1.5     -> 1.6    
#
# The following is the BitKeeper ChangeSet Log
# --------------------------------------------
# 02/11/01	mroberto@cetuc.puc-rio.br	1.859
# ipt_TCPMSS.c:
#   Fixed broken code to use inline shorthand dst_pmtu()
# --------------------------------------------
#
diff -Nru a/net/ipv4/netfilter/ipt_TCPMSS.c b/net/ipv4/netfilter/ipt_TCPMSS.c
--- a/net/ipv4/netfilter/ipt_TCPMSS.c	Fri Nov  1 13:13:29 2002
+++ b/net/ipv4/netfilter/ipt_TCPMSS.c	Fri Nov  1 13:13:29 2002
@@ -85,14 +85,14 @@
 			return NF_DROP; /* or IPT_CONTINUE ?? */
 		}
 
-		if((*pskb)->dst->pmtu <= (sizeof(struct iphdr) + sizeof(struct tcphdr))) {
+		if(dst_pmtu((*pskb)->dst) <= (sizeof(struct iphdr) + sizeof(struct tcphdr))) {
 			if (net_ratelimit())
 				printk(KERN_ERR
-		       			"ipt_tcpmss_target: unknown or invalid path-MTU (%d)\n", (*pskb)->dst->pmtu);
+		       			"ipt_tcpmss_target: unknown or invalid path-MTU (%d)\n", dst_pmtu((*pskb)->dst));
 			return NF_DROP; /* or IPT_CONTINUE ?? */
 		}
 
-		newmss = (*pskb)->dst->pmtu - sizeof(struct iphdr) - sizeof(struct tcphdr);
+		newmss = dst_pmtu((*pskb)->dst) - sizeof(struct iphdr) - sizeof(struct tcphdr);
 	} else
 		newmss = tcpmssinfo->mss;
 


^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2002-11-01 16:12 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2002-11-01 15:18 [PATCH] 2.5.45 [TRIVIAL] Fixed pmtu usage in iptunnel Marcelo Roberto Jimenez

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

all inboxes | Powered by JetHome®