[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-Id: <20140217.002153.1121569813590047048.davem@davemloft.net>
Date: Mon, 17 Feb 2014 00:21:53 -0500 (EST)
From: David Miller <davem@...emloft.net>
To: dhowells@...hat.com
Cc: hannes@...essinduktion.org, netdev@...r.kernel.org
Subject: Re: Getting a NIC's MTU size
From: David Howells <dhowells@...hat.com>
Date: Fri, 14 Feb 2014 15:49:17 +0000
> One further question: If I want to get the MTU size of the NIC through which
> packets will go to get to a particular peer, can I do:
As has been suggested or at least hinted to by others, you have to use
the route dst's device pointer.
Practically speaking, this means you'll have to cache the route, just
like we do in ipv4 sockets. And on each packet send 1) validate the
route and relookup if it's become obsolute 2) dereference the dst->dev
to get the mtu.
This is because routes can change dynamically as can the physical
device's MTU setting, you'll therefore have to evaluate everything
on every packet send.
--
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