Symbol: RX_HDR
net/mctp/test/route-test.c
1396
#define LK(src, dst) RX_HDR(1, (src), (dst), FL_S | FL_E | FL_TO)
net/mctp/test/route-test.c
158
{ .hdr = RX_HDR(1, 10, 8, 0), .input = true },
net/mctp/test/route-test.c
159
{ .hdr = RX_HDR(1, 10, 9, 0), .input = false }, /* no input route */
net/mctp/test/route-test.c
160
{ .hdr = RX_HDR(2, 10, 8, 0), .input = false }, /* invalid version */
net/mctp/test/route-test.c
266
{ .hdr = RX_HDR(1, 10, 8, FL_S | FL_E | FL_TO), .type = 0, .deliver = true },
net/mctp/test/route-test.c
267
{ .hdr = RX_HDR(1, 10, 8, FL_S | FL_E | FL_TO), .type = 1, .deliver = false },
net/mctp/test/route-test.c
268
{ .hdr = RX_HDR(1, 10, 8, FL_S | FL_E), .type = 0, .deliver = false },
net/mctp/test/route-test.c
269
{ .hdr = RX_HDR(1, 10, 8, FL_E | FL_TO), .type = 0, .deliver = false },
net/mctp/test/route-test.c
270
{ .hdr = RX_HDR(1, 10, 8, FL_TO), .type = 0, .deliver = false },
net/mctp/test/route-test.c
271
{ .hdr = RX_HDR(1, 10, 8, 0), .type = 0, .deliver = false },
net/mctp/test/route-test.c
329
#define RX_FRAG(f, s) RX_HDR(1, 10, 8, FL_TO | (f) | ((s) << MCTP_HDR_SEQ_SHIFT))
net/mctp/test/route-test.c
495
.hdr = RX_HDR(1, 9, 8, FL_S | FL_E | FL_T(1)),
net/mctp/test/route-test.c
503
.hdr = RX_HDR(1, 9, 8, FL_S | FL_E | FL_T(1)),
net/mctp/test/route-test.c
511
.hdr = RX_HDR(1, 10, 8, FL_S | FL_E | FL_T(1)),
net/mctp/test/route-test.c
519
.hdr = RX_HDR(1, 9, 8, FL_S | FL_E | FL_T(2)),
net/mctp/test/route-test.c
527
.hdr = RX_HDR(1, 9, 8, FL_S | FL_E | FL_T(1) | FL_TO),
net/mctp/test/route-test.c
535
.hdr = RX_HDR(1, 11, 8, FL_S | FL_E | FL_T(1)),
net/mctp/test/route-test.c
543
.hdr = RX_HDR(1, 12, 8, FL_S | FL_E | FL_T(1)),
net/mctp/test/route-test.c
575
struct mctp_hdr hdr = RX_HDR(1, 9, 8, FL_S | FL_E | FL_T(1) | FL_TO);
net/mctp/test/route-test.c
640
struct mctp_hdr hdr = RX_HDR(1, 9, 8, FL_S | FL_E | FL_T(1));
net/mctp/test/route-test.c
722
const struct mctp_hdr hdr = RX_HDR(1, 10, 8, FL_S | FL_E | FL_TO);