Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 355
b: refs/heads/master
c: 29c4be5
h: refs/heads/master
i:
  353: 76401e1
  351: 4123366
v: v3
  • Loading branch information
Arnaldo Carvalho de Melo authored and David S. Miller committed Apr 21, 2005
1 parent 3ade36b commit b21ad49
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 16 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: 208a6dfbd651f3a16c635678a731b419d3d9646f
refs/heads/master: 29c4be51e3fd52205d848248d38924941f22ca0e
2 changes: 1 addition & 1 deletion trunk/include/net/ax25.h
Original file line number Diff line number Diff line change
Expand Up @@ -305,7 +305,7 @@ extern ax25_cb *ax25_send_frame(struct sk_buff *, int, ax25_address *, ax25_addr
extern void ax25_output(ax25_cb *, int, struct sk_buff *);
extern void ax25_kick(ax25_cb *);
extern void ax25_transmit_buffer(ax25_cb *, struct sk_buff *, int);
extern void ax25_queue_xmit(struct sk_buff *);
extern void ax25_queue_xmit(struct sk_buff *skb, struct net_device *dev);
extern int ax25_check_iframes_acked(ax25_cb *, unsigned short);

/* ax25_route.c */
Expand Down
4 changes: 1 addition & 3 deletions trunk/net/ax25/af_ax25.c
Original file line number Diff line number Diff line change
Expand Up @@ -1587,9 +1587,7 @@ static int ax25_sendmsg(struct kiocb *iocb, struct socket *sock,
*asmptr = AX25_UI;

/* Datagram frames go straight out of the door as UI */
skb->dev = ax25->ax25_dev->dev;

ax25_queue_xmit(skb);
ax25_queue_xmit(skb, ax25->ax25_dev->dev);

err = len;

Expand Down
4 changes: 1 addition & 3 deletions trunk/net/ax25/ax25_ip.c
Original file line number Diff line number Diff line change
Expand Up @@ -199,9 +199,7 @@ int ax25_rebuild_header(struct sk_buff *skb)
skb = ourskb;
}

skb->dev = dev;

ax25_queue_xmit(skb);
ax25_queue_xmit(skb, dev);

put:
ax25_put_route(route);
Expand Down
8 changes: 3 additions & 5 deletions trunk/net/ax25/ax25_out.c
Original file line number Diff line number Diff line change
Expand Up @@ -340,21 +340,19 @@ void ax25_transmit_buffer(ax25_cb *ax25, struct sk_buff *skb, int type)

ax25_addr_build(ptr, &ax25->source_addr, &ax25->dest_addr, ax25->digipeat, type, ax25->modulus);

skb->dev = ax25->ax25_dev->dev;

ax25_queue_xmit(skb);
ax25_queue_xmit(skb, ax25->ax25_dev->dev);
}

/*
* A small shim to dev_queue_xmit to add the KISS control byte, and do
* any packet forwarding in operation.
*/
void ax25_queue_xmit(struct sk_buff *skb)
void ax25_queue_xmit(struct sk_buff *skb, struct net_device *dev)
{
unsigned char *ptr;

skb->protocol = htons(ETH_P_AX25);
skb->dev = ax25_fwd_dev(skb->dev);
skb->dev = ax25_fwd_dev(dev);

ptr = skb_push(skb, 1);
*ptr = 0x00; /* KISS */
Expand Down
4 changes: 1 addition & 3 deletions trunk/net/ax25/ax25_subr.c
Original file line number Diff line number Diff line change
Expand Up @@ -220,9 +220,7 @@ void ax25_return_dm(struct net_device *dev, ax25_address *src, ax25_address *des
dptr = skb_push(skb, ax25_addr_size(digi));
dptr += ax25_addr_build(dptr, dest, src, &retdigi, AX25_RESPONSE, AX25_MODULUS);

skb->dev = dev;

ax25_queue_xmit(skb);
ax25_queue_xmit(skb, dev);
}

/*
Expand Down

0 comments on commit b21ad49

Please sign in to comment.