mirror of https://github.com/l4ka/pistachio.git
- Avoid TBUF_PMC_SEL_* and TBUF_RDPMC_* being undefined
This could happen if CPU was not set to I686, P4, or K8 (Thanks to Simon Kellner for a hint that helped finding this bug) - Removed redundant "defined(CONFIG_CPU_X86_K8)" - Fixed typo in comment
This commit is contained in:
parent
74428fb4b9
commit
30132e9248
|
@ -116,9 +116,14 @@ INLINE tracebuffer_t * get_tracebuffer (void)
|
|||
* Access to performance monitoring counters
|
||||
*/
|
||||
|
||||
# define TBUF_PMC_SEL_0
|
||||
# define TBUF_PMC_SEL_1
|
||||
# define TBUF_RDPMC_0
|
||||
# define TBUF_RDPMC_1
|
||||
|
||||
#if defined(CONFIG_TBUF_PERFMON)
|
||||
|
||||
# if defined(CONFIG_CPU_X86_I686) || defined(CONFIG_CPU_X86_K8) || defined(CONFIG_CPU_X86_K8)
|
||||
# if defined(CONFIG_CPU_X86_I686) || defined(CONFIG_CPU_X86_K8)
|
||||
# define TBUF_PMC_SEL_0 " xor %1, %1 \n"
|
||||
# define TBUF_PMC_SEL_1 " mov $1, %1 \n"
|
||||
# elif defined(CONFIG_CPU_X86_P4)
|
||||
|
@ -127,13 +132,6 @@ INLINE tracebuffer_t * get_tracebuffer (void)
|
|||
# define TBUF_PMC_SEL_1 " add $ 2, %1 \n"
|
||||
# endif
|
||||
|
||||
#else
|
||||
|
||||
# define TBUF_PMC_SEL_0
|
||||
# define TBUF_PMC_SEL_1
|
||||
# define TBUF_RDPMC_0
|
||||
# define TBUF_RDPMC_1
|
||||
|
||||
#endif /* defined(CONFIG_TBUF_PERFMON) */
|
||||
|
||||
|
||||
|
@ -159,7 +157,7 @@ INLINE tracebuffer_t * get_tracebuffer (void)
|
|||
({ \
|
||||
word_t dummy, addr; \
|
||||
asm volatile ( \
|
||||
/* Check wheter to filter the event */ \
|
||||
/* Check whether to filter the event */ \
|
||||
" mov %%fs:2*%c9, %3 \n" \
|
||||
" and %1, %3 \n" \
|
||||
" jz 2f \n" \
|
||||
|
|
Loading…
Reference in New Issue