Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 171943
b: refs/heads/master
c: 4454096
h: refs/heads/master
i:
  171941: d384518
  171939: 6740474
  171935: c406d5f
v: v3
  • Loading branch information
Arnd Bergmann authored and David S. Miller committed Nov 26, 2009
1 parent 69d9884 commit 47e7c0c
Show file tree
Hide file tree
Showing 4 changed files with 46 additions and 15 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 1bda8aa86b89d4c9b668000127ff87172f2daa10
refs/heads/master: 445409602c09219767c06497c0dc2285eac244ed
17 changes: 3 additions & 14 deletions trunk/drivers/net/veth.c
Original file line number Diff line number Diff line change
Expand Up @@ -155,8 +155,6 @@ static netdev_tx_t veth_xmit(struct sk_buff *skb, struct net_device *dev)
struct veth_net_stats *stats, *rcv_stats;
int length, cpu;

skb_orphan(skb);

priv = netdev_priv(dev);
rcv = priv->peer;
rcv_priv = netdev_priv(rcv);
Expand All @@ -168,28 +166,19 @@ static netdev_tx_t veth_xmit(struct sk_buff *skb, struct net_device *dev)
if (!(rcv->flags & IFF_UP))
goto tx_drop;

if (skb->len > (rcv->mtu + MTU_PAD))
goto rx_drop;

skb->tstamp.tv64 = 0;
skb->pkt_type = PACKET_HOST;
skb->protocol = eth_type_trans(skb, rcv);
if (dev->features & NETIF_F_NO_CSUM)
skb->ip_summed = rcv_priv->ip_summed;

skb->mark = 0;
secpath_reset(skb);
nf_reset(skb);

length = skb->len;
length = skb->len + ETH_HLEN;
if (dev_forward_skb(rcv, skb) != NET_RX_SUCCESS)
goto rx_drop;

stats->tx_bytes += length;
stats->tx_packets++;

rcv_stats->rx_bytes += length;
rcv_stats->rx_packets++;

netif_rx(skb);
return NETDEV_TX_OK;

tx_drop:
Expand Down
2 changes: 2 additions & 0 deletions trunk/include/linux/netdevice.h
Original file line number Diff line number Diff line change
Expand Up @@ -1562,6 +1562,8 @@ extern int dev_set_mac_address(struct net_device *,
extern int dev_hard_start_xmit(struct sk_buff *skb,
struct net_device *dev,
struct netdev_queue *txq);
extern int dev_forward_skb(struct net_device *dev,
struct sk_buff *skb);

extern int netdev_budget;

Expand Down
40 changes: 40 additions & 0 deletions trunk/net/core/dev.c
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,7 @@
#include <net/dst.h>
#include <net/pkt_sched.h>
#include <net/checksum.h>
#include <net/xfrm.h>
#include <linux/highmem.h>
#include <linux/init.h>
#include <linux/kmod.h>
Expand Down Expand Up @@ -1419,6 +1420,45 @@ static inline void net_timestamp(struct sk_buff *skb)
skb->tstamp.tv64 = 0;
}

/**
* dev_forward_skb - loopback an skb to another netif
*
* @dev: destination network device
* @skb: buffer to forward
*
* return values:
* NET_RX_SUCCESS (no congestion)
* NET_RX_DROP (packet was dropped)
*
* dev_forward_skb can be used for injecting an skb from the
* start_xmit function of one device into the receive queue
* of another device.
*
* The receiving device may be in another namespace, so
* we have to clear all information in the skb that could
* impact namespace isolation.
*/
int dev_forward_skb(struct net_device *dev, struct sk_buff *skb)
{
skb_orphan(skb);

if (!(dev->flags & IFF_UP))
return NET_RX_DROP;

if (skb->len > (dev->mtu + dev->hard_header_len))
return NET_RX_DROP;

skb_dst_drop(skb);
skb->tstamp.tv64 = 0;
skb->pkt_type = PACKET_HOST;
skb->protocol = eth_type_trans(skb, dev);
skb->mark = 0;
secpath_reset(skb);
nf_reset(skb);
return netif_rx(skb);
}
EXPORT_SYMBOL_GPL(dev_forward_skb);

/*
* Support routine. Sends outgoing frames to any network
* taps currently in use.
Expand Down

0 comments on commit 47e7c0c

Please sign in to comment.