Lines Matching refs:nc_header
56 struct nc_header { // packed: struct
74 #define FRAMED_SIZE(mtu) (sizeof (struct nc_header) \ argument
363 struct nc_header *header; in net1080_rx_fixup()
380 header = (struct nc_header *) skb->data; in net1080_rx_fixup()
439 struct nc_header *header = NULL; in net1080_tx_fixup()
444 if (!((len + padlen + sizeof (struct nc_header)) & 0x01)) in net1080_tx_fixup()
451 sizeof(struct nc_header) <= headroom) in net1080_tx_fixup()
455 if ((sizeof (struct nc_header) + padlen) < in net1080_tx_fixup()
459 + sizeof (struct nc_header), in net1080_tx_fixup()
468 sizeof (struct nc_header), in net1080_tx_fixup()
478 header = (struct nc_header *) skb_push(skb, sizeof *header); in net1080_tx_fixup()
498 unsigned extra = sizeof (struct nc_header) in net1080_bind()