Home
last modified time | relevance | path

Searched refs:dst_node (Results 1 – 12 of 12) sorted by relevance

/linux/drivers/interconnect/
H A Ddebugfs-client.c27 static char *dst_node; variable
61 dst = rcu_dereference(dst_node); in icc_get_set()
154 dst_node = devm_kstrdup(&pdev->dev, "", GFP_KERNEL); in icc_debugfs_client_init()
155 if (!src_node || !dst_node) in icc_debugfs_client_init()
161 debugfs_create_str("dst_node", 0600, client_dir, &dst_node); in icc_debugfs_client_init()
H A Dcore.c604 struct icc_node *src_node, *dst_node; in icc_get() local
615 dst_node = node_find_by_name(dst); in icc_get()
616 if (!dst_node) { in icc_get()
621 path = path_find(dev, src_node, dst_node); in icc_get()
627 path->name = kasprintf(GFP_KERNEL, "%s-%s", src_node->name, dst_node->name); in icc_get()
954 int icc_link_nodes(struct icc_node *src_node, struct icc_node **dst_node) in icc_link_nodes() argument
964 if (!*dst_node) { in icc_link_nodes()
965 *dst_node = icc_node_create_nolock(ICC_ALLOC_DYN_ID); in icc_link_nodes()
967 if (IS_ERR(*dst_node)) { in icc_link_nodes()
968 ret = PTR_ERR(*dst_node); in icc_link_nodes()
[all …]
/linux/include/linux/
H A Dinterconnect-provider.h123 int icc_link_nodes(struct icc_node *src_node, struct icc_node **dst_node);
162 static inline int icc_link_nodes(struct icc_node *src_node, struct icc_node **dst_node) in icc_link_nodes() argument
/linux/fs/hfs/
H A Dbnode.c198 void hfs_bnode_copy(struct hfs_bnode *dst_node, u32 dst, in hfs_bnode_copy() argument
208 len = check_and_correct_requested_length(dst_node, dst, len); in hfs_bnode_copy()
211 dst += dst_node->page_offset; in hfs_bnode_copy()
213 dst_page = dst_node->page[0]; in hfs_bnode_copy()
H A Dbtree.h106 extern void hfs_bnode_copy(struct hfs_bnode *dst_node, u32 dst,
/linux/fs/hfsplus/
H A Dbnode.c170 void hfs_bnode_copy(struct hfs_bnode *dst_node, u32 dst, in hfs_bnode_copy() argument
181 len = check_and_correct_requested_length(dst_node, dst, len); in hfs_bnode_copy()
184 dst += dst_node->page_offset; in hfs_bnode_copy()
187 dst_page = dst_node->page + (dst >> PAGE_SHIFT); in hfs_bnode_copy()
H A Dhfsplus_fs.h374 void hfs_bnode_copy(struct hfs_bnode *dst_node, u32 dst,
/linux/drivers/accel/ivpu/
H A Divpu_ipc.h41 u8 dst_node; member
H A Divpu_ipc.c33 ipc_hdr->src_node, ipc_hdr->dst_node, ipc_hdr->status); in ivpu_ipc_msg_dump()
104 tx_buf->ipc.dst_node = 1; in ivpu_ipc_tx_prepare()
/linux/net/qrtr/
H A Daf_qrtr.c79 u32 dst_node; member
466 cb->dst_node = le32_to_cpu(v1->dst_node_id); in qrtr_endpoint_post()
481 cb->dst_node = le16_to_cpu(v2->dst_node_id); in qrtr_endpoint_post()
1001 struct sockaddr_qrtr local = { AF_QIPCRTR, cb->dst_node, cb->dst_port }; in qrtr_sendmsg()
1016 pkt->client.node = cpu_to_le32(cb->dst_node); in qrtr_send_resume_tx()
/linux/Documentation/driver-api/
H A Dinterconnect.rst127 echo ebi > dst_node
129 # Get path between src_node and dst_node. This is only
/linux/io_uring/
H A Drsrc.c1204 struct io_rsrc_node *dst_node, *src_node; in io_clone_buffers() local
1208 dst_node = NULL; in io_clone_buffers()
1210 dst_node = io_rsrc_node_alloc(ctx, IORING_RSRC_BUFFER); in io_clone_buffers()
1211 if (!dst_node) { in io_clone_buffers()
1217 dst_node->buf = src_node->buf; in io_clone_buffers()
1219 data.nodes[off++] = dst_node; in io_clone_buffers()