2005-04-17 02:20:36 +04:00
|
|
|
#ifndef __ASM_SYSTEM_H
|
|
|
|
#define __ASM_SYSTEM_H
|
|
|
|
|
|
|
|
#include <asm/segment.h>
|
2007-05-08 11:35:02 +04:00
|
|
|
#include <asm/cmpxchg.h>
|
2005-04-17 02:20:36 +04:00
|
|
|
|
|
|
|
|
2008-01-30 15:31:08 +03:00
|
|
|
static inline unsigned long read_cr8(void)
|
|
|
|
{
|
|
|
|
unsigned long cr8;
|
|
|
|
asm volatile("movq %%cr8,%0" : "=r" (cr8));
|
|
|
|
return cr8;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void write_cr8(unsigned long val)
|
|
|
|
{
|
|
|
|
asm volatile("movq %0,%%cr8" :: "r" (val) : "memory");
|
|
|
|
}
|
|
|
|
|
2006-07-03 11:24:45 +04:00
|
|
|
#include <linux/irqflags.h>
|
2006-01-17 09:03:47 +03:00
|
|
|
|
2005-04-17 02:20:36 +04:00
|
|
|
#endif
|