Lines Matching full:program
7 * and verifies that XDP_TX program loaded on a bond device
111 if (!ASSERT_OK_PTR(link, "attach xdp program")) in xdp_attach()
180 /* Load a dummy program on sending side as with veth peer needs to have a in bonding_setup()
181 * XDP program loaded as well. in bonding_setup()
401 /* enslaving with a XDP program loaded is allowed */ in test_xdp_bonding_attach()
403 if (!ASSERT_OK_PTR(link, "attach program to veth")) in test_xdp_bonding_attach()
413 /* attaching to slave when master has no program is allowed */ in test_xdp_bonding_attach()
415 if (!ASSERT_OK_PTR(link, "attach program to slave when enslaved")) in test_xdp_bonding_attach()
418 /* attaching to master not allowed when slave has program loaded */ in test_xdp_bonding_attach()
420 if (!ASSERT_ERR_PTR(link2, "attach program to master when slave has program")) in test_xdp_bonding_attach()
426 /* attaching XDP program to master allowed when slave has no program */ in test_xdp_bonding_attach()
428 if (!ASSERT_OK_PTR(link, "attach program to master")) in test_xdp_bonding_attach()
431 /* attaching to slave not allowed when master has program loaded */ in test_xdp_bonding_attach()
433 if (!ASSERT_ERR_PTR(link2, "attach program to slave when master has program")) in test_xdp_bonding_attach()
439 /* test program unwinding with a non-XDP slave */ in test_xdp_bonding_attach()
450 if (!ASSERT_ERR_PTR(link, "attach program to master when slave does not support XDP")) in test_xdp_bonding_attach()
490 ASSERT_OK_PTR(link, "attach program to master"); in test_xdp_bonding_nested()