diff options
author | Damjan Marion <damarion@cisco.com> | 2017-05-10 21:06:28 +0200 |
---|---|---|
committer | Dave Barach <openvpp@barachs.net> | 2017-05-10 22:01:15 +0000 |
commit | f55f9b851f59264d737d92c6277a87588c565d24 (patch) | |
tree | 4e1c69bed3ff6b0968b9558a814a23edac4f9ae6 /src/vppinfra/mheap.c | |
parent | e5f1d27695e2e6b9be17198e9b49e95639a15c58 (diff) |
completelly deprecate os_get_cpu_number, replace new occurences
Change-Id: I82c663bc0866c6c68ba354104b0bb059387f4b9d
Signed-off-by: Damjan Marion <damarion@cisco.com>
Diffstat (limited to 'src/vppinfra/mheap.c')
-rw-r--r-- | src/vppinfra/mheap.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/vppinfra/mheap.c b/src/vppinfra/mheap.c index 192732db5f9..d4010ceb297 100644 --- a/src/vppinfra/mheap.c +++ b/src/vppinfra/mheap.c @@ -56,7 +56,7 @@ mheap_maybe_lock (void *v) mheap_t *h = mheap_header (v); if (v && (h->flags & MHEAP_FLAG_THREAD_SAFE)) { - u32 my_cpu = os_get_cpu_number (); + u32 my_cpu = os_get_thread_index (); if (h->owner_cpu == my_cpu) { h->recursion_count++; @@ -77,7 +77,7 @@ mheap_maybe_unlock (void *v) mheap_t *h = mheap_header (v); if (v && h->flags & MHEAP_FLAG_THREAD_SAFE) { - ASSERT (os_get_cpu_number () == h->owner_cpu); + ASSERT (os_get_thread_index () == h->owner_cpu); if (--h->recursion_count == 0) { h->owner_cpu = ~0; |