Home
last modified time | relevance | path

Searched full:node (Results 1 – 25 of 4629) sorted by relevance

12345678910>>...186

/linux/drivers/scsi/elx/libefc/
H A Defc_node.c14 struct efc_node *node = rnode->node; in efc_remote_node_cb() local
18 efc_node_post_event(node, event, NULL); in efc_remote_node_cb()
27 /* Find an FC node structure given the FC port ID */ in efc_node_find()
34 struct efc_node *node = container_of(arg, struct efc_node, ref); in _efc_node_free() local
35 struct efc *efc = node->efc; in _efc_node_free()
38 dma = &node->sparm_dma_buf; in _efc_node_free()
41 mempool_free(node, efc->node_pool); in _efc_node_free()
48 struct efc_node *node = NULL; in efc_node_alloc() local
53 efc_log_debug(efc, "node allocation when shutting down %06x", in efc_node_alloc()
58 node = mempool_alloc(efc->node_pool, GFP_ATOMIC); in efc_node_alloc()
[all …]
H A Defc_device.c8 * device_sm Node State Machine: Remote Device States
16 efc_d_send_prli_rsp(struct efc_node *node, u16 ox_id) in efc_d_send_prli_rsp() argument
19 struct efc *efc = node->efc; in efc_d_send_prli_rsp()
21 node->ls_acc_oxid = ox_id; in efc_d_send_prli_rsp()
22 node->send_ls_acc = EFC_NODE_SEND_LS_ACC_PRLI; in efc_d_send_prli_rsp()
29 if (node->init) { in efc_d_send_prli_rsp()
31 node->display_name, node->wwpn, node->wwnn); in efc_d_send_prli_rsp()
32 if (node->nport->enable_tgt) in efc_d_send_prli_rsp()
33 rc = efc->tt.scsi_new_node(efc, node); in efc_d_send_prli_rsp()
37 efc_node_post_event(node, EFC_EVT_NODE_SESS_REG_FAIL, NULL); in efc_d_send_prli_rsp()
[all …]
H A Defc_fabric.c8 * This file implements remote node state machines for:
16 * fabric_sm Node State Machine: Fabric States
17 * ns_sm Node State Machine: Name/Directory Services States
18 * p2p_sm Node State Machine: Point-to-Point Node States
24 efc_fabric_initiate_shutdown(struct efc_node *node) in efc_fabric_initiate_shutdown() argument
26 struct efc *efc = node->efc; in efc_fabric_initiate_shutdown()
28 node->els_io_enabled = false; in efc_fabric_initiate_shutdown()
30 if (node->attached) { in efc_fabric_initiate_shutdown()
33 /* issue hw node free; don't care if succeeds right away in efc_fabric_initiate_shutdown()
34 * or sometime later, will check node->attached later in in efc_fabric_initiate_shutdown()
[all …]
H A Defc_els.c22 node->display_name, __func__); \
26 efc_log_err((struct efc *)els->node->efc,\
28 els->node->display_name,\
35 efc_els_io_alloc(struct efc_node *node, u32 reqlen) in efc_els_io_alloc() argument
37 return efc_els_io_alloc_size(node, reqlen, EFC_ELS_RSP_LEN); in efc_els_io_alloc()
41 efc_els_io_alloc_size(struct efc_node *node, u32 reqlen, u32 rsplen) in efc_els_io_alloc_size() argument
47 efc = node->efc; in efc_els_io_alloc_size()
49 if (!node->els_io_enabled) { in efc_els_io_alloc_size()
65 els->node = node; in efc_els_io_alloc_size()
92 spin_lock_irqsave(&node->els_ios_lock, flags); in efc_els_io_alloc_size()
[all …]
/linux/scripts/gdb/linux/
H A Drbtree.py13 def inorder(node): argument
14 if node:
15 yield from inorder(node['rb_left'])
16 yield node
17 yield from inorder(node['rb_right'])
22 for node in rb_inorder_for_each(root):
23 yield utils.container_of(node, gdbtype, member)
27 node = root.address.cast(rb_root_type.get_type().pointer())
31 node = root['rb_node']
32 if node == 0:
[all …]
/linux/fs/dlm/
H A Dmidcomms.c29 * Due the fact that dlm has pre-configured node addresses on every side
35 * application layer. The version field of every node will be set on these RCOM
36 * messages as soon as they arrived and the node isn't yet part of the nodes
47 * compatibility. A node cannot send anything to another node when a DLM_FIN
51 * manager removed the node from internal lists, at this point DLM does not
52 * send any message to the other node. There exists two cases:
160 * We could send a fence signal for a specific node to the cluster
185 /* counts how many lockspaces are using this node
187 * node want
200 struct midcomms_node *node; global() member
254 dlm_midcomms_state(struct midcomms_node * node) dlm_midcomms_state() argument
259 dlm_midcomms_flags(struct midcomms_node * node) dlm_midcomms_flags() argument
264 dlm_midcomms_send_queue_cnt(struct midcomms_node * node) dlm_midcomms_send_queue_cnt() argument
269 dlm_midcomms_version(struct midcomms_node * node) dlm_midcomms_version() argument
276 struct midcomms_node *node; __find_node() local
294 dlm_mhandle_delete(struct midcomms_node * node,struct dlm_mhandle * mh) dlm_mhandle_delete() argument
302 dlm_send_queue_flush(struct midcomms_node * node) dlm_send_queue_flush() argument
317 midcomms_node_reset(struct midcomms_node * node) midcomms_node_reset() argument
340 struct midcomms_node *node; dlm_midcomms_addr() local
400 dlm_send_ack_threshold(struct midcomms_node * node,uint32_t threshold) dlm_send_ack_threshold() argument
422 dlm_send_fin(struct midcomms_node * node,void (* ack_rcv)(struct midcomms_node * node)) dlm_send_fin() argument
423 dlm_send_fin(struct midcomms_node * node,void (* ack_rcv)(struct midcomms_node * node)) dlm_send_fin() argument
450 dlm_receive_ack(struct midcomms_node * node,uint32_t seq) dlm_receive_ack() argument
478 dlm_pas_fin_ack_rcv(struct midcomms_node * node) dlm_pas_fin_ack_rcv() argument
519 dlm_midcomms_receive_buffer(const union dlm_packet * p,struct midcomms_node * node,uint32_t seq) dlm_midcomms_receive_buffer() argument
660 struct midcomms_node *node; dlm_midcomms_receive_buffer_3_2() local
788 struct midcomms_node *node; dlm_midcomms_receive_buffer_3_1() local
920 struct midcomms_node *node; dlm_midcomms_unack_msg_resend() local
1005 struct midcomms_node *node; dlm_midcomms_get_mhandle() local
1154 struct midcomms_node *node = container_of(rcu, struct midcomms_node, rcu); midcomms_node_release() local
1163 struct midcomms_node *node; dlm_midcomms_exit() local
1183 dlm_act_fin_ack_rcv(struct midcomms_node * node) dlm_act_fin_ack_rcv() argument
1216 struct midcomms_node *node; dlm_midcomms_add_member() local
1261 struct midcomms_node *node; dlm_midcomms_remove_member() local
1323 struct midcomms_node *node; dlm_midcomms_version_wait() local
1342 midcomms_shutdown(struct midcomms_node * node) midcomms_shutdown() argument
1393 struct midcomms_node *node; dlm_midcomms_shutdown() local
1417 struct midcomms_node *node; dlm_midcomms_close() local
1465 struct midcomms_node *node; global() member
1490 dlm_midcomms_rawmsg_send(struct midcomms_node * node,void * buf,int buflen) dlm_midcomms_rawmsg_send() argument
[all...]
/linux/drivers/net/ethernet/marvell/octeontx2/nic/
H A Dqos.c44 static void otx2_qos_get_regaddr(struct otx2_qos_node *node, in otx2_qos_get_regaddr() argument
48 if (node->level == NIX_TXSCH_LVL_SMQ) { in otx2_qos_get_regaddr()
49 cfg->reg[index++] = NIX_AF_MDQX_PARENT(node->schq); in otx2_qos_get_regaddr()
50 cfg->reg[index++] = NIX_AF_MDQX_SCHEDULE(node->schq); in otx2_qos_get_regaddr()
51 cfg->reg[index++] = NIX_AF_MDQX_PIR(node->schq); in otx2_qos_get_regaddr()
52 cfg->reg[index] = NIX_AF_MDQX_CIR(node->schq); in otx2_qos_get_regaddr()
53 } else if (node->level == NIX_TXSCH_LVL_TL4) { in otx2_qos_get_regaddr()
54 cfg->reg[index++] = NIX_AF_TL4X_PARENT(node->schq); in otx2_qos_get_regaddr()
55 cfg->reg[index++] = NIX_AF_TL4X_SCHEDULE(node->schq); in otx2_qos_get_regaddr()
56 cfg->reg[index++] = NIX_AF_TL4X_PIR(node->schq); in otx2_qos_get_regaddr()
[all …]
/linux/lib/
H A Dbootconfig.c42 * xbc_parse() parses the text to build a simple tree. Each tree node is
43 * simply a key word or a value. A key node may have a next key node or/and
44 * a child node (both key and value). A value node may have a next value
45 * node (for array).
115 * xbc_root_node() - Get the root node of extended boot config
117 * Return the address of root node of extended boot config. If the
129 * xbc_node_index() - Get the index of XBC node
130 * @node
134 xbc_node_index(struct xbc_node * node) xbc_node_index() argument
146 xbc_node_get_parent(struct xbc_node * node) xbc_node_get_parent() argument
158 xbc_node_get_child(struct xbc_node * node) xbc_node_get_child() argument
172 xbc_node_get_next(struct xbc_node * node) xbc_node_get_next() argument
184 xbc_node_get_data(struct xbc_node * node) xbc_node_get_data() argument
195 xbc_node_match_prefix(struct xbc_node * node,const char ** prefix) xbc_node_match_prefix() argument
225 struct xbc_node *node; xbc_node_find_subkey() local
263 struct xbc_node *node = xbc_node_find_subkey(parent, key); xbc_node_find_value() local
295 xbc_node_compose_key_after(struct xbc_node * root,struct xbc_node * node,char * buf,size_t size) xbc_node_compose_key_after() argument
344 xbc_node_find_next_leaf(struct xbc_node * root,struct xbc_node * node) xbc_node_find_next_leaf() argument
413 xbc_init_node(struct xbc_node * node,char * data,uint16_t flag) xbc_init_node() argument
429 struct xbc_node *node; xbc_add_node() local
442 xbc_last_sibling(struct xbc_node * node) xbc_last_sibling() argument
450 xbc_last_child(struct xbc_node * node) xbc_last_child() argument
460 struct xbc_node *sib, *node = xbc_add_node(data, flag); __xbc_add_sibling() local
498 struct xbc_node *node = xbc_add_sibling(data, flag); xbc_add_child() local
613 struct xbc_node *node; xbc_parse_array() local
643 find_match_node(struct xbc_node * node,char * k) find_match_node() argument
655 struct xbc_node *node, *child; __xbc_add_key() local
[all...]
H A Dradix-tree.c33 * Radix tree node cache.
45 * of RADIX_TREE_MAX_PATH size to be created, with only the root node shared.
100 static inline void tag_set(struct radix_tree_node *node, unsigned int tag, in tag_set() argument
103 __set_bit(offset, node->tags[tag]); in tag_set()
106 static inline void tag_clear(struct radix_tree_node *node, unsigned int tag, in tag_clear() argument
109 __clear_bit(offset, node->tags[tag]); in tag_clear()
112 static inline int tag_get(const struct radix_tree_node *node, unsigned int tag, in tag_get() argument
115 return test_bit(offset, node->tags[tag]); in tag_get()
149 * Returns 1 if any slot in the node has this tag set.
152 static inline int any_tag_set(const struct radix_tree_node *node, in any_tag_set() argument
[all …]
H A Dbtree.c16 * well is that access to a random tree node is much faster than a large number
17 * of operations within each node.
35 * values are to the right, not to the left. All used slots within a node
94 unsigned long *node; in btree_node_alloc() local
96 node = mempool_alloc(head->mempool, gfp); in btree_node_alloc()
97 if (likely(node)) in btree_node_alloc()
98 memset(node, 0, NODESIZE); in btree_node_alloc()
99 return node; in btree_node_alloc()
147 static unsigned long *bkey(struct btree_geo *geo, unsigned long *node, int n) in bkey() argument
149 return &node[n * geo->keylen]; in bkey()
[all …]
/linux/tools/net/sunrpc/xdrgen/generators/
H A Dunion.py15 def emit_union_declaration(environment: Environment, node: _XdrUnion) -> None:
17 if node.name in public_apis:
19 print(template.render(name=node.name))
23 environment: Environment, node: _XdrDeclaration
26 assert isinstance(node, _XdrBasic)
30 name=node.name,
31 type=node.spec.type_name,
32 classifier=node.spec.c_classifier,
38 environment: Environment, node: _XdrDeclaration
41 if isinstance(node
[all...]
/linux/drivers/net/ethernet/mellanox/mlx5/core/en/
H A Dhtb.c36 struct mlx5e_qos_node *node = NULL; in mlx5e_htb_enumerate_leaves() local
39 hash_for_each(htb->qos_tc2node, bkt, node, hnode) { in mlx5e_htb_enumerate_leaves()
40 if (node->qid == MLX5E_QOS_QID_INNER) in mlx5e_htb_enumerate_leaves()
42 err = callback(data, node->qid, node->hw_id); in mlx5e_htb_enumerate_leaves()
73 struct mlx5e_qos_node *node; in mlx5e_htb_node_create_leaf() local
75 node = kzalloc_obj(*node); in mlx5e_htb_node_create_leaf()
76 if (!node) in mlx5e_htb_node_create_leaf()
79 node->parent = parent; in mlx5e_htb_node_create_leaf()
81 node->qid = qid; in mlx5e_htb_node_create_leaf()
84 node->classid = classid; in mlx5e_htb_node_create_leaf()
[all …]
/linux/kernel/gcov/
H A Dfs.c34 * @list: list head for child node list
37 * @parent: parent node
251 * Return a profiling data set associated with the given node. This is
255 static struct gcov_info *get_node_info(struct gcov_node *node) in get_node_info() argument
257 if (node->num_loaded > 0) in get_node_info()
258 return node->loaded_info[0]; in get_node_info()
260 return node->unloaded_info; in get_node_info()
265 * all profiling data associated with the given node.
267 static struct gcov_info *get_accumulated_info(struct gcov_node *node) in get_accumulated_info() argument
272 if (node->unloaded_info) in get_accumulated_info()
[all …]
/linux/drivers/net/ethernet/mellanox/mlx5/core/esw/
H A Dqos.c87 /* A computed value indicating relative min_rate between node's children. */
89 /* The parent node in the rate hierarchy. */
91 /* Entry in the parent node's children list. */
93 /* The type of this node in the rate hierarchy. */
95 /* The eswitch this node belongs to. */
97 /* The children nodes of this node, empty list for leaf nodes. */
99 /* Valid only if this node is associated with a vport. */
101 /* Level in the hierarchy. The root node level is 1. */
103 /* Valid only when this node represents a traffic class. */
105 /* Valid only for a TC arbiter node or vport TC arbiter. */
[all …]
/linux/tools/include/linux/
H A Drbtree.h42 #define RB_EMPTY_NODE(node) \ argument
43 ((node)->__rb_parent_color == (unsigned long)(node))
44 #define RB_CLEAR_NODE(node) \ argument
45 ((node)->__rb_parent_color = (unsigned long)(node))
62 /* Fast replacement of a single node without remove/rebalance/add/rebalance */
66 static inline void rb_link_node(struct rb_node *node, struct rb_node *parent, in rb_link_node() argument
69 node->__rb_parent_color = (unsigned long)parent; in rb_link_node()
70 node->rb_left = node->rb_right = NULL; in rb_link_node()
72 *rb_link = node; in rb_link_node()
112 * We do not cache the rightmost node based on footprint
[all …]
/linux/rust/syn/gen/
H A Dvisit_mut.rs958 pub fn visit_abi_mut<V>(v: &mut V, node: &mut crate::Abi) in visit_abi_mut()
962 skip!(node.extern_token); in visit_abi_mut()
963 if let Some(it) = &mut node.name { in visit_abi_mut()
971 node: &mut crate::AngleBracketedGenericArguments, in visit_angle_bracketed_generic_arguments_mut()
976 skip!(node.colon2_token); in visit_angle_bracketed_generic_arguments_mut()
977 skip!(node.lt_token); in visit_angle_bracketed_generic_arguments_mut()
978 for mut el in Punctuated::pairs_mut(&mut node.args) { in visit_angle_bracketed_generic_arguments_mut()
982 skip!(node.gt_token); in visit_angle_bracketed_generic_arguments_mut()
986 pub fn visit_arm_mut<V>(v: &mut V, node: &mut crate::Arm) in visit_arm_mut()
990 v.visit_attributes_mut(&mut node.attrs); in visit_arm_mut()
[all …]
H A Dvisit.rs950 pub fn visit_abi<'ast, V>(v: &mut V, node: &'ast crate::Abi) in visit_abi()
954 skip!(node.extern_token); in visit_abi()
955 if let Some(it) = &node.name { in visit_abi()
963 node: &'ast crate::AngleBracketedGenericArguments, in visit_angle_bracketed_generic_arguments()
968 skip!(node.colon2_token); in visit_angle_bracketed_generic_arguments()
969 skip!(node.lt_token); in visit_angle_bracketed_generic_arguments()
970 for el in Punctuated::pairs(&node.args) { in visit_angle_bracketed_generic_arguments()
974 skip!(node.gt_token); in visit_angle_bracketed_generic_arguments()
978 pub fn visit_arm<'ast, V>(v: &mut V, node: &'ast crate::Arm) in visit_arm()
982 for it in &node.attrs { in visit_arm()
[all …]
H A Dfold.rs1030 pub fn fold_abi<F>(f: &mut F, node: crate::Abi) -> crate::Abi in fold_abi()
1035 extern_token: node.extern_token, in fold_abi()
1036 name: (node.name).map(|it| f.fold_lit_str(it)), in fold_abi()
1043 node: crate::AngleBracketedGenericArguments, in fold_angle_bracketed_generic_arguments()
1049 colon2_token: node.colon2_token, in fold_angle_bracketed_generic_arguments()
1050 lt_token: node.lt_token, in fold_angle_bracketed_generic_arguments()
1051 args: crate::punctuated::fold(node.args, f, F::fold_generic_argument), in fold_angle_bracketed_generic_arguments()
1052 gt_token: node.gt_token, in fold_angle_bracketed_generic_arguments()
1057 pub fn fold_arm<F>(f: &mut F, node: crate::Arm) -> crate::Arm in fold_arm()
1062 attrs: f.fold_attributes(node.attrs), in fold_arm()
[all …]
/linux/drivers/gpu/drm/i915/gt/
H A Dintel_gt_buffer_pool.c31 static void node_free(struct intel_gt_buffer_pool_node *node) in node_free() argument
33 i915_gem_object_put(node->obj); in node_free()
34 i915_active_fini(&node->active); in node_free()
35 kfree_rcu(node, rcu); in node_free()
40 struct intel_gt_buffer_pool_node *node, *stale = NULL; in pool_free_older_than() local
58 node = list_entry(pos, typeof(*node), link); in pool_free_older_than()
60 age = READ_ONCE(node->age); in pool_free_older_than()
64 /* Check we are the first to claim this node */ in pool_free_older_than()
65 if (!xchg(&node->age, 0)) in pool_free_older_than()
68 node->free = stale; in pool_free_older_than()
[all …]
/linux/kernel/bpf/
H A Dlpm_trie.c21 /* Intermediate node */
51 * lead to more nodes containing more specific matches. Each node also stores
61 * As the trie is empty initially, the new node (1) will be places as root
62 * node, denoted as (R) in the example below. As there are no other node, both
72 * Next, let's add a new node (2) matching 192.168.0.0/24. As there is already
73 * a node with the same data and a smaller prefix (ie, a less specific one),
74 * node (2) will become a child of (1). In child index depends on the next bit
92 * The child[1] slot of (1) could be filled with another node which has bit #17
110 * Let's add another node (
169 __longest_prefix_match(const struct lpm_trie * trie,const struct lpm_trie_node * node,const struct bpf_lpm_trie_key_u8 * key) __longest_prefix_match() argument
231 longest_prefix_match(const struct lpm_trie * trie,const struct lpm_trie_node * node,const struct bpf_lpm_trie_key_u8 * key) longest_prefix_match() argument
241 struct lpm_trie_node *node, *found = NULL; trie_lookup_elem() local
295 struct lpm_trie_node *node; lpm_trie_node_alloc() local
326 struct lpm_trie_node *node, *im_node, *new_node; trie_update_elem() local
463 struct lpm_trie_node *node, *parent; trie_delete_elem() local
617 struct lpm_trie_node *node; trie_free() local
658 struct lpm_trie_node *node, *next_node = NULL, *parent, *search_root; trie_get_next_key() local
[all...]
/linux/net/hsr/
H A Dhsr_framereg.c54 struct hsr_node *node; in find_node_by_addr_A() local
56 list_for_each_entry_rcu(node, node_db, mac_list) { in find_node_by_addr_A()
57 if (ether_addr_equal(node->macaddress_A, addr)) in find_node_by_addr_A()
58 return node; in find_node_by_addr_A()
64 /* Check if node for a given MAC address is already present in data base
110 static void hsr_free_node(struct hsr_node *node) in hsr_free_node() argument
112 xa_destroy(&node->seq_blocks); in hsr_free_node()
113 kfree(node->block_buf); in hsr_free_node()
114 kfree(node); in hsr_free_node()
119 struct hsr_node *node in hsr_free_node_rcu() local
160 struct hsr_node *node; hsr_del_nodes() local
170 prp_handle_san_frame(bool san,enum hsr_port_type port,struct hsr_node * node) prp_handle_san_frame() argument
189 struct hsr_node *new_node, *node = NULL; hsr_add_node() local
243 prp_update_san_info(struct hsr_node * node,bool is_sup) prp_update_san_info() argument
259 struct hsr_node *node; hsr_get_node() local
315 hsr_forget_seq_block(struct hsr_node * node,struct hsr_seq_block * block) hsr_forget_seq_block() argument
330 hsr_get_seq_block(struct hsr_node * node,u16 block_idx) hsr_get_seq_block() argument
512 hsr_addr_subst_source(struct hsr_node * node,struct sk_buff * skb) hsr_addr_subst_source() argument
562 hsr_register_frame_in(struct hsr_node * node,struct hsr_port * port,u16 sequence_nr) hsr_register_frame_in() argument
590 struct hsr_node *node; hsr_check_duplicate() local
663 get_late_port(struct hsr_priv * hsr,struct hsr_node * node) get_late_port() argument
688 struct hsr_node *node; hsr_prune_nodes() local
757 struct hsr_node *node; hsr_prune_proxy_nodes() local
791 struct hsr_node *node; hsr_get_next_node() local
814 fill_last_seq_nrs(struct hsr_node * node,u16 * if1_seq,u16 * if2_seq) fill_last_seq_nrs() argument
852 struct hsr_node *node; hsr_get_node_data() local
[all...]
/linux/include/drm/
H A Ddrm_vma_manager.h72 struct drm_vma_offset_node *node, unsigned long pages);
74 struct drm_vma_offset_node *node);
76 int drm_vma_node_allow(struct drm_vma_offset_node *node, struct drm_file *tag);
77 int drm_vma_node_allow_once(struct drm_vma_offset_node *node, struct drm_file *tag);
78 void drm_vma_node_revoke(struct drm_vma_offset_node *node,
80 bool drm_vma_node_is_allowed(struct drm_vma_offset_node *node,
84 * drm_vma_offset_exact_lookup_locked() - Look up node by exact address
89 * Same as drm_vma_offset_lookup_locked() but does not allow any offset into the node.
93 * Node at exact start address @start.
100 struct drm_vma_offset_node *node; in drm_vma_offset_exact_lookup_locked() local
[all …]
/linux/arch/sparc/prom/
H A Dtree_32.c24 static phandle __prom_getchild(phandle node) in __prom_getchild() argument
30 cnode = prom_nodeops->no_child(node); in __prom_getchild()
37 /* Return the child of node 'node' or zero if no this node has no
40 phandle prom_getchild(phandle node) in prom_getchild() argument
44 if ((s32)node == -1) in prom_getchild()
47 cnode = __prom_getchild(node); in prom_getchild()
56 static phandle __prom_getsibling(phandle node) in __prom_getsibling() argument
62 cnode = prom_nodeops->no_nextnode(node); in __prom_getsibling()
69 /* Return the next sibling of node 'node' or zero if no more siblings
72 phandle prom_getsibling(phandle node) in prom_getsibling() argument
[all …]
/linux/drivers/base/test/
H A Dproperty-entry-test.c20 struct fwnode_handle *node; in pe_test_uints() local
27 node = fwnode_create_software_node(entries, NULL); in pe_test_uints()
28 KUNIT_ASSERT_NOT_ERR_OR_NULL(test, node); in pe_test_uints()
30 error = fwnode_property_count_u8(node, "prop-u8"); in pe_test_uints()
33 error = fwnode_property_read_u8(node, "prop-u8", &val_u8); in pe_test_uints()
37 error = fwnode_property_read_u8_array(node, "prop-u8", array_u8, 1); in pe_test_uints()
41 error = fwnode_property_read_u8_array(node, "prop-u8", array_u8, 2); in pe_test_uints()
44 error = fwnode_property_read_u8(node, "no-prop-u8", &val_u8); in pe_test_uints()
47 error = fwnode_property_read_u8_array(node, "no-prop-u8", array_u8, 1); in pe_test_uints()
50 error = fwnode_property_read_u16(node, "prop-u16", &val_u16); in pe_test_uints()
[all …]
/linux/drivers/interconnect/
H A Dcore.c49 seq_puts(s, " node tag avg peak\n"); in icc_summary_show()
171 struct icc_node *node = dst; in path_init() local
184 node->provider->users++; in path_init()
185 hlist_add_head(&path->reqs[i].req_node, &node->req_list); in path_init()
186 path->reqs[i].node = node; in path_init()
189 /* reference to previous node was saved during path traversal */ in path_init()
190 node = node->reverse; in path_init()
202 struct icc_node *n, *node in path_find() local
271 aggregate_requests(struct icc_node * node) aggregate_requests() argument
332 icc_std_aggregate(struct icc_node * node,u32 tag,u32 avg_bw,u32 peak_bw,u32 * agg_avg,u32 * agg_peak) icc_std_aggregate() argument
379 struct icc_node *node = ERR_PTR(-EPROBE_DEFER); of_icc_get_from_provider() local
696 struct icc_node *node; icc_set_bw() local
789 struct icc_node *node; icc_put() local
820 struct icc_node *node; icc_node_create_nolock() local
858 struct icc_node *node; icc_node_create_dyn() local
878 struct icc_node *node; icc_node_create() local
896 struct icc_node *node; icc_node_destroy() local
926 icc_node_set_name(struct icc_node * node,const struct icc_provider * provider,const char * name) icc_node_set_name() argument
1004 icc_link_create(struct icc_node * node,const int dst_id) icc_link_create() argument
1048 icc_node_add(struct icc_node * node,struct icc_provider * provider) icc_node_add() argument
1092 icc_node_del(struct icc_node * node) icc_node_del() argument
[all...]

12345678910>>...186