b.a.t.m.a.n.lists.open-mesh.org archive mirror
 help / color / mirror / Atom feed
From: "Linus Lüssing" <linus.luessing@web.de>
To: b.a.t.m.a.n@lists.open-mesh.org
Subject: [B.A.T.M.A.N.] [PATCHv4 1/2] batman-adv: use eth_hdr() instead of skb->data in interface_tx path
Date: Sat, 18 Jan 2014 19:31:56 +0100	[thread overview]
Message-ID: <1390069917-5411-2-git-send-email-linus.luessing@web.de> (raw)
In-Reply-To: <1390069917-5411-1-git-send-email-linus.luessing@web.de>

Our .ndo_start_xmit handler (batadv_interface_tx()) can rely on having
the skb ether header pointer set correctly since the following commit
present in kernels >= 3.9:

"net: reset mac header in dev_start_xmit()" (6d1ccff627)

Therefore we can safely use eth_hdr() instead of skb->data now, which
spares us some ugly type casts.

Signed-off-by: Linus Lüssing <linus.luessing@web.de>
---
 compat.h         |   35 +++++++++++++++++++++++++++++++++++
 soft-interface.c |    6 +++---
 2 files changed, 38 insertions(+), 3 deletions(-)

diff --git a/compat.h b/compat.h
index 57c9d96..8a0ccc5 100644
--- a/compat.h
+++ b/compat.h
@@ -332,6 +332,41 @@ static int __batadv_interface_set_mac_addr(x, y)
 	pos && ({ n = pos->member.next; 1; }); \
 	pos = hlist_entry_safe(n, typeof(*pos), member))
 
+#define BATADV_SET_ETHTOOL_OPS(netdev, ops) \
+	((netdev)->ethtool_ops = (ops))
+
+#define __batadv_interface_tx \
+	({ \
+		int func(struct sk_buff *skb, struct net_device *soft_iface) \
+		{ \
+			skb_reset_mac_header(skb); \
+			return batadv_interface_tx(skb, soft_iface); \
+		} \
+		&func; \
+	 })
+
+#undef SET_ETHTOOL_OPS
+#define SET_ETHTOOL_OPS(dev, batadv_ethtool_ops) \
+	({ \
+		const struct net_device_ops my_net_device_ops = { \
+			.ndo_init = batadv_softif_init_late, \
+			.ndo_open = batadv_interface_open, \
+			.ndo_stop = batadv_interface_release, \
+			.ndo_get_stats = batadv_interface_stats, \
+			.ndo_vlan_rx_add_vid = batadv_interface_add_vid, \
+			.ndo_vlan_rx_kill_vid = batadv_interface_kill_vid, \
+			.ndo_set_mac_address = batadv_interface_set_mac_addr, \
+			.ndo_change_mtu = batadv_interface_change_mtu, \
+			.ndo_set_rx_mode = batadv_interface_set_rx_mode, \
+			.ndo_start_xmit = __batadv_interface_tx, \
+			.ndo_validate_addr = eth_validate_addr, \
+			.ndo_add_slave = batadv_softif_slave_add, \
+			.ndo_del_slave = batadv_softif_slave_del, \
+		}; \
+		dev->netdev_ops = &my_net_device_ops; \
+		BATADV_SET_ETHTOOL_OPS(dev, batadv_ethtool_ops); \
+	 })
+
 #endif /* < KERNEL_VERSION(3, 9, 0) */
 
 #if LINUX_VERSION_CODE < KERNEL_VERSION(3, 10, 0)
diff --git a/soft-interface.c b/soft-interface.c
index f82c267..66903a1 100644
--- a/soft-interface.c
+++ b/soft-interface.c
@@ -176,7 +176,7 @@ static int batadv_interface_tx(struct sk_buff *skb,
 
 	soft_iface->trans_start = jiffies;
 	vid = batadv_get_vid(skb, 0);
-	ethhdr = (struct ethhdr *)skb->data;
+	ethhdr = eth_hdr(skb);
 
 	switch (ntohs(ethhdr->h_proto)) {
 	case ETH_P_8021Q:
@@ -194,7 +194,7 @@ static int batadv_interface_tx(struct sk_buff *skb,
 		goto dropped;
 
 	/* skb->data might have been reallocated by batadv_bla_tx() */
-	ethhdr = (struct ethhdr *)skb->data;
+	ethhdr = eth_hdr(skb);
 
 	/* Register the client MAC in the transtable */
 	if (!is_multicast_ether_addr(ethhdr->h_source)) {
@@ -230,7 +230,7 @@ static int batadv_interface_tx(struct sk_buff *skb,
 		/* skb->data may have been modified by
 		 * batadv_gw_dhcp_recipient_get()
 		 */
-		ethhdr = (struct ethhdr *)skb->data;
+		ethhdr = eth_hdr(skb);
 		/* if gw_mode is on, broadcast any non-DHCP message.
 		 * All the DHCP packets are going to be sent as unicast
 		 */
-- 
1.7.10.4


  reply	other threads:[~2014-01-18 18:31 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-01-18 18:31 [B.A.T.M.A.N.] eth_hdr/skb_reset_mac_header changes Linus Lüssing
2014-01-18 18:31 ` Linus Lüssing [this message]
2014-01-18 18:31 ` [B.A.T.M.A.N.] [PATCHv4 2/2] batman-adv: remove obsolete skb_reset_mac_header() in batadv_bla_tx() Linus Lüssing

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1390069917-5411-2-git-send-email-linus.luessing@web.de \
    --to=linus.luessing@web.de \
    --cc=b.a.t.m.a.n@lists.open-mesh.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).