aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPetri Savolainen <petri.savolainen@linaro.org>2018-10-15 09:44:10 +0300
committerMaxim Uvarov <maxim.uvarov@linaro.org>2018-10-16 16:01:20 +0300
commitd1936686de3035d2664fa4745bd8681a6411d0d6 (patch)
treef2cda2669cfd3669938f28515e116e61d506e9df
parent712565ad0e1dfdb1d80ca0b3a82c994eced863b6 (diff)
linux-gen: sched: remove iquery from interface
Remove iquery from scheduler and queue interface. Signed-off-by: Petri Savolainen <petri.savolainen@linaro.org> Signed-off-by: Maxim Uvarov <maxim.uvarov@linaro.org>
-rw-r--r--platform/linux-generic/odp_queue_if.c4
-rw-r--r--platform/linux-generic/odp_schedule_if.c6
2 files changed, 1 insertions, 9 deletions
diff --git a/platform/linux-generic/odp_queue_if.c b/platform/linux-generic/odp_queue_if.c
index 65f65006e..5ff8bbac5 100644
--- a/platform/linux-generic/odp_queue_if.c
+++ b/platform/linux-generic/odp_queue_if.c
@@ -103,9 +103,7 @@ int _odp_queue_init_global(void)
if (sched == NULL || !strcmp(sched, "default"))
sched = ODP_SCHEDULE_DEFAULT;
- if (!strcmp(sched, "basic") ||
- !strcmp(sched, "sp") ||
- !strcmp(sched, "iquery")) {
+ if (!strcmp(sched, "basic") || !strcmp(sched, "sp")) {
queue_fn = &queue_basic_fn;
_odp_queue_api = &queue_basic_api;
} else if (!strcmp(sched, "scalable")) {
diff --git a/platform/linux-generic/odp_schedule_if.c b/platform/linux-generic/odp_schedule_if.c
index df1ee2c26..c88b35fd5 100644
--- a/platform/linux-generic/odp_schedule_if.c
+++ b/platform/linux-generic/odp_schedule_if.c
@@ -19,9 +19,6 @@ extern const schedule_api_t schedule_sp_api;
extern const schedule_fn_t schedule_basic_fn;
extern const schedule_api_t schedule_basic_api;
-extern const schedule_fn_t schedule_iquery_fn;
-extern const schedule_api_t schedule_iquery_api;
-
extern const schedule_fn_t schedule_scalable_fn;
extern const schedule_api_t schedule_scalable_api;
@@ -154,9 +151,6 @@ int _odp_schedule_init_global(void)
} else if (!strcmp(sched, "sp")) {
sched_fn = &schedule_sp_fn;
sched_api = &schedule_sp_api;
- } else if (!strcmp(sched, "iquery")) {
- sched_fn = &schedule_iquery_fn;
- sched_api = &schedule_iquery_api;
} else if (!strcmp(sched, "scalable")) {
sched_fn = &schedule_scalable_fn;
sched_api = &schedule_scalable_api;