1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
/*
* SPDX-License-Identifier: Apache-2.0
* Copyright(c) 2021 Cisco Systems, Inc.
*/
#include <vnet/vnet.h>
#include <vnet/hash/hash.h>
static clib_error_t *
show_hash (vlib_main_t *vm, unformat_input_t *input, vlib_cli_command_t *cmd)
{
clib_error_t *error = 0;
vnet_hash_main_t *hm = &vnet_hash_main;
vnet_hash_function_registration_t *hash;
hash = hm->hash_registrations;
vlib_cli_output (vm, "%-25s%-8s%s", "Name", "Prio", "Description");
while (hash)
{
vlib_cli_output (vm, "%-25s%-8u%s", hash->name, hash->priority,
hash->description);
hash = hash->next;
}
return (error);
}
VLIB_CLI_COMMAND (cmd_show_hash, static) = {
.path = "show hash",
.short_help = "show hash",
.function = show_hash,
};
|