This fixes a missed free_percpu in the unwind code path and when
keys are destroyed.
Signed-off-by: John Fastabend <john.r.fastabend@intel.com>
Acked-by: Eric Dumazet <edumazet@google.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
                n->ht_down->refcnt--;
 #ifdef CONFIG_CLS_U32_PERF
        free_percpu(n->pf);
+#endif
+#ifdef CONFIG_CLS_U32_MARK
+       free_percpu(n->pcpu_success);
 #endif
        kfree(n);
        return 0;
 
 #ifdef CONFIG_CLS_U32_MARK
        n->pcpu_success = alloc_percpu(u32);
+       if (!n->pcpu_success) {
+               err = -ENOMEM;
+               goto errout;
+       }
 
        if (tb[TCA_U32_MARK]) {
                struct tc_u32_mark *mark;
                *arg = (unsigned long)n;
                return 0;
        }
+
+#ifdef CONFIG_CLS_U32_MARK
+       free_percpu(n->pcpu_success);
+#endif
+
+errout:
 #ifdef CONFIG_CLS_U32_PERF
        free_percpu(n->pf);
 #endif