builtin-kmem.c (45694aa7702bc44d538a3bcb51bb2bb96cf190c0) | builtin-kmem.c (efad14150a0b4429f37da7245001a8096ef7ee38) |
---|---|
1#include "builtin.h" 2#include "perf.h" 3 4#include "util/util.h" 5#include "util/cache.h" 6#include "util/symbol.h" 7#include "util/thread.h" 8#include "util/header.h" --- 5 unchanged lines hidden (view full) --- 14 15#include "util/debug.h" 16 17#include <linux/rbtree.h> 18 19struct alloc_stat; 20typedef int (*sort_fn_t)(struct alloc_stat *, struct alloc_stat *); 21 | 1#include "builtin.h" 2#include "perf.h" 3 4#include "util/util.h" 5#include "util/cache.h" 6#include "util/symbol.h" 7#include "util/thread.h" 8#include "util/header.h" --- 5 unchanged lines hidden (view full) --- 14 15#include "util/debug.h" 16 17#include <linux/rbtree.h> 18 19struct alloc_stat; 20typedef int (*sort_fn_t)(struct alloc_stat *, struct alloc_stat *); 21 |
22static char const *input_name = "perf.data"; | 22static const char *input_name; |
23 24static int alloc_flag; 25static int caller_flag; 26 27static int alloc_lines = -1; 28static int caller_lines = -1; 29 30static bool raw_ip; --- 750 unchanged lines hidden --- | 23 24static int alloc_flag; 25static int caller_flag; 26 27static int alloc_lines = -1; 28static int caller_lines = -1; 29 30static bool raw_ip; --- 750 unchanged lines hidden --- |