Re: [net-next v3 2/3] net: dsa: tag_yt921x: add support for Motorcomm YT921x tags
From: Andrew Lunn
Date: Sat Aug 16 2025 - 11:25:20 EST
> +static struct sk_buff *
> +yt921x_tag_rcv(struct sk_buff *skb, struct net_device *netdev)
> +{
> + unsigned int port;
> + __be16 *tag;
> + u16 rx;
> +
> + if (unlikely(!pskb_may_pull(skb, YT921X_TAG_LEN)))
> + return NULL;
> +
> + tag = (__be16 *)skb->data;
> +
> + /* Locate which port this is coming from */
> + rx = ntohs(tag[1]);
> + if (unlikely((rx & YT921X_TAG_PORT_EN) == 0)) {
> + netdev_err(netdev, "Unexpected rx tag 0x%04x\n", rx);
> + return NULL;
> + }
> +
> + port = FIELD_GET(YT921X_TAG_RX_PORT_M, rx);
> + skb->dev = dsa_conduit_find_user(netdev, 0, port);
> + if (unlikely(!skb->dev)) {
> + dev_warn_ratelimited(&netdev->dev,
> + "Cannot locate rx port %u\n", port);
> + return NULL;
> + }
Why do you rate limit the second, but not the first?
Andrew