projects
/
paraslash.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
7e57898
)
filter_common: Use sched_min_delay() helper.
author
Andre Noll
<maan@systemlinux.org>
Wed, 13 Jan 2010 06:40:45 +0000
(07:40 +0100)
committer
Andre Noll
<maan@systemlinux.org>
Wed, 13 Jan 2010 06:40:45 +0000
(07:40 +0100)
filter_common.c
patch
|
blob
|
history
diff --git
a/filter_common.c
b/filter_common.c
index
7af5ace
..
1317192
100644
(file)
--- a/
filter_common.c
+++ b/
filter_common.c
@@
-133,9
+133,6
@@
void generic_filter_pre_select(struct sched *s, struct task *t)
struct filter_node *fn = container_of(t, struct filter_node, task);
t->error = 0;
- if (btr_node_status(fn->btrn, fn->min_iqs, BTR_NT_INTERNAL) != 0) {
- s->timeout.tv_sec = 0;
- s->timeout.tv_usec = 1;
- }
+ if (btr_node_status(fn->btrn, fn->min_iqs, BTR_NT_INTERNAL) != 0)
+ sched_min_delay(s);
}
-