blob: df242d932b6d3994e0a30465ee2a407c251e7765 [file] [log] [blame]
Damjan Marion94100532020-11-06 23:25:57 +01001
2/*
3 * Copyright (c) 2020 Cisco and/or its affiliates.
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at:
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#include <vppinfra/clib.h>
Damjan Marion94100532020-11-06 23:25:57 +010018#include <vppinfra/vec.h>
19#include <vppinfra/interrupt.h>
20#include <vppinfra/format.h>
21
22__clib_export void
23clib_interrupt_init (void **data, uword n_int)
24{
25 clib_interrupt_header_t *h;
26 uword sz = sizeof (clib_interrupt_header_t);
27 uword data_size = round_pow2 (n_int, CLIB_CACHE_LINE_BYTES * 8) / 8;
28
29 sz += 2 * data_size;
30 h = data[0] = clib_mem_alloc_aligned (sz, CLIB_CACHE_LINE_BYTES);
31 clib_memset (data[0], 0, sz);
32 h->n_int = n_int;
33 h->n_uword_alloc = (data_size * 8) >> log2_uword_bits;
34}
35
36__clib_export void
37clib_interrupt_resize (void **data, uword n_int)
38{
39 clib_interrupt_header_t *h = data[0];
40
41 if (data[0] == 0)
42 {
43 clib_interrupt_init (data, n_int);
44 return;
45 }
46
47 if (n_int < h->n_int)
48 {
49 uword *old_bmp, *old_abp, v;
50 old_bmp = clib_interrupt_get_bitmap (data[0]);
51 old_abp = clib_interrupt_get_atomic_bitmap (data[0]);
52 for (uword i = 0; i < h->n_uword_alloc; i++)
53 {
54 v = old_abp[i];
55 old_abp[i] = 0;
56 if (n_int > ((i + 1) * uword_bits))
57 old_bmp[i] |= v;
58 else if (n_int > (i * uword_bits))
59 old_bmp[i] = (old_bmp[i] | v) & pow2_mask (n_int - i * uword_bits);
60 else
61 old_bmp[i] = 0;
62 }
63 }
64 else if (n_int > h->n_uword_alloc * uword_bits)
65 {
66 void *old = data[0];
67 uword *old_bmp, *old_abp, *new_bmp;
68 uword n_uwords = round_pow2 (h->n_int, uword_bits) / uword_bits;
69
70 clib_interrupt_init (data, n_int);
71 h = data[0];
72
73 new_bmp = clib_interrupt_get_bitmap (data[0]);
74 old_bmp = clib_interrupt_get_bitmap (old);
75 old_abp = clib_interrupt_get_atomic_bitmap (old);
76
77 for (uword i = 0; i < n_uwords; i++)
78 new_bmp[i] = old_bmp[i] | old_abp[i];
79
80 clib_mem_free (old);
81 }
82 h->n_int = n_int;
83}
84
85/*
86 * fd.io coding-style-patch-verification: ON
87 *
88 * Local Variables:
89 * eval: (c-set-style "gnu")
90 * End:
91 */