-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Heiko Carstens
authored and
Martin Schwidefsky
committed
Oct 22, 2007
1 parent
e054ac4
commit 4ccef34
Showing
4 changed files
with
102 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
--- | ||
refs/heads/master: 32346f47dd46bed291464e194a6c47da6fdd1bc3 | ||
refs/heads/master: fae8b22d3e3e3a3d317a7746493997af02a3f35c |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
/* | ||
* include/asm-s390/cpu.h | ||
* | ||
* Copyright IBM Corp. 2007 | ||
* Author(s): Heiko Carstens <heiko.carstens@de.ibm.com> | ||
*/ | ||
|
||
#ifndef _ASM_S390_CPU_H_ | ||
#define _ASM_S390_CPU_H_ | ||
|
||
#include <linux/types.h> | ||
#include <linux/percpu.h> | ||
#include <linux/spinlock.h> | ||
|
||
struct s390_idle_data { | ||
spinlock_t lock; | ||
unsigned int in_idle; | ||
unsigned long long idle_count; | ||
unsigned long long idle_enter; | ||
unsigned long long idle_time; | ||
}; | ||
|
||
DECLARE_PER_CPU(struct s390_idle_data, s390_idle); | ||
|
||
#endif /* _ASM_S390_CPU_H_ */ |