Maintain a count of skip_sw filters.
This counter is protected by the cb_lock, and is updated
at the same time as offloadcnt.
Signed-off-by: Asbjørn Sloth Tønnesen <ast@fiberby.net>
Reviewed-by: Jiri Pirko <jiri@nvidia.com>
Reviewed-by: Simon Horman <horms@kernel.org>
Reviewed-by: Marcelo Ricardo Leitner <marcelo.leitner@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
        struct flow_block flow_block;
        struct list_head owner_list;
        bool keep_dst;
+       atomic_t skipswcnt; /* Number of skip_sw filters */
        atomic_t offloadcnt; /* Number of oddloaded filters */
        unsigned int nooffloaddevcnt; /* Number of devs unable to do offload */
        unsigned int lockeddevcnt; /* Number of devs that require rtnl lock. */
 
        if (*flags & TCA_CLS_FLAGS_IN_HW)
                return;
        *flags |= TCA_CLS_FLAGS_IN_HW;
+       if (tc_skip_sw(*flags))
+               atomic_inc(&block->skipswcnt);
        atomic_inc(&block->offloadcnt);
 }
 
        if (!(*flags & TCA_CLS_FLAGS_IN_HW))
                return;
        *flags &= ~TCA_CLS_FLAGS_IN_HW;
+       if (tc_skip_sw(*flags))
+               atomic_dec(&block->skipswcnt);
        atomic_dec(&block->offloadcnt);
 }