Home
last modified time | relevance | path

Searched refs:enode (Results 1 – 5 of 5) sorted by relevance

/linux/scripts/gdb/linux/
H A Dmapletree.py139 def mte_to_node(enode): argument
141 if enode.type == maple_enode_type.get_type().pointer():
142 indirect_ptr = enode.cast(ulong_type)
143 elif enode.type == ulong_type:
144 indirect_ptr = enode
147 … .format(mte_to_node.__name__, maple_enode_type.get_type().pointer(), enode.type))
151 def mte_dead_node(enode): argument
152 if enode.type != maple_enode_type.get_type().pointer():
154 … .format(mte_dead_node.__name__, maple_enode_type.get_type().pointer(), enode.type))
155 node = mte_to_node(enode)
/linux/kernel/trace/
H A Dtrace_boot.c463 struct xbc_node *enode) in trace_boot_init_one_event() argument
471 event = xbc_node_get_data(enode); in trace_boot_init_one_event()
474 if (trace_boot_add_kprobe_event(enode, event) < 0) in trace_boot_init_one_event()
477 if (trace_boot_add_synth_event(enode, event) < 0) in trace_boot_init_one_event()
487 p = xbc_node_find_value(enode, "filter", NULL); in trace_boot_init_one_event()
496 xbc_node_for_each_array_value(enode, "actions", anode, p) { in trace_boot_init_one_event()
502 anode = xbc_node_find_subkey(enode, "hist"); in trace_boot_init_one_event()
505 } else if (xbc_node_find_value(enode, "actions", NULL)) in trace_boot_init_one_event()
508 if (xbc_node_find_value(enode, "enable", NULL)) { in trace_boot_init_one_event()
520 struct xbc_node *gnode, *enode; in trace_boot_init_events() local
[all …]
/linux/lib/
H A Dmaple_tree.c466 enum maple_type mas_parent_type(struct ma_state *mas, struct maple_enode *enode) in mas_parent_type() argument
470 p_type = (unsigned long)mte_to_node(enode)->parent; in mas_parent_type()
497 void mas_set_parent(struct ma_state *mas, struct maple_enode *enode, in mas_set_parent() argument
523 mte_to_node(enode)->parent = ma_parent_ptr(val); in mas_set_parent()
533 unsigned int mte_parent_slot(const struct maple_enode *enode) in mte_parent_slot() argument
535 unsigned long val = (unsigned long)mte_to_node(enode)->parent; in mte_parent_slot()
554 struct maple_node *mte_parent(const struct maple_enode *enode) in mte_parent() argument
557 (mte_to_node(enode)->parent) & ~MAPLE_NODE_MASK); in mte_parent()
582 static __always_inline bool mte_dead_node(const struct maple_enode *enode) in mte_dead_node() argument
586 node = mte_to_node(enode); in mte_dead_node()
[all …]
/linux/drivers/scsi/qla2xxx/
H A Dqla_edif.h124 struct enode { struct
133 #define RX_ELS_SIZE (roundup(sizeof(struct enode) + ELS_MAX_PAYLOAD, SMP_CACHE_BYTES)) argument
H A Dqla_edif.c637 ql_dbg(ql_dbg_edif, vha, 0x911f, "%s enode already active\n", in qla_edif_app_start()
685 /* Call db stop and enode stop functions */ in qla_edif_app_stop()
688 qla_enode_stop(vha); /* stop enode */ in qla_edif_app_stop()
1844 qla_enode_free(scsi_qla_host_t *vha, struct enode *node) in qla_enode_free()
1851 * qla_enode_init - initialize enode structs & lock
1864 ql_dbg(ql_dbg_edif, vha, 0x09102, "%s enode still active\n", in qla_enode_init()
1878 * qla_enode_stop - stop and clear and enode data
1887 struct enode *node, *q; in qla_enode_stop()
1892 "%s enode not active\n", __func__); in qla_enode_stop()
1904 "%s freeing enode typ in qla_enode_stop()
[all...]