Lines Matching defs:cfd
202 struct canfd_frame *cfd = (struct canfd_frame *)skb->data;
208 if (unlikely(cfd->len > CAN_MAX_DLEN))
212 if (unlikely(cfd->len > CANFD_MAX_DLEN))
222 if (unlikely(skb->len > skb->dev->mtu && cfd->len > CAN_MAX_DLEN)) {
681 struct canfd_frame *cfd = (struct canfd_frame *)skb->data;
689 /* This check is made separately since cfd->len would be uninitialized if skb->len = 0. */
690 if (unlikely(cfd->len > CAN_MAX_DLEN)) {
692 dev->type, skb->len, cfd->len);
707 struct canfd_frame *cfd = (struct canfd_frame *)skb->data;
715 /* This check is made separately since cfd->len would be uninitialized if skb->len = 0. */
716 if (unlikely(cfd->len > CANFD_MAX_DLEN)) {
718 dev->type, skb->len, cfd->len);