Home
last modified time | relevance | path

Searched refs:CANXL_HDR_SIZE (Results 1 – 4 of 4) sorted by relevance

/openbmc/linux/include/uapi/linux/
H A Dcan.h219 #define CANXL_HDR_SIZE (offsetof(struct canxl_frame, data)) macro
220 #define CANXL_MIN_MTU (CANXL_HDR_SIZE + 64)
/openbmc/linux/include/linux/can/
H A Dskb.h124 if (skb->len < CANXL_HDR_SIZE + CANXL_MIN_DLEN || skb->len > CANXL_MTU) in can_is_canxl_skb()
128 if (skb->len != CANXL_HDR_SIZE + cxl->len) in can_is_canxl_skb()
/openbmc/linux/drivers/net/can/dev/
H A Dskb.c266 CANXL_HDR_SIZE + data_len); in alloc_canxl_skb()
274 *cxl = skb_put_zero(skb, CANXL_HDR_SIZE + data_len); in alloc_canxl_skb()
/openbmc/linux/net/can/
H A Draw.c837 if (size < CANXL_HDR_SIZE + CANXL_MIN_DLEN || size > CANXL_MTU) in raw_sendmsg()