Home
last modified time | relevance | path

Searched refs:dst_node (Results 1 – 9 of 9) 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()
151 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()
944 * @dst_node: destination node
947 * interconnect providers and the @dst_node might not exist (if the
948 * provider driver has not probed yet). So just create the @dst_node
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()
[all...]
/linux/fs/hfs/
H A Dbnode.c198 void hfs_bnode_copy(struct hfs_bnode *dst_node, int 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()
/linux/drivers/accel/ivpu/
H A Divpu_ipc.h33 * @dst_node: The Node ID of the intended receiver.
41 u8 dst_node; member
H A Divpu_ipc.c31 "%s: vpu:0x%x (data_addr:0x%08x, data_size:0x%x, channel:0x%x, src_node:0x%x, dst_node:0x%x, status:0x%x)", in ivpu_ipc_msg_dump()
33 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/fs/hfsplus/
H A Dbnode.c211 void hfs_bnode_copy(struct hfs_bnode *dst_node, int dst, in hfs_bnode_copy() argument
222 len = check_and_correct_requested_length(dst_node, dst, len); in hfs_bnode_copy()
225 dst += dst_node->page_offset; in hfs_bnode_copy()
228 dst_page = dst_node->page + (dst >> PAGE_SHIFT); in hfs_bnode_copy()
H A Dhfsplus_fs.h405 void hfs_bnode_copy(struct hfs_bnode *dst_node, int dst,
/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.c1228 struct io_rsrc_node *dst_node, *src_node; in io_clone_buffers() local
1232 dst_node = NULL; in io_clone_buffers()
1234 dst_node = io_rsrc_node_alloc(ctx, IORING_RSRC_BUFFER); in io_clone_buffers()
1235 if (!dst_node) { in io_clone_buffers()
1241 dst_node->buf = src_node->buf; in io_clone_buffers()
1243 data.nodes[off++] = dst_node; in io_clone_buffers()