diff options
Diffstat (limited to 'net/ipv4/fib_rules.c')
| -rw-r--r-- | net/ipv4/fib_rules.c | 3 | 
1 files changed, 2 insertions, 1 deletions
diff --git a/net/ipv4/fib_rules.c b/net/ipv4/fib_rules.c index 32300521e32..7981a24f5c7 100644 --- a/net/ipv4/fib_rules.c +++ b/net/ipv4/fib_rules.c @@ -57,6 +57,7 @@ int fib_lookup(struct net *net, struct flowi *flp, struct fib_result *res)  {  	struct fib_lookup_arg arg = {  		.result = res, +		.flags = FIB_LOOKUP_NOREF,  	};  	int err; @@ -94,7 +95,7 @@ static int fib4_rule_action(struct fib_rule *rule, struct flowi *flp,  	if (!tbl)  		goto errout; -	err = fib_table_lookup(tbl, flp, (struct fib_result *) arg->result); +	err = fib_table_lookup(tbl, flp, (struct fib_result *) arg->result, arg->flags);  	if (err > 0)  		err = -EAGAIN;  errout:  |