We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2bd8795 commit c4e86b4Copy full SHA for c4e86b4
include/net/nexthop.h
@@ -267,7 +267,7 @@ static inline bool nexthop_get(struct nexthop *nh)
267
static inline void nexthop_put(struct nexthop *nh)
268
{
269
if (refcount_dec_and_test(&nh->refcnt))
270
- call_rcu(&nh->rcu, nexthop_free_rcu);
+ call_rcu_hurry(&nh->rcu, nexthop_free_rcu);
271
}
272
273
static inline bool nexthop_cmp(const struct nexthop *nh1,
net/ipv4/fib_semantics.c
@@ -254,7 +254,7 @@ void free_fib_info(struct fib_info *fi)
254
return;
255
256
257
- call_rcu(&fi->rcu, free_fib_info_rcu);
+ call_rcu_hurry(&fi->rcu, free_fib_info_rcu);
258
259
EXPORT_SYMBOL_GPL(free_fib_info);
260
0 commit comments