Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 133909
b: refs/heads/master
c: 4b8f704
h: refs/heads/master
i:
  133907: b6ef06c
v: v3
  • Loading branch information
remi.denis-courmont@nokia authored and David S. Miller committed Jan 27, 2009
1 parent fd7464d commit 49fc395
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 12 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: 5075138d67ac66adab777163907d92d1a955ff50
refs/heads/master: 4b8f704bea70a2c8719e47f53197678a87a0c62f
20 changes: 9 additions & 11 deletions trunk/net/phonet/af_phonet.c
Original file line number Diff line number Diff line change
Expand Up @@ -275,8 +275,6 @@ static inline int can_respond(struct sk_buff *skb)
return 0;

ph = pn_hdr(skb);
if (phonet_address_get(skb->dev, ph->pn_rdev) != ph->pn_rdev)
return 0; /* we are not the destination */
if (ph->pn_res == PN_PREFIX && !pskb_may_pull(skb, 5))
return 0;
if (ph->pn_res == PN_COMMGR) /* indications */
Expand Down Expand Up @@ -344,8 +342,8 @@ static int phonet_rcv(struct sk_buff *skb, struct net_device *dev,
struct packet_type *pkttype,
struct net_device *orig_dev)
{
struct net *net = dev_net(dev);
struct phonethdr *ph;
struct sock *sk;
struct sockaddr_pn sa;
u16 len;

Expand All @@ -364,21 +362,21 @@ static int phonet_rcv(struct sk_buff *skb, struct net_device *dev,
skb_reset_transport_header(skb);

pn_skb_get_dst_sockaddr(skb, &sa);
if (pn_sockaddr_get_addr(&sa) == 0)
goto out; /* currently, we cannot be device 0 */

sk = pn_find_sock_by_sa(dev_net(dev), &sa);
if (sk == NULL) {
/* check if we are the destination */
if (phonet_address_lookup(net, pn_sockaddr_get_addr(&sa)) == 0) {
/* Phonet packet input */
struct sock *sk = pn_find_sock_by_sa(net, &sa);

if (sk)
return sk_receive_skb(sk, skb, 0);

if (can_respond(skb)) {
send_obj_unreachable(skb);
send_reset_indications(skb);
}
goto out;
}

/* Push data to the socket (or other sockets connected to it). */
return sk_receive_skb(sk, skb, 0);

out:
kfree_skb(skb);
return NET_RX_DROP;
Expand Down

0 comments on commit 49fc395

Please sign in to comment.