Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 263945
b: refs/heads/master
c: 19c1ea1
h: refs/heads/master
i:
  263943: 65233ae
v: v3
  • Loading branch information
Yan, Zheng authored and David S. Miller committed Sep 16, 2011
1 parent 8abcfb8 commit 42896f2
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 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: 4fb66b8210c7d7147b164e19b1b44da916a75691
refs/heads/master: 19c1ea14c930db5e9c0cd7c3c6f4d01457dfcd69
10 changes: 9 additions & 1 deletion trunk/net/ipv4/fib_semantics.c
Original file line number Diff line number Diff line change
Expand Up @@ -142,6 +142,14 @@ const struct fib_prop fib_props[RTN_MAX + 1] = {
};

/* Release a nexthop info record */
static void free_fib_info_rcu(struct rcu_head *head)
{
struct fib_info *fi = container_of(head, struct fib_info, rcu);

if (fi->fib_metrics != (u32 *) dst_default_metrics)
kfree(fi->fib_metrics);
kfree(fi);
}

void free_fib_info(struct fib_info *fi)
{
Expand All @@ -156,7 +164,7 @@ void free_fib_info(struct fib_info *fi)
} endfor_nexthops(fi);
fib_info_cnt--;
release_net(fi->fib_net);
kfree_rcu(fi, rcu);
call_rcu(&fi->rcu, free_fib_info_rcu);
}

void fib_release_info(struct fib_info *fi)
Expand Down

0 comments on commit 42896f2

Please sign in to comment.