Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 33100
b: refs/heads/master
c: 9bbf28a
h: refs/heads/master
v: v3
  • Loading branch information
Patrick Caulfield authored and David S. Miller committed Aug 2, 2006
1 parent 36721f3 commit d3f7d08
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 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: dc49c1f94e3469d94b952e8f5160dd4ccd791d79
refs/heads/master: 9bbf28a1ff7b9d4e7df57829c25638721984277b
9 changes: 7 additions & 2 deletions trunk/net/decnet/dn_route.c
Original file line number Diff line number Diff line change
Expand Up @@ -925,8 +925,13 @@ static int dn_route_output_slow(struct dst_entry **pprt, const struct flowi *old
for(dev_out = dev_base; dev_out; dev_out = dev_out->next) {
if (!dev_out->dn_ptr)
continue;
if (dn_dev_islocal(dev_out, oldflp->fld_src))
break;
if (!dn_dev_islocal(dev_out, oldflp->fld_src))
continue;
if ((dev_out->flags & IFF_LOOPBACK) &&
oldflp->fld_dst &&
!dn_dev_islocal(dev_out, oldflp->fld_dst))
continue;
break;
}
read_unlock(&dev_base_lock);
if (dev_out == NULL)
Expand Down

0 comments on commit d3f7d08

Please sign in to comment.