[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-Id: <20070324.212327.75430968.davem@davemloft.net>
Date: Sat, 24 Mar 2007 21:23:27 -0700 (PDT)
From: David Miller <davem@...emloft.net>
To: jheffner@....edu
Cc: netdev@...r.kernel.org
Subject: Re: [PATCH 3/3] [NET] Add IP(V6)_PMTUDISC_RPOBE
From: John Heffner <jheffner@....edu>
Date: Fri, 23 Mar 2007 20:06:46 -0400
> Add IP(V6)_PMTUDISC_PROBE value for IP(V6)_MTU_DISCOVER. This option forces
> us not to fragment, but does not make use of the kernel path MTU discovery.
> That is, it allows for user-mode MTU probing (or, packetization-layer path
> MTU discovery). This is particularly useful for diagnostic utilities, like
> traceroute/tracepath.
>
> Signed-off-by: John Heffner <jheffner@....edu>
Also applied to net-2.6.22, thanks John.
I made a slight change:
> diff --git a/include/linux/skbuff.h b/include/linux/skbuff.h
> index 4ff3940..64038b4 100644
> --- a/include/linux/skbuff.h
> +++ b/include/linux/skbuff.h
> @@ -284,7 +284,8 @@ struct sk_buff {
> nfctinfo:3;
> __u8 pkt_type:3,
> fclone:2,
> - ipvs_property:1;
> + ipvs_property:1,
> + ign_dst_mtu;
> __be16 protocol;
>
> void (*destructor)(struct sk_buff *skb);
I marked "ign_dst_mtu" with a bit field size of one since this
appears to be a boolean I take it this is what you mean to do
here. Otherwise it adds another __u8 to struct sk_buff. :-)
-
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Powered by blists - more mailing lists