return 0;
 }
 
-static int rtnl_get_offload_stats(struct sk_buff *skb, struct net_device *dev,
-                                 int *prividx)
+static int rtnl_offload_xstats_fill(struct sk_buff *skb, struct net_device *dev,
+                                   int *prividx)
 {
        struct nlattr *attr = NULL;
        int attr_id, size;
        return err;
 }
 
-static int rtnl_get_offload_stats_size(const struct net_device *dev)
+static int rtnl_offload_xstats_get_size(const struct net_device *dev)
 {
        int nla_size = 0;
        int attr_id;
                if (!attr)
                        goto nla_put_failure;
 
-               err = rtnl_get_offload_stats(skb, dev, prividx);
+               err = rtnl_offload_xstats_fill(skb, dev, prividx);
                if (err == -ENODATA)
                        nla_nest_cancel(skb, attr);
                else
        }
 
        if (stats_attr_valid(filter_mask, IFLA_STATS_LINK_OFFLOAD_XSTATS, 0))
-               size += rtnl_get_offload_stats_size(dev);
+               size += rtnl_offload_xstats_get_size(dev);
 
        if (stats_attr_valid(filter_mask, IFLA_STATS_AF_SPEC, 0)) {
                struct rtnl_af_ops *af_ops;