diff options
author | Brian Russell <brian@graphiant.com> | 2021-02-15 11:49:42 +0000 |
---|---|---|
committer | Neale Ranns <neale@graphiant.com> | 2021-02-15 16:18:32 +0000 |
commit | 54be0cc044f445853fae7b8995c477605250af16 (patch) | |
tree | c0be40e818039fa620efda5bb85e7535f63ef296 /src/vnet/policer/policer_api.c | |
parent | 1a3e08a7197addb1c07e66c1b1da3286c9bcb140 (diff) |
policer: improve policer struct
Ensure policer struct is cache aligned and fits in one cache line.
Give it a simpler name to reflect its job as the representation of
a policer.
Type: improvement
Signed-off-by: Brian Russell <brian@graphiant.com>
Change-Id: If1ae4931c818b86eee20306e503f4e5d6b84bd0d
Diffstat (limited to 'src/vnet/policer/policer_api.c')
-rw-r--r-- | src/vnet/policer/policer_api.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/vnet/policer/policer_api.c b/src/vnet/policer/policer_api.c index 17ed73790cf..eff02fbeee7 100644 --- a/src/vnet/policer/policer_api.c +++ b/src/vnet/policer/policer_api.c @@ -118,8 +118,8 @@ vl_api_policer_bind_t_handler (vl_api_policer_bind_t *mp) static void send_policer_details (u8 *name, qos_pol_cfg_params_st *config, - policer_read_response_type_st *templ, - vl_api_registration_t *reg, u32 context) + policer_t *templ, vl_api_registration_t *reg, + u32 context) { vl_api_policer_details_t *mp; @@ -170,7 +170,7 @@ vl_api_policer_dump_t_handler (vl_api_policer_dump_t * mp) u8 *match_name = 0; u8 *name; qos_pol_cfg_params_st *config; - policer_read_response_type_st *templ; + policer_t *templ; reg = vl_api_client_index_to_registration (mp->client_index); if (!reg) |