diff options
Diffstat (limited to 'kernel/time/clocksource.c')
| -rw-r--r-- | kernel/time/clocksource.c | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/kernel/time/clocksource.c b/kernel/time/clocksource.c index dadde5361f32..093d4acf993b 100644 --- a/kernel/time/clocksource.c +++ b/kernel/time/clocksource.c | |||
| @@ -145,9 +145,9 @@ static void clocksource_watchdog(unsigned long data) | |||
| 145 | * Cycle through CPUs to check if the CPUs stay | 145 | * Cycle through CPUs to check if the CPUs stay |
| 146 | * synchronized to each other. | 146 | * synchronized to each other. |
| 147 | */ | 147 | */ |
| 148 | int next_cpu = next_cpu(raw_smp_processor_id(), cpu_online_map); | 148 | int next_cpu = next_cpu_nr(raw_smp_processor_id(), cpu_online_map); |
| 149 | 149 | ||
| 150 | if (next_cpu >= NR_CPUS) | 150 | if (next_cpu >= nr_cpu_ids) |
| 151 | next_cpu = first_cpu(cpu_online_map); | 151 | next_cpu = first_cpu(cpu_online_map); |
| 152 | watchdog_timer.expires += WATCHDOG_INTERVAL; | 152 | watchdog_timer.expires += WATCHDOG_INTERVAL; |
| 153 | add_timer_on(&watchdog_timer, next_cpu); | 153 | add_timer_on(&watchdog_timer, next_cpu); |
| @@ -376,7 +376,8 @@ void clocksource_unregister(struct clocksource *cs) | |||
| 376 | * Provides sysfs interface for listing current clocksource. | 376 | * Provides sysfs interface for listing current clocksource. |
| 377 | */ | 377 | */ |
| 378 | static ssize_t | 378 | static ssize_t |
| 379 | sysfs_show_current_clocksources(struct sys_device *dev, char *buf) | 379 | sysfs_show_current_clocksources(struct sys_device *dev, |
| 380 | struct sysdev_attribute *attr, char *buf) | ||
| 380 | { | 381 | { |
| 381 | ssize_t count = 0; | 382 | ssize_t count = 0; |
| 382 | 383 | ||
| @@ -397,6 +398,7 @@ sysfs_show_current_clocksources(struct sys_device *dev, char *buf) | |||
| 397 | * clocksource selction. | 398 | * clocksource selction. |
| 398 | */ | 399 | */ |
| 399 | static ssize_t sysfs_override_clocksource(struct sys_device *dev, | 400 | static ssize_t sysfs_override_clocksource(struct sys_device *dev, |
| 401 | struct sysdev_attribute *attr, | ||
| 400 | const char *buf, size_t count) | 402 | const char *buf, size_t count) |
| 401 | { | 403 | { |
| 402 | struct clocksource *ovr = NULL; | 404 | struct clocksource *ovr = NULL; |
| @@ -449,7 +451,9 @@ static ssize_t sysfs_override_clocksource(struct sys_device *dev, | |||
| 449 | * Provides sysfs interface for listing registered clocksources | 451 | * Provides sysfs interface for listing registered clocksources |
| 450 | */ | 452 | */ |
| 451 | static ssize_t | 453 | static ssize_t |
| 452 | sysfs_show_available_clocksources(struct sys_device *dev, char *buf) | 454 | sysfs_show_available_clocksources(struct sys_device *dev, |
| 455 | struct sysdev_attribute *attr, | ||
| 456 | char *buf) | ||
| 453 | { | 457 | { |
| 454 | struct clocksource *src; | 458 | struct clocksource *src; |
| 455 | ssize_t count = 0; | 459 | ssize_t count = 0; |
