aboutsummaryrefslogtreecommitdiff
path: root/platform
diff options
context:
space:
mode:
authorPetri Savolainen <petri.savolainen@linaro.org>2018-02-16 15:42:58 +0200
committerMaxim Uvarov <maxim.uvarov@linaro.org>2018-02-28 20:40:54 +0300
commit5361c69b7a4ecd50c1b0c30af6d1f08fea28718e (patch)
treea95834e23e7407777e67bf3d6f4f5821b118eb7a /platform
parent84d072b5c7327437cae7a13333dd35ab9777ce14 (diff)
linux-gen: queue: inline queue from index conversion
Inline queue handle from queue index conversion function. Signed-off-by: Petri Savolainen <petri.savolainen@linaro.org> Reviewed-by: Bill Fischofer <bill.fischofer@linaro.org> Signed-off-by: Maxim Uvarov <maxim.uvarov@linaro.org>
Diffstat (limited to 'platform')
-rw-r--r--platform/linux-generic/include/odp_queue_internal.h7
-rw-r--r--platform/linux-generic/odp_queue_basic.c29
-rw-r--r--platform/linux-generic/odp_schedule_basic.c5
-rw-r--r--platform/linux-generic/odp_schedule_iquery.c2
-rw-r--r--platform/linux-generic/odp_schedule_sp.c3
5 files changed, 17 insertions, 29 deletions
diff --git a/platform/linux-generic/include/odp_queue_internal.h b/platform/linux-generic/include/odp_queue_internal.h
index b14f3ea83..8215a8180 100644
--- a/platform/linux-generic/include/odp_queue_internal.h
+++ b/platform/linux-generic/include/odp_queue_internal.h
@@ -63,11 +63,16 @@ union queue_entry_u {
uint8_t pad[ROUNDUP_CACHE_LINE(sizeof(struct queue_entry_s))];
};
-static inline uint32_t queue_to_id(odp_queue_t handle)
+static inline uint32_t queue_to_index(odp_queue_t handle)
{
return _odp_typeval(handle) - 1;
}
+static inline odp_queue_t queue_from_index(uint32_t queue_id)
+{
+ return _odp_cast_scalar(odp_queue_t, queue_id + 1);
+}
+
static inline queue_entry_t *qentry_from_int(queue_t q_int)
{
return (queue_entry_t *)(void *)(q_int);
diff --git a/platform/linux-generic/odp_queue_basic.c b/platform/linux-generic/odp_queue_basic.c
index 0c0a11ec1..2801b220f 100644
--- a/platform/linux-generic/odp_queue_basic.c
+++ b/platform/linux-generic/odp_queue_basic.c
@@ -51,26 +51,16 @@ typedef struct queue_global_t {
static queue_global_t *queue_glb;
-static
-queue_entry_t *get_qentry(uint32_t queue_id);
-
-static inline queue_entry_t *handle_to_qentry(odp_queue_t handle)
+static inline queue_entry_t *get_qentry(uint32_t queue_id)
{
- uint32_t queue_id;
-
- queue_id = queue_to_id(handle);
- return get_qentry(queue_id);
+ return &queue_glb->queue[queue_id];
}
-static inline odp_queue_t queue_from_id(uint32_t queue_id)
+static inline queue_entry_t *handle_to_qentry(odp_queue_t handle)
{
- return _odp_cast_scalar(odp_queue_t, queue_id + 1);
-}
+ uint32_t queue_id = queue_to_index(handle);
-static
-queue_entry_t *get_qentry(uint32_t queue_id)
-{
- return &queue_glb->queue[queue_id];
+ return get_qentry(queue_id);
}
static int queue_init_global(void)
@@ -98,7 +88,7 @@ static int queue_init_global(void)
queue_entry_t *queue = get_qentry(i);
LOCK_INIT(&queue->s.lock);
queue->s.index = i;
- queue->s.handle = queue_from_id(i);
+ queue->s.handle = queue_from_index(i);
}
lf_func = &queue_glb->queue_lf_func;
@@ -661,7 +651,7 @@ static int queue_info(odp_queue_t handle, odp_queue_info_t *info)
return -1;
}
- queue_id = queue_to_id(handle);
+ queue_id = queue_to_index(handle);
if (odp_unlikely(queue_id >= ODP_CONFIG_QUEUES)) {
ODP_ERR("Invalid queue handle:%" PRIu64 "\n",
@@ -689,11 +679,6 @@ static int queue_info(odp_queue_t handle, odp_queue_info_t *info)
return 0;
}
-odp_queue_t sched_cb_queue_handle(uint32_t queue_index)
-{
- return queue_from_id(queue_index);
-}
-
int sched_cb_queue_deq_multi(uint32_t queue_index, odp_event_t ev[], int num)
{
queue_entry_t *qe = get_qentry(queue_index);
diff --git a/platform/linux-generic/odp_schedule_basic.c b/platform/linux-generic/odp_schedule_basic.c
index 7195eedea..e5e1fe60e 100644
--- a/platform/linux-generic/odp_schedule_basic.c
+++ b/platform/linux-generic/odp_schedule_basic.c
@@ -25,10 +25,7 @@
#include <odp/api/packet_io.h>
#include <odp_ring_internal.h>
#include <odp_timer_internal.h>
-
-/* Should remove this dependency */
#include <odp_queue_internal.h>
-#include <odp_timer_internal.h>
/* Number of priority levels */
#define NUM_PRIO 8
@@ -876,7 +873,7 @@ static inline int do_schedule_grp(odp_queue_t *out_queue, odp_event_t out_ev[],
continue;
}
- handle = sched_cb_queue_handle(qi);
+ handle = queue_from_index(qi);
sched_local.num = num;
sched_local.index = 0;
sched_local.queue = handle;
diff --git a/platform/linux-generic/odp_schedule_iquery.c b/platform/linux-generic/odp_schedule_iquery.c
index 3ce85394e..ea62c3645 100644
--- a/platform/linux-generic/odp_schedule_iquery.c
+++ b/platform/linux-generic/odp_schedule_iquery.c
@@ -1541,7 +1541,7 @@ static inline int consume_queue(int prio, unsigned int queue_index)
cache->top = &cache->stash[0];
cache->count = count;
- cache->queue = sched_cb_queue_handle(queue_index);
+ cache->queue = queue_from_index(queue_index);
return count;
}
diff --git a/platform/linux-generic/odp_schedule_sp.c b/platform/linux-generic/odp_schedule_sp.c
index e46ae4480..007d673f0 100644
--- a/platform/linux-generic/odp_schedule_sp.c
+++ b/platform/linux-generic/odp_schedule_sp.c
@@ -18,6 +18,7 @@
#include <odp_config_internal.h>
#include <odp_ring_internal.h>
#include <odp_timer_internal.h>
+#include <odp_queue_internal.h>
#define NUM_THREAD ODP_THREAD_COUNT_MAX
#define NUM_QUEUE ODP_CONFIG_QUEUES
@@ -564,7 +565,7 @@ static int schedule_multi(odp_queue_t *from, uint64_t wait,
sched_local.cmd = cmd;
if (from)
- *from = sched_cb_queue_handle(qi);
+ *from = queue_from_index(qi);
return num;
}