Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 9480
b: refs/heads/master
c: 4a7097f
h: refs/heads/master
v: v3
  • Loading branch information
Scott Talbert authored and David S. Miller committed Sep 30, 2005
1 parent aea9be6 commit b1d38ac
Show file tree
Hide file tree
Showing 2 changed files with 35 additions and 4 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: 09e9ec87111ba818d8171262b15ba4c357eb1d27
refs/heads/master: 4a7097fcc431ab2ccf509d8342831873138c814a
37 changes: 34 additions & 3 deletions trunk/net/atm/lec.c
Original file line number Diff line number Diff line change
Expand Up @@ -686,9 +686,19 @@ static unsigned char lec_ctrl_magic[] = {
0x01,
0x01 };

#define LEC_DATA_DIRECT_8023 2
#define LEC_DATA_DIRECT_8025 3

static int lec_is_data_direct(struct atm_vcc *vcc)
{
return ((vcc->sap.blli[0].l3.tr9577.snap[4] == LEC_DATA_DIRECT_8023) ||
(vcc->sap.blli[0].l3.tr9577.snap[4] == LEC_DATA_DIRECT_8025));
}

static void
lec_push(struct atm_vcc *vcc, struct sk_buff *skb)
{
unsigned long flags;
struct net_device *dev = (struct net_device *)vcc->proto_data;
struct lec_priv *priv = (struct lec_priv *)dev->priv;

Expand Down Expand Up @@ -728,7 +738,8 @@ lec_push(struct atm_vcc *vcc, struct sk_buff *skb)
skb_queue_tail(&sk->sk_receive_queue, skb);
sk->sk_data_ready(sk, skb->len);
} else { /* Data frame, queue to protocol handlers */
unsigned char *dst;
struct lec_arp_table *entry;
unsigned char *src, *dst;

atm_return(vcc,skb->truesize);
if (*(uint16_t *)skb->data == htons(priv->lecid) ||
Expand All @@ -741,10 +752,30 @@ lec_push(struct atm_vcc *vcc, struct sk_buff *skb)
return;
}
#ifdef CONFIG_TR
if (priv->is_trdev) dst = ((struct lecdatahdr_8025 *)skb->data)->h_dest;
if (priv->is_trdev)
dst = ((struct lecdatahdr_8025 *) skb->data)->h_dest;
else
#endif
dst = ((struct lecdatahdr_8023 *)skb->data)->h_dest;
dst = ((struct lecdatahdr_8023 *) skb->data)->h_dest;

/* If this is a Data Direct VCC, and the VCC does not match
* the LE_ARP cache entry, delete the LE_ARP cache entry.
*/
spin_lock_irqsave(&priv->lec_arp_lock, flags);
if (lec_is_data_direct(vcc)) {
#ifdef CONFIG_TR
if (priv->is_trdev)
src = ((struct lecdatahdr_8025 *) skb->data)->h_source;
else
#endif
src = ((struct lecdatahdr_8023 *) skb->data)->h_source;
entry = lec_arp_find(priv, src);
if (entry && entry->vcc != vcc) {
lec_arp_remove(priv, entry);
kfree(entry);
}
}
spin_unlock_irqrestore(&priv->lec_arp_lock, flags);

if (!(dst[0]&0x01) && /* Never filter Multi/Broadcast */
!priv->is_proxy && /* Proxy wants all the packets */
Expand Down

0 comments on commit b1d38ac

Please sign in to comment.