Skip to content

Commit

Permalink
[IA64] Update to use account_{steal,idle}_ticks
Browse files Browse the repository at this point in the history
This patch fixes the following errors caused by
79741dd which changed
the prototypes of account_steal_time() and account_idle_time().

>   CC      arch/ia64/xen/time.o
> arch/ia64/xen/time.c: In function 'consider_steal_time':
> arch/ia64/xen/time.c:132: warning: passing argument 1 of 'account_steal_time' makes integer from pointer without a cast
> arch/ia64/xen/time.c:132: error: too many arguments to function 'account_steal_time'
> arch/ia64/xen/time.c:133: warning: passing argument 1 of 'account_steal_time' makes integer from pointer without a cast
> arch/ia64/xen/time.c:133: error: too many arguments to function 'account_steal_time'

Cc: Martin Schwidefsky <schwidefsky@de.ibm.com>
Signed-off-by: Isaku Yamahata <yamahata@valinux.co.jp>
Signed-off-by: Tony Luck <tony.luck@intel.com>
  • Loading branch information
Isaku Yamahata authored and Tony Luck committed Jan 15, 2009
1 parent 5393f78 commit 7a0b6e0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions arch/ia64/xen/time.c
Original file line number Diff line number Diff line change
Expand Up @@ -129,8 +129,8 @@ consider_steal_time(unsigned long new_itm)
blocked = stolentick;

if (stolen > 0 || blocked > 0) {
account_steal_time(NULL, jiffies_to_cputime(stolen));
account_steal_time(idle_task(cpu), jiffies_to_cputime(blocked));
account_steal_ticks(stolen);
account_idle_ticks(blocked);
run_local_timers();

if (rcu_pending(cpu))
Expand Down

0 comments on commit 7a0b6e0

Please sign in to comment.