lists.openwall.net | lists / announce owl-users owl-dev john-users john-dev passwdqc-users yescrypt popa3d-users / oss-security kernel-hardening musl sabotage tlsify passwords / crypt-dev xvendor / Bugtraq Full-Disclosure linux-kernel linux-netdev linux-ext4 linux-hardening linux-cve-announce PHC | |
Open Source and information security mailing list archives
| ||
|
Message-Id: <20120320.003432.1209101307544723187.davem@davemloft.net> Date: Tue, 20 Mar 2012 00:34:32 -0400 (EDT) From: David Miller <davem@...emloft.net> To: eric.dumazet@...il.com Cc: mugunthanvnm@...com, netdev@...r.kernel.org Subject: Re: [PATCH v5 0/2] Adding new TI Common Platform ethernet SWitch driver From: Eric Dumazet <eric.dumazet@...il.com> Date: Mon, 19 Mar 2012 21:06:36 -0700 > For an ethernet driver, using eth_change_mtu seems the right thing. I just tossed that into the tree, as follows: -------------------- [PATCH] cpsw: Hook up default ndo_change_mtu. Reported-by: Eric Dumazet <eric.dumazet@...il.com> Signed-off-by: David S. Miller <davem@...emloft.net> --- drivers/net/ethernet/ti/cpsw.c | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/drivers/net/ethernet/ti/cpsw.c b/drivers/net/ethernet/ti/cpsw.c index c68c9d9..6685bbb 100644 --- a/drivers/net/ethernet/ti/cpsw.c +++ b/drivers/net/ethernet/ti/cpsw.c @@ -665,6 +665,7 @@ static const struct net_device_ops cpsw_netdev_ops = { .ndo_start_xmit = cpsw_ndo_start_xmit, .ndo_change_rx_flags = cpsw_ndo_change_rx_flags, .ndo_validate_addr = eth_validate_addr, + .ndo_change_mtu = eth_change_mtu, .ndo_tx_timeout = cpsw_ndo_tx_timeout, .ndo_get_stats = cpsw_ndo_get_stats, #ifdef CONFIG_NET_POLL_CONTROLLER -- 1.7.7.6 -- 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