Lines Matching +full:- +full:group

1 /* SPDX-License-Identifier: GPL-2.0-only */
11 /* Group events */
14 TP_PROTO(struct tmigr_group *group),
16 TP_ARGS(group),
19 __field( void *, group )
25 __entry->group = group;
26 __entry->lvl = group->level;
27 __entry->numa_node = group->numa_node;
30 TP_printk("group=%p lvl=%d numa=%d",
31 __entry->group, __entry->lvl, __entry->numa_node)
50 __entry->child = child;
51 __entry->parent = child->parent;
52 __entry->lvl = child->parent->level;
53 __entry->numa_node = child->parent->numa_node;
54 __entry->num_children = child->parent->num_children;
55 __entry->groupmask = child->groupmask;
58 TP_printk("group=%p groupmask=%0x parent=%p lvl=%d numa=%d num_children=%d",
59 __entry->child, __entry->groupmask, __entry->parent,
60 __entry->lvl, __entry->numa_node, __entry->num_children)
79 __entry->parent = tmc->tmgroup;
80 __entry->cpu = tmc->cpuevt.cpu;
81 __entry->lvl = tmc->tmgroup->level;
82 __entry->numa_node = tmc->tmgroup->numa_node;
83 __entry->num_children = tmc->tmgroup->num_children;
84 __entry->groupmask = tmc->groupmask;
88 __entry->cpu, __entry->groupmask, __entry->parent,
89 __entry->lvl, __entry->numa_node, __entry->num_children)
94 TP_PROTO(struct tmigr_group *group, union tmigr_state state, u32 childmask),
96 TP_ARGS(group, state, childmask),
99 __field( void *, group )
109 __entry->group = group;
110 __entry->parent = group->parent;
111 __entry->lvl = group->level;
112 __entry->numa_node = group->numa_node;
113 __entry->childmask = childmask;
114 __entry->active = state.active;
115 __entry->migrator = state.migrator;
118 TP_printk("group=%p lvl=%d numa=%d active=%0x migrator=%0x "
120 __entry->group, __entry->lvl, __entry->numa_node,
121 __entry->active, __entry->migrator,
122 __entry->parent, __entry->childmask)
127 TP_PROTO(struct tmigr_group *group, union tmigr_state state, u32 childmask),
129 TP_ARGS(group, state, childmask)
134 TP_PROTO(struct tmigr_group *group, union tmigr_state state, u32 childmask),
136 TP_ARGS(group, state, childmask)
154 __entry->wakeup = tmc->wakeup;
155 __entry->parent = tmc->tmgroup;
156 __entry->cpu = tmc->cpuevt.cpu;
159 TP_printk("cpu=%d parent=%p wakeup=%llu", __entry->cpu, __entry->parent, __entry->wakeup)
211 __entry->nextevt = nextevt;
212 __entry->wakeup = tmc->wakeup;
213 __entry->parent = tmc->tmgroup;
214 __entry->cpu = tmc->cpuevt.cpu;
218 __entry->cpu, __entry->parent, __entry->nextevt, __entry->wakeup)
237 TP_PROTO(struct tmigr_group *child, struct tmigr_group *group,
241 TP_ARGS(child, group, childstate, groupstate, nextevt),
245 __field( void *, group )
256 __entry->child = child;
257 __entry->group = group;
258 __entry->nextevt = nextevt;
259 __entry->group_next_expiry = group->next_expiry;
260 __entry->child_evt_expiry = child ? child->groupevt.nextevt.expires : 0;
261 __entry->group_lvl = group->level;
262 __entry->child_evtcpu = child ? child->groupevt.cpu : 0;
263 __entry->child_active = childstate.active;
264 __entry->group_active = groupstate.active;
267 TP_printk("child=%p group=%p group_lvl=%d child_active=%0x group_active=%0x "
269 __entry->child, __entry->group, __entry->group_lvl, __entry->child_active,
270 __entry->group_active,
271 __entry->nextevt, __entry->group_next_expiry, __entry->child_evt_expiry,
272 __entry->child_evtcpu)
277 TP_PROTO(struct tmigr_group *group),
279 TP_ARGS(group),
282 __field( void * , group )
287 __entry->group = group;
288 __entry->lvl = group->level;
291 TP_printk("group=%p lvl=%d",
292 __entry->group, __entry->lvl)