| /linux/net/nfc/nci/ |
| H A D | ntf.c | 34 const struct nci_core_reset_ntf *ntf; in nci_core_reset_ntf_packet() local 39 ntf = (struct nci_core_reset_ntf *)skb->data; in nci_core_reset_ntf_packet() 41 ndev->nci_ver = ntf->nci_ver; in nci_core_reset_ntf_packet() 43 ntf->nci_ver, ntf->config_status); in nci_core_reset_ntf_packet() 45 ndev->manufact_id = ntf->manufact_id; in nci_core_reset_ntf_packet() 47 __le32_to_cpu(ntf->manufact_specific_info); in nci_core_reset_ntf_packet() 57 struct nci_core_conn_credit_ntf *ntf; in nci_core_conn_credits_ntf_packet() local 64 ntf = (struct nci_core_conn_credit_ntf *)skb->data; in nci_core_conn_credits_ntf_packet() 66 pr_debug("num_entries %d\n", ntf->num_entries); in nci_core_conn_credits_ntf_packet() 68 if (ntf->num_entries > NCI_MAX_NUM_CONN) in nci_core_conn_credits_ntf_packet() [all …]
|
| H A D | Makefile | 8 nci-objs := core.o data.o lib.o ntf.o rsp.o hci.o
|
| H A D | core.c | 1461 if (!op || !op->ntf) in nci_op_ntf_packet() 1464 return op->ntf(ndev, skb); in nci_op_ntf_packet()
|
| /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 | |
| /linux/net/psp/ |
| H A D | psp_nl.c | 118 struct sk_buff *ntf; in psp_nl_notify_dev() local 124 ntf = genlmsg_new(GENLMSG_DEFAULT_SIZE, GFP_KERNEL); in psp_nl_notify_dev() 125 if (!ntf) in psp_nl_notify_dev() 129 if (psp_nl_dev_fill(psd, ntf, &info)) { in psp_nl_notify_dev() 130 nlmsg_free(ntf); in psp_nl_notify_dev() 134 genlmsg_multicast_netns(&psp_nl_family, dev_net(psd->main_netdev), ntf, in psp_nl_notify_dev() 233 struct sk_buff *ntf, *rsp; in psp_nl_key_rotate_doit() local 242 ntf = psp_nl_reply_new(&ntf_info); in psp_nl_key_rotate_doit() 243 if (!ntf) { in psp_nl_key_rotate_doit() 249 nla_put_u32(ntf, PSP_A_DEV_ID, psd->id)) { in psp_nl_key_rotate_doit() [all …]
|
| /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 | 234 ntf_group.add_argument('--subscribe', dest='ntf', type=str) 323 if args.ntf: 324 ynl.ntf_subscribe(args.ntf) 353 if args.ntf:
|
| /linux/drivers/media/platform/synopsys/ |
| H A D | dw-mipi-csi2rx.c | 650 struct v4l2_async_notifier *ntf = &csi2->notifier; in dw_mipi_csi2rx_register_notifier() local 674 v4l2_async_subdev_nf_init(ntf, sd); in dw_mipi_csi2rx_register_notifier() 675 ntf->ops = &dw_mipi_csi2rx_notifier_ops; in dw_mipi_csi2rx_register_notifier() 677 asd = v4l2_async_nf_add_fwnode_remote(ntf, ep, in dw_mipi_csi2rx_register_notifier() 684 ret = v4l2_async_nf_register(ntf); in dw_mipi_csi2rx_register_notifier() 693 v4l2_async_nf_cleanup(ntf); in dw_mipi_csi2rx_register_notifier()
|
| /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,
|