fib_rules: revert the fib_rules change for vts [1/1]
authorjie.yuan <jie.yuan@amlogic.com>
Thu, 10 Oct 2019 05:41:25 +0000 (13:41 +0800)
committerjie.yuan <jie.yuan@amlogic.com>
Thu, 10 Oct 2019 06:02:39 +0000 (14:02 +0800)
PD#SWPL-9771

Problem:
The fib_rules change was incorrect and will be reverted upstream soon.

Solution:
Drop it now so that devices start working again.
Revert "fib_rules: return 0 directly if an exactly same rule exists when NLM_F_EXCL not supplied"
Revert "fib_rules: fix error in backport of e9919a24d302 ("fib_rules: return 0...")"
This reverts commit d5c71a7c533e88a9fcc74fe1b5c25743868fa300.
This reverts commit 1fff19a925e524556e85efcd728efad5274ce5b6

Verify:
locally

Change-Id: Iff9425390eb9a1cf2ae5d4ec4db6504c9d77de1d
Signed-off-by: jie.yuan <jie.yuan@amlogic.com>
net/core/fib_rules.c

index 268e320052736a054b3fed8176e9002b18c0a775..31c4041f758652b4583a84d70e16992ce515c392 100644 (file)
@@ -486,10 +486,9 @@ int fib_nl_newrule(struct sk_buff *skb, struct nlmsghdr *nlh)
                rule->uid_range = fib_kuid_range_unset;
        }
 
-       if (rule_exists(ops, frh, tb, rule)) {
-               err = 0;
-               if (nlh->nlmsg_flags & NLM_F_EXCL)
-                       err = -EEXIST;
+       if ((nlh->nlmsg_flags & NLM_F_EXCL) &&
+           rule_exists(ops, frh, tb, rule)) {
+               err = -EEXIST;
                goto errout_free;
        }