diff options
Diffstat (limited to 'arch/s390/kernel/vtime.c')
| -rw-r--r-- | arch/s390/kernel/vtime.c | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/arch/s390/kernel/vtime.c b/arch/s390/kernel/vtime.c index 38ea92ff04f9..c87f59bd8246 100644 --- a/arch/s390/kernel/vtime.c +++ b/arch/s390/kernel/vtime.c | |||
| @@ -240,6 +240,22 @@ void vtime_stop_cpu(void) | |||
| 240 | } | 240 | } |
| 241 | } | 241 | } |
| 242 | 242 | ||
| 243 | cputime64_t s390_get_idle_time(int cpu) | ||
| 244 | { | ||
| 245 | struct s390_idle_data *idle; | ||
| 246 | unsigned long long now, idle_time, idle_enter; | ||
| 247 | |||
| 248 | idle = &per_cpu(s390_idle, cpu); | ||
| 249 | spin_lock(&idle->lock); | ||
| 250 | now = get_clock(); | ||
| 251 | idle_time = 0; | ||
| 252 | idle_enter = idle->idle_enter; | ||
| 253 | if (idle_enter != 0ULL && idle_enter < now) | ||
| 254 | idle_time = now - idle_enter; | ||
| 255 | spin_unlock(&idle->lock); | ||
| 256 | return idle_time; | ||
| 257 | } | ||
| 258 | |||
| 243 | /* | 259 | /* |
| 244 | * Sorted add to a list. List is linear searched until first bigger | 260 | * Sorted add to a list. List is linear searched until first bigger |
| 245 | * element is found. | 261 | * element is found. |
