Remove single use of fastcall from hypervisor common code.
authorKeir Fraser <keir@xen.org>
Fri, 30 Mar 2012 07:52:19 +0000 (08:52 +0100)
committerKeir Fraser <keir@xen.org>
Fri, 30 Mar 2012 07:52:19 +0000 (08:52 +0100)
Signed-off-by: Keir Fraser <keir@xen.org>
xen/common/rcupdate.c
xen/include/xen/rcupdate.h

index 158e2d554bd57a8194a81c34c8e1b966ba0bddf9..e9979cd9d00434dbabd815ce4b8dfe3f91009b77 100644 (file)
@@ -175,8 +175,8 @@ static void force_quiescent_state(struct rcu_data *rdp,
  * sections are delimited by rcu_read_lock() and rcu_read_unlock(),
  * and may be nested.
  */
-void fastcall call_rcu(struct rcu_head *head,
-                       void (*func)(struct rcu_head *rcu))
+void call_rcu(struct rcu_head *head,
+              void (*func)(struct rcu_head *rcu))
 {
     unsigned long flags;
     struct rcu_data *rdp;
index 8e5555f9b2a13479d881104b601bc994c613bea7..91ded98641d3180b954c6a644ab62d53acc8a081 100644 (file)
@@ -142,8 +142,8 @@ void rcu_init(void);
 void rcu_check_callbacks(int cpu);
 
 /* Exported interfaces */
-void fastcall call_rcu(struct rcu_head *head, 
-                       void (*func)(struct rcu_head *head));
+void call_rcu(struct rcu_head *head, 
+              void (*func)(struct rcu_head *head));
 
 int rcu_barrier(void);