Release 4.12 include/linux/pm-trace.h
#ifndef PM_TRACE_H
#define PM_TRACE_H
#include <linux/types.h>
#ifdef CONFIG_PM_TRACE
#include <asm/pm-trace.h>
extern int pm_trace_enabled;
extern bool pm_trace_rtc_abused;
static inline bool pm_trace_rtc_valid(void)
{
return !pm_trace_rtc_abused;
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Chen Yu | 13 | 100.00% | 1 | 100.00% |
Total | 13 | 100.00% | 1 | 100.00% |
static inline int pm_trace_is_enabled(void)
{
return pm_trace_enabled;
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Rafael J. Wysocki | 12 | 100.00% | 1 | 100.00% |
Total | 12 | 100.00% | 1 | 100.00% |
struct device;
extern void set_trace_device(struct device *);
extern void generate_pm_trace(const void *tracedata, unsigned int user);
extern int show_trace_dev_match(char *buf, size_t size);
#define TRACE_DEVICE(dev) do { \
if (pm_trace_enabled) \
set_trace_device(dev); \
} while(0)
#else
static inline bool pm_trace_rtc_valid(void) { return true; }
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Chen Yu | 12 | 100.00% | 1 | 100.00% |
Total | 12 | 100.00% | 1 | 100.00% |
static inline int pm_trace_is_enabled(void) { return 0; }
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Rafael J. Wysocki | 12 | 100.00% | 1 | 100.00% |
Total | 12 | 100.00% | 1 | 100.00% |
#define TRACE_DEVICE(dev) do { } while (0)
#define TRACE_RESUME(dev) do { } while (0)
#define TRACE_SUSPEND(dev) do { } while (0)
#endif
#endif
Overall Contributors
Person | Tokens | Prop | Commits | CommitProp |
Linus Torvalds | 57 | 39.58% | 1 | 12.50% |
Chen Yu | 32 | 22.22% | 1 | 12.50% |
Rafael J. Wysocki | 28 | 19.44% | 2 | 25.00% |
James Hogan | 12 | 8.33% | 1 | 12.50% |
Fu Zhonghui | 11 | 7.64% | 1 | 12.50% |
Nigel Cunningham | 3 | 2.08% | 1 | 12.50% |
Jan Beulich | 1 | 0.69% | 1 | 12.50% |
Total | 144 | 100.00% | 8 | 100.00% |
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.