Lines Matching defs:fstack
629 struct trace_stack *fstack;
631 fstack = this_cpu_ptr(&trace_stack);
633 size = ARRAY_SIZE(fstack->calls);
635 nr_entries = stack_trace_save(fstack->calls, size, skip);
637 fstack->stack_size = nr_entries * sizeof(unsigned long);
638 fstack->nr_entries = nr_entries;
645 __timerlat_dump_stack(struct trace_buffer *buffer, struct trace_stack *fstack, unsigned int size)
657 entry->size = fstack->nr_entries;
658 memcpy(&entry->caller, fstack->calls, size);
670 struct trace_stack *fstack;
680 fstack = this_cpu_ptr(&trace_stack);
681 size = fstack->stack_size;
686 __timerlat_dump_stack(buffer, fstack, size);