| /linux/tools/testing/selftests/drivers/net/hw/ |
| H A D | rss_api.py | 80 ntf = next(ethnl.poll_ntf(duration=0.2), None) 81 ksft_is(ntf, None) 166 ntf = next(ethnl.poll_ntf(duration=0.2), None) 167 if ntf is None: 169 ksft_eq(ntf["name"], "rss-ntf") 170 ksft_eq(set(ntf["msg"]["indir"]), {1}) 173 ntf = next(ethnl.poll_ntf(duration=0.2), None) 174 if ntf is None: 176 ksft_eq(ntf["name"], "rss-ntf") 177 ksft_is(ntf["msg"].get("context"), None) [all …]
|
| /linux/tools/net/ynl/samples/ |
| H A D | netdev.c | 64 struct ynl_ntf_base_type *ntf; in main() local 114 while ((ntf = ynl_ntf_dequeue(ys))) { in main() 115 netdev_print_device((struct netdev_dev_get_rsp *)&ntf->data, in main() 116 ntf->cmd); in main() 117 ynl_ntf_free(ntf); in main()
|
| /linux/net/core/ |
| H A D | page_pool_user.c | 265 struct sk_buff *ntf; in netdev_nl_page_pool_event() local 280 ntf = genlmsg_new(GENLMSG_DEFAULT_SIZE, GFP_KERNEL); in netdev_nl_page_pool_event() 281 if (!ntf) in netdev_nl_page_pool_event() 284 if (page_pool_nl_fill(ntf, pool, &info)) { in netdev_nl_page_pool_event() 285 nlmsg_free(ntf); in netdev_nl_page_pool_event() 289 genlmsg_multicast_netns(&netdev_nl_family, net, ntf, in netdev_nl_page_pool_event()
|
| /linux/tools/net/ynl/lib/ |
| H A D | ynl.c | 808 struct ynl_ntf_base_type *ntf; in ynl_sock_destroy() local 811 while ((ntf = ynl_ntf_dequeue(ys))) in ynl_sock_destroy() 812 ynl_ntf_free(ntf); in ynl_sock_destroy() 819 void ynl_ntf_free(struct ynl_ntf_base_type *ntf) in ynl_ntf_free() argument 821 ntf->free(ntf); in ynl_ntf_free() 855 struct ynl_ntf_base_type *ntf; in ynl_ntf_dequeue() local 860 ntf = ys->ntf_first; in ynl_ntf_dequeue() 861 ys->ntf_first = ntf->next; in ynl_ntf_dequeue() 862 if (ys->ntf_last_next == &ntf in ynl_ntf_dequeue() [all...] |
| H A D | ynl.h | 142 void ynl_ntf_free(struct ynl_ntf_base_type *ntf);
|
| H A D | ynl-priv.h | 97 void (*free)(struct ynl_ntf_base_type *ntf); 133 void (*free)(struct ynl_ntf_base_type *ntf);
|
| /linux/tools/net/ynl/pyynl/ |
| H A D | cli.py | 136 parser.add_argument('--subscribe', dest='ntf', type=str) 196 if args.ntf: 197 ynl.ntf_subscribe(args.ntf) 240 if args.ntf:
|
| /linux/drivers/net/pse-pd/ |
| H A D | pse_core.c | 488 struct pse_ntf ntf = {}; in pse_disable_pi_pol() local 497 ntf.notifs = notifs; in pse_disable_pi_pol() 498 ntf.id = id; in pse_disable_pi_pol() 499 kfifo_in_spinlocked(&pcdev->ntf_fifo, &ntf, 1, &pcdev->ntf_fifo_lock); in pse_disable_pi_pol() 1015 struct pse_ntf ntf; in pse_send_ntf_worker() local 1019 while (kfifo_out(&pcdev->ntf_fifo, &ntf, 1)) { in pse_send_ntf_worker() 1023 psec = pse_control_find_by_id(pcdev, ntf.id); in pse_send_ntf_worker() 1027 ethnl_pse_send_ntf(netdev, ntf.notifs); in pse_send_ntf_worker() 1269 struct pse_ntf ntf = {}; in pse_isr() local 1285 ntf.notifs = notifs; in pse_isr() [all …]
|
| /linux/net/nfc/nci/ |
| H A D | Makefile | 8 nci-objs := core.o data.o lib.o ntf.o rsp.o hci.o
|
| H A D | core.c | 1443 if (!op || !op->ntf) in nci_op_ntf_packet() 1446 return op->ntf(ndev, skb); in nci_op_ntf_packet()
|
| /linux/drivers/nfc/nxp-nci/ |
| H A D | core.c | 117 .ntf = nxp_nci_rf_pll_unlocked_ntf, 121 .ntf = nxp_nci_rf_txldo_error_ntf,
|
| /linux/drivers/nfc/fdp/ |
| H A D | fdp.c | 670 .ntf = fdp_nci_core_reset_ntf_packet, 678 .ntf = fdp_nci_prop_patch_ntf_packet,
|
| /linux/net/ethtool/ |
| H A D | ioctl.c | 1538 int ntf = 0; in ethtool_set_rxfh() local 1690 ntf = ETHTOOL_MSG_RSS_NTF; in ethtool_set_rxfh() 1693 ntf = ETHTOOL_MSG_RSS_CREATE_NTF; in ethtool_set_rxfh() 1700 ntf = ETHTOOL_MSG_RSS_DELETE_NTF; in ethtool_set_rxfh() 1704 ntf = ETHTOOL_MSG_RSS_NTF; in ethtool_set_rxfh() 1708 ntf = 0; in ethtool_set_rxfh() 1755 if (ntf) in ethtool_set_rxfh() 1756 ethtool_rss_notify(dev, ntf, rxfh.rss_context); in ethtool_set_rxfh()
|