Skip to content

Commit

Permalink
Pass link-local service packets to the physical interface as-is inste…
Browse files Browse the repository at this point in the history
…ad of

dropping them in vrouter.

Closes-Bug:#1438408

Change-Id: I7bcc1b24f82b9a5754e708c8586cc0273e110d21
  • Loading branch information
srajag committed Mar 30, 2015
1 parent 2bd8ce5 commit 9dada8a
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions linux/vr_host_interface.c
Expand Up @@ -321,8 +321,7 @@ linux_xmit(struct vr_interface *vif, struct sk_buff *skb,
if (type == VP_TYPE_IPOIP)
return linux_inet_fragment(vif, skb, type);

lh_pfree_skb(skb, VP_DROP_NOWHERE_TO_GO);
return -ENOMEM;
return dev_queue_xmit(skb);
}

static int
Expand Down

0 comments on commit 9dada8a

Please sign in to comment.