/linux-6.12.1/drivers/s390/char/ |
D | sclp_sd.c | 68 * struct sclp_sd_listener - Listener for asynchronous Store Data response 105 * sclp_sd_listener_add() - Add listener for Store Data responses 106 * @listener: Listener to add 108 static void sclp_sd_listener_add(struct sclp_sd_listener *listener) in sclp_sd_listener_add() argument 111 list_add_tail(&listener->list, &sclp_sd_queue); in sclp_sd_listener_add() 116 * sclp_sd_listener_remove() - Remove listener for Store Data responses 117 * @listener: Listener to remove 119 static void sclp_sd_listener_remove(struct sclp_sd_listener *listener) in sclp_sd_listener_remove() argument 122 list_del(&listener->list); in sclp_sd_listener_remove() 127 * sclp_sd_listener_init() - Initialize a Store Data response listener [all …]
|
/linux-6.12.1/drivers/infiniband/hw/irdma/ |
D | trace_cm.h | 42 TP_PROTO(struct irdma_cm_listener *listener, void *caller), 43 TP_ARGS(listener, caller), 51 TP_fast_assign(__entry->iwdev = listener->iwdev; 52 __entry->lport = listener->loc_port; 53 __entry->ipv4 = listener->ipv4; 55 listener->loc_addr, 4); 66 TP_PROTO(struct irdma_cm_listener *listener), 67 TP_ARGS(listener), 76 TP_fast_assign(__entry->iwdev = listener->iwdev; 77 __entry->lport = listener->loc_port; [all …]
|
D | cm.c | 1460 * @dst_addr: listener ip addr 1462 * @dst_port: listener tcp port num 1686 ibdev_dbg(&iwdev->ibdev, "CM: Allocating child listener %p\n", in irdma_add_mqh_6() 1689 ibdev_dbg(&iwdev->ibdev, "CM: listener memory allocation\n"); in irdma_add_mqh_6() 1770 "CM: Allocating child CM Listener forIP=%pI4, vlan_id=%d, MAC=%pM\n", in irdma_add_mqh_4() 1775 ibdev_dbg(&iwdev->ibdev, "CM: Allocating child listener %p\n", in irdma_add_mqh_4() 1778 ibdev_dbg(&iwdev->ibdev, "CM: listener memory allocation\n"); in irdma_add_mqh_4() 1845 * @listener: pointer to listener node 1849 struct irdma_cm_listener *listener, in irdma_reset_list_prep() argument 1856 if (cm_node->listener == listener && in irdma_reset_list_prep() [all …]
|
/linux-6.12.1/tools/testing/selftests/net/ |
D | amt.sh | 7 # There are four network-namespaces, LISTENER, SOURCE, GATEWAY, RELAY. 8 # The role of LISTENER is to listen multicast traffic. 10 # The role of SOURCE is to send multicast traffic to listener. 16 # | LISTENER netns | 76 readonly LISTENER=$(mktemp -u listener-XXXXXXXX) 100 ip netns add "${LISTENER}" || exit_cleanup 101 ip netns add "${GATEWAY}" || exit_cleanup "${LISTENER}" 102 ip netns add "${RELAY}" || exit_cleanup "${LISTENER}" "${GATEWAY}" 103 ip netns add "${SOURCE}" || exit_cleanup "${LISTENER}" "${GATEWAY}" \ 111 exit_cleanup "${LISTENER}" "${GATEWAY}" "${RELAY}" "${SOURCE}" [all …]
|
/linux-6.12.1/samples/seccomp/ |
D | user-trap.c | 109 struct seccomp_notif_resp *resp, int listener) in handle_req() argument 142 * ask the listener fd this as follows. in handle_req() 149 if (ioctl(listener, SECCOMP_IOCTL_NOTIF_ID_VALID, &req->id) < 0) { in handle_req() 207 int sk_pair[2], ret = 1, status, listener; in main() local 222 listener = user_trap_syscall(__NR_mount, in main() 224 if (listener < 0) { in main() 238 * Send the listener to the parent; also serves as in main() 241 if (send_fd(sk_pair[1], listener) < 0) in main() 243 close(listener); in main() 275 * Get the listener from the child. in main() [all …]
|
/linux-6.12.1/net/core/ |
D | request_sock.c | 55 * listener is closed before the child is accepted. 58 * (or aborted) and the child socket has been accepted (or listener closed). 67 * both its child socket through fastopen_rsk, and a listener socket through 69 * lock per listener "icsk->icsk_accept_queue.fastopenq->lock" is created. 70 * only in the rare case when both the listener and the child locks are held, 76 * from the listener. But first socket lock is difficult to use. It is not 80 * acquire a child's lock while holding listener's socket lock. A corner 85 * treq->tfo_listener is used by the listener so it is protected by the 104 /* If the listener has been closed don't bother with the in reqsk_fastopen_remove()
|
/linux-6.12.1/tools/perf/bench/ |
D | sched-seccomp-notify.c | 68 static void user_notification_sync_loop(int listener) in user_notification_sync_loop() argument 76 if (ioctl(listener, SECCOMP_IOCTL_NOTIF_RECV, &req)) in user_notification_sync_loop() 86 if (ioctl(listener, SECCOMP_IOCTL_NOTIF_SEND, &resp)) in user_notification_sync_loop() 99 int status, listener; in bench_sched_seccomp_notify() local 108 listener = user_notif_syscall(__NR_gettid, in bench_sched_seccomp_notify() 110 if (listener < 0) in bench_sched_seccomp_notify() 129 if (ioctl(listener, SECCOMP_IOCTL_NOTIF_SET_FLAGS, in bench_sched_seccomp_notify() 134 user_notification_sync_loop(listener); in bench_sched_seccomp_notify()
|
/linux-6.12.1/tools/testing/selftests/seccomp/ |
D | seccomp_bpf.c | 3366 int status, listener; in TEST() local 3387 /* Check that we get -ENOSYS with no listener attached */ in TEST() 3406 listener = user_notif_syscall(__NR_getppid, in TEST() 3408 ASSERT_GE(listener, 0); in TEST() 3410 /* Installing a second listener in the chain should EBUSY */ in TEST() 3424 pollfd.fd = listener; in TEST() 3434 ret = ioctl(listener, SECCOMP_IOCTL_NOTIF_RECV, &req); in TEST() 3440 EXPECT_EQ(ioctl(listener, SECCOMP_IOCTL_NOTIF_RECV, &req), 0); in TEST() 3443 pollfd.fd = listener; in TEST() 3457 EXPECT_EQ(ioctl(listener, SECCOMP_IOCTL_NOTIF_SEND, &resp), -1); in TEST() [all …]
|
/linux-6.12.1/include/net/netfilter/ |
D | nf_tproxy.h | 47 * redirect the new connection to the proxy if there's a listener 52 * Returns the listener socket if there's one, the TIME_WAIT socket if 53 * no such listener is found, or NULL if the TCP header is incomplete. 73 * does not really matter if the listener is bound to an interface 106 * redirect the new connection to the proxy if there's a listener 111 * Returns the listener socket if there's one, the TIME_WAIT socket if 112 * no such listener is found, or NULL if the TCP header is incomplete.
|
/linux-6.12.1/drivers/uio/ |
D | uio.c | 479 struct uio_listener *listener; in uio_open() local 497 listener = kmalloc(sizeof(*listener), GFP_KERNEL); in uio_open() 498 if (!listener) { in uio_open() 503 listener->dev = idev; in uio_open() 504 listener->event_count = atomic_read(&idev->event); in uio_open() 505 filep->private_data = listener; in uio_open() 523 kfree(listener); in uio_open() 537 struct uio_listener *listener = filep->private_data; in uio_fasync() local 538 struct uio_device *idev = listener->dev; in uio_fasync() 546 struct uio_listener *listener = filep->private_data; in uio_release() local [all …]
|
/linux-6.12.1/drivers/infiniband/hw/qedr/ |
D | qedr_iw_cm.c | 106 struct qedr_iw_listener *listener = (struct qedr_iw_listener *)context; in qedr_iw_mpa_request() local 107 struct qedr_dev *dev = listener->dev; in qedr_iw_mpa_request() 135 listener->cm_id->event_handler(listener->cm_id, &event); in qedr_iw_mpa_request() 661 struct qedr_iw_listener *listener; in qedr_iw_create_listen() local 673 "Create Listener address: %pISpc\n", &cm_id->local_addr); in qedr_iw_create_listen() 675 listener = kzalloc(sizeof(*listener), GFP_KERNEL); in qedr_iw_create_listen() 676 if (!listener) in qedr_iw_create_listen() 679 listener->dev = dev; in qedr_iw_create_listen() 681 listener->cm_id = cm_id; in qedr_iw_create_listen() 682 listener->backlog = backlog; in qedr_iw_create_listen() [all …]
|
/linux-6.12.1/net/vmw_vsock/ |
D | af_vsock.c | 30 * - "Server" sockets are referred to as listener sockets throughout this 34 * sockets are placed on the pending connection list of the listener socket. 35 * When future packets are received for the address the listener socket is 39 * from the listener socket's pending list and enqueued in the listener 41 * from the listener socket's accept queue. If the socket cannot be accepted 58 * lock_sock(listener); 72 * and the listener socket's pending list and connected queue) ensures a 365 void vsock_add_pending(struct sock *listener, struct sock *pending) in vsock_add_pending() argument 370 vlistener = vsock_sk(listener); in vsock_add_pending() 374 sock_hold(listener); in vsock_add_pending() [all …]
|
/linux-6.12.1/tools/testing/selftests/net/mptcp/ |
D | userspace_pm.sh | 537 # Attempt to add a listener at 10.0.2.2:<subflow-port> 555 # Delete the listener from the client ns, if one was created 574 # Attempt to add a listener at dead:beef:2::2:<subflow-port> 594 # Delete the listener from the client ns, if one was created 613 # Attempt to add a listener at 10.0.2.2:<new-port> 633 # Delete the listener from the client ns, if one was created 653 # Attempt to add a listener at 10.0.2.1:<subflow-port> 671 # Delete the listener from the server ns, if one was created 689 # Attempt to add a listener at dead:beef:2::1:<subflow-port> 710 # Delete the listener from the server ns, if one was created [all …]
|
/linux-6.12.1/drivers/md/dm-vdo/ |
D | vdo.h | 37 * typedef vdo_read_only_notification_fn - A function to notify a listener that the VDO has gone 39 * @listener: The object to notify. 42 typedef void (*vdo_read_only_notification_fn)(void *listener, struct vdo_completion *parent); 48 /* The listener */ 49 void *listener; member 50 /* The method to call to notify the listener */ 52 /* A pointer to the next listener */ 329 int vdo_register_read_only_listener(struct vdo *vdo, void *listener,
|
D | vdo.c | 650 struct read_only_listener *listener, *next; in free_listeners() local 652 for (listener = vdo_forget(thread->listeners); listener != NULL; listener = next) { in free_listeners() 653 next = vdo_forget(listener->next); in free_listeners() 654 vdo_free(listener); in free_listeners() 984 * vdo_register_read_only_listener() - Register a listener to be notified when the VDO goes 987 * @listener: The object to notify. 993 int vdo_register_read_only_listener(struct vdo *vdo, void *listener, in vdo_register_read_only_listener() argument 1002 "read only listener not registered on dedupe thread"); in vdo_register_read_only_listener() 1012 .listener = listener, in vdo_register_read_only_listener() 1023 * @listener: The vdo. [all …]
|
/linux-6.12.1/Documentation/accounting/ |
D | taskstats.rst | 35 To obtain statistics for tasks which are exiting, the userspace listener 38 registered listener. Using cpumasks allows the data received by one listener 163 When the rate of task exits becomes large, a listener may not be able to keep 174 each listener. In the extreme case, there could be one listener for each cpu. 175 Users may also consider setting the cpu affinity of the listener to the subset
|
/linux-6.12.1/drivers/net/ethernet/mellanox/mlxsw/ |
D | core.c | 2491 * listener for it. in mlxsw_core_event_listener_register() 2523 const struct mlxsw_listener *listener, in mlxsw_core_listener_register() argument 2526 if (listener->is_event) { in mlxsw_core_listener_register() 2529 &listener->event_listener, in mlxsw_core_listener_register() 2533 &listener->rx_listener, in mlxsw_core_listener_register() 2539 const struct mlxsw_listener *listener, in mlxsw_core_listener_unregister() argument 2542 if (listener->is_event) in mlxsw_core_listener_unregister() 2544 &listener->event_listener); in mlxsw_core_listener_unregister() 2547 &listener->rx_listener); in mlxsw_core_listener_unregister() 2551 const struct mlxsw_listener *listener, void *priv) in mlxsw_core_trap_register() argument [all …]
|
/linux-6.12.1/drivers/net/ethernet/qlogic/qed/ |
D | qed_iwarp.c | 1633 struct qed_iwarp_listener *listener = NULL; in qed_iwarp_get_listener() local 1637 list_for_each_entry(listener, in qed_iwarp_get_listener() 1640 if (listener->port == cm_info->local_port) { in qed_iwarp_get_listener() 1641 if (!memcmp(listener->ip_addr, in qed_iwarp_get_listener() 1647 if (!memcmp(listener->ip_addr, in qed_iwarp_get_listener() 1650 (listener->vlan == cm_info->vlan)) { in qed_iwarp_get_listener() 1658 DP_VERBOSE(p_hwfn, QED_MSG_RDMA, "listener found = %p\n", in qed_iwarp_get_listener() 1659 listener); in qed_iwarp_get_listener() 1660 return listener; in qed_iwarp_get_listener() 1663 DP_VERBOSE(p_hwfn, QED_MSG_RDMA, "listener not found\n"); in qed_iwarp_get_listener() [all …]
|
/linux-6.12.1/include/net/ |
D | request_sock.h | 153 * For a TCP Fast Open listener - 155 * the listener and the child socket. 162 * a listener is stopped. But TFO related fields may continue to be 163 * accessed even after a listener is closed, until its sk_refcnt drops 166 * complexity that needs to be resolved. E.g., a listener can be disabled
|
/linux-6.12.1/net/rds/ |
D | rdma_transport.c | 40 /* Global IPv4 and IPv6 RDS RDMA listener cm_id */ 208 printk(KERN_ERR "RDS/RDMA: failed to setup listener, " in rds_rdma_listen_init_common() 219 printk(KERN_ERR "RDS/RDMA: failed to setup listener, " in rds_rdma_listen_init_common() 226 printk(KERN_ERR "RDS/RDMA: failed to setup listener, " in rds_rdma_listen_init_common() 275 rdsdebug("Cannot set up IPv6 RDMA listener\n"); in rds_rdma_listen_init()
|
/linux-6.12.1/net/mptcp/ |
D | subflow.c | 151 struct mptcp_subflow_context *listener = mptcp_subflow_ctx(sk_listener); in subflow_check_req() local 156 pr_debug("subflow_req=%p, listener=%p\n", subflow_req, listener); in subflow_check_req() 175 if (unlikely(listener->pm_listener)) in subflow_check_req() 184 } else if (unlikely(listener->pm_listener)) { in subflow_check_req() 188 if (opt_mp_capable && listener->request_mptcp) { in subflow_check_req() 219 } else if (opt_mp_join && listener->request_mptcp) { in subflow_check_req() 268 struct mptcp_subflow_context *listener = mptcp_subflow_ctx(sk_listener); in mptcp_subflow_init_cookie_req() local 282 if (opt_mp_capable && listener->request_mptcp) { in mptcp_subflow_init_cookie_req() 293 } else if (opt_mp_join && listener->request_mptcp) { in mptcp_subflow_init_cookie_req() 817 struct mptcp_subflow_context *listener = mptcp_subflow_ctx(sk); in subflow_syn_recv_sock() local [all …]
|
/linux-6.12.1/net/unix/ |
D | garbage.c | 107 * the listener indirectly holds the fd's refcnt. in unix_edge_successor() 109 if (edge->successor->listener) in unix_edge_successor() 110 return unix_sk(edge->successor->listener)->vertex; in unix_edge_successor() 261 receiver->listener = NULL; in unix_update_edges() 264 unix_update_graph(unix_sk(receiver->listener)->vertex); in unix_update_edges() 265 receiver->listener = NULL; in unix_update_edges() 384 /* Self-reference or a embryo-listener circle ? */ in unix_scc_cyclic()
|
/linux-6.12.1/Documentation/netlink/specs/ |
D | mptcp_pm.yaml | 74 name: listener-created 78 A new PM listener is created. 80 name: listener-closed 83 A PM listener is closed.
|
/linux-6.12.1/net/tipc/ |
D | topsrv.c | 64 * @listener: topsrv listener socket 75 struct socket *listener; member 464 if (!srv->listener) { in tipc_topsrv_accept() 468 lsock = srv->listener; in tipc_topsrv_accept() 522 srv->listener = lsock; in tipc_topsrv_create_listener() 699 struct socket *lsock = srv->listener; in tipc_topsrv_stop() 714 srv->listener = NULL; in tipc_topsrv_stop()
|
/linux-6.12.1/arch/m68k/mac/ |
D | iop.c | 43 * of device names to the listener functions ala the interrupt 142 struct listener { struct 162 static struct listener iop_listeners[NUM_IOPS][NUM_IOP_CHAN]; argument 303 * Register or unregister a listener for a specific IOP and channel 305 * If the handler pointer is NULL the current listener (if any) is 306 * unregistered. Otherwise the new listener is registered provided 307 * there is no existing listener registered. 431 /* If there is a listener, call it now. Otherwise complete */ in iop_handle_recv()
|