|
@@ -389,7 +389,7 @@ link_it:
|
|
|
}
|
|
|
|
|
|
fi->fib_treeref++;
|
|
|
- atomic_inc(&fi->fib_clntref);
|
|
|
+ refcount_set(&fi->fib_clntref, 1);
|
|
|
spin_lock(&dn_fib_info_lock);
|
|
|
fi->fib_next = dn_fib_info_list;
|
|
|
fi->fib_prev = NULL;
|
|
@@ -425,7 +425,7 @@ int dn_fib_semantic_match(int type, struct dn_fib_info *fi, const struct flowidn
|
|
|
switch (type) {
|
|
|
case RTN_NAT:
|
|
|
DN_FIB_RES_RESET(*res);
|
|
|
- atomic_inc(&fi->fib_clntref);
|
|
|
+ refcount_inc(&fi->fib_clntref);
|
|
|
return 0;
|
|
|
case RTN_UNICAST:
|
|
|
case RTN_LOCAL:
|
|
@@ -438,7 +438,7 @@ int dn_fib_semantic_match(int type, struct dn_fib_info *fi, const struct flowidn
|
|
|
}
|
|
|
if (nhsel < fi->fib_nhs) {
|
|
|
res->nh_sel = nhsel;
|
|
|
- atomic_inc(&fi->fib_clntref);
|
|
|
+ refcount_inc(&fi->fib_clntref);
|
|
|
return 0;
|
|
|
}
|
|
|
endfor_nexthops(fi);
|