aboutsummaryrefslogtreecommitdiffstats
path: root/litmus/event_group.c
diff options
context:
space:
mode:
Diffstat (limited to 'litmus/event_group.c')
-rw-r--r--litmus/event_group.c11
1 files changed, 0 insertions, 11 deletions
diff --git a/litmus/event_group.c b/litmus/event_group.c
index 06520299fb1d..478698a6d17a 100644
--- a/litmus/event_group.c
+++ b/litmus/event_group.c
@@ -36,8 +36,6 @@ static enum hrtimer_restart on_timer(struct hrtimer *timer)
36 struct list_head *pos, events[NUM_EVENT_PRIORITIES]; 36 struct list_head *pos, events[NUM_EVENT_PRIORITIES];
37 raw_spinlock_t *queue_lock; 37 raw_spinlock_t *queue_lock;
38 38
39 QT_START;
40
41 el = container_of(timer, struct event_list, timer); 39 el = container_of(timer, struct event_list, timer);
42 queue_lock = &el->group->queue_lock; 40 queue_lock = &el->group->queue_lock;
43 41
@@ -81,8 +79,6 @@ static enum hrtimer_restart on_timer(struct hrtimer *timer)
81 79
82 VTRACE("Exhausted %d events from list 0x%x\n", num, el); 80 VTRACE("Exhausted %d events from list 0x%x\n", num, el);
83 81
84 QT_END;
85
86 return HRTIMER_NORESTART; 82 return HRTIMER_NORESTART;
87} 83}
88 84
@@ -171,8 +167,6 @@ void add_event(struct event_group *group, struct rt_event *e, lt_t fire)
171 struct event_list *el; 167 struct event_list *el;
172 int in_use; 168 int in_use;
173 169
174 QT_START;
175
176 VTRACE("Adding event 0x%x with priority %d for time %llu\n", 170 VTRACE("Adding event 0x%x with priority %d for time %llu\n",
177 e, e->prio, fire); 171 e, e->prio, fire);
178 172
@@ -207,8 +201,6 @@ void add_event(struct event_group *group, struct rt_event *e, lt_t fire)
207 } else { 201 } else {
208 VTRACE("Not my timer @%llu\n", fire); 202 VTRACE("Not my timer @%llu\n", fire);
209 } 203 }
210
211 QT_END;
212} 204}
213 205
214/** 206/**
@@ -222,8 +214,6 @@ void cancel_event(struct rt_event *e)
222 struct event_group *group; 214 struct event_group *group;
223 struct list_head *list, *pos; 215 struct list_head *list, *pos;
224 216
225 QT_START;
226
227 VTRACE("Canceling event 0x%x with priority %d\n", e, e->prio); 217 VTRACE("Canceling event 0x%x with priority %d\n", e, e->prio);
228 group = e->_event_group; 218 group = e->_event_group;
229 if (!group) return; 219 if (!group) return;
@@ -270,7 +260,6 @@ void cancel_event(struct rt_event *e)
270 e->_event_group = NULL; 260 e->_event_group = NULL;
271 261
272 raw_spin_unlock(&group->queue_lock); 262 raw_spin_unlock(&group->queue_lock);
273 QT_END;
274} 263}
275 264
276struct kmem_cache *event_list_cache; 265struct kmem_cache *event_list_cache;