aboutsummaryrefslogtreecommitdiffstats
path: root/src/vppinfra/test_time.c
blob: 80c0e3a24b16fbdff9fb64838be1ac0616d2e4db (plain)
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
/*
 * Copyright (c) 2015 Cisco and/or its affiliates.
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at:
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
/*
  Copyright (c) 2005 Eliot Dresselhaus

  Permission is hereby granted, free of charge, to any person obtaining
  a copy of this software and associated documentation files (the
  "Software"), to deal in the Software without restriction, including
  without limitation the rights to use, copy, modify, merge, publish,
  distribute, sublicense, and/or sell copies of the Software, and to
  permit persons to whom the Software is furnished to do so, subject to
  the following conditions:

  The above copyright notice and this permission notice shall be
  included in all copies or substantial portions of the Software.

  THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
  EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
  MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
  NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
  LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
  OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
  WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/

#include <vppinfra/format.h>
#include <vppinfra/time.h>
#include <vppinfra/math.h>	/* for sqrt */

static int verbose;
#define if_verbose(format,args...) \
  if (verbose) { clib_warning(format, ## args); }

static int
test_time_main (unformat_input_t * input)
{
  f64 wait, error;
  f64 t, tu[3], ave, rms;
  clib_time_t c;
  int i, n, j;

  clib_time_init (&c);
  wait = 1e-3;
  n = 1000;
  unformat (input, "%f %d", &wait, &n);
  ave = rms = 0;
  tu[0] = unix_time_now ();
  tu[1] = unix_time_now ();
  for (i = 0; i < n; i++)
    {
      j = 0;
      t = clib_time_now (&c);
      while (clib_time_now (&c) < t + wait)
	j++;
      t = j;
      ave += t;
      rms += t * t;
    }
  tu[2] = unix_time_now ();
  ave /= n;
  rms = sqrt (rms / n - ave * ave);

  error = ((tu[2] - tu[1]) - 2 * (tu[1] - tu[0]) - n * wait) / n;
  if_verbose ("tested %d x %.6e sec waits, error %.6e loops %.6e +- %.6e\n",
	      n, wait, error, ave, rms);

  return 0;
}

#ifdef CLIB_UNIX
int
main (int argc, char *argv[])
{
  unformat_input_t i;
  int ret;

  clib_mem_init (0, 64ULL << 20);

  verbose = (argc > 1);
  unformat_init_command_line (&i, argv);
  ret = test_time_main (&i);
  unformat_free (&i);

  return ret;
}
#endif /* CLIB_UNIX */

/*
 * fd.io coding-style-patch-verification: ON
 *
 * Local Variables:
 * eval: (c-set-style "gnu")
 * End:
 */
s="p">(vl_api_lcp_itf_pair_add_del_t *mp) { u32 phy_sw_if_index; vl_api_lcp_itf_pair_add_del_reply_t *rmp; lip_host_type_t lip_host_type; int rv; VALIDATE_SW_IF_INDEX_END (mp); phy_sw_if_index = mp->sw_if_index; lip_host_type = api_decode_host_type (mp->host_if_type); if (mp->is_add) { rv = vl_api_lcp_itf_pair_add (phy_sw_if_index, lip_host_type, mp->host_if_name, sizeof (mp->host_if_name), mp->namespace, sizeof (mp->namespace), NULL); } else { rv = lcp_itf_pair_delete (phy_sw_if_index); } BAD_SW_IF_INDEX_LABEL; REPLY_MACRO (VL_API_LCP_ITF_PAIR_ADD_DEL_REPLY); } static void vl_api_lcp_itf_pair_add_del_v2_t_handler (vl_api_lcp_itf_pair_add_del_v2_t *mp) { u32 phy_sw_if_index, host_sw_if_index = ~0; vl_api_lcp_itf_pair_add_del_v2_reply_t *rmp; lip_host_type_t lip_host_type; int rv; VALIDATE_SW_IF_INDEX_END (mp); phy_sw_if_index = mp->sw_if_index; lip_host_type = api_decode_host_type (mp->host_if_type); if (mp->is_add) { rv = vl_api_lcp_itf_pair_add (phy_sw_if_index, lip_host_type, mp->host_if_name, sizeof (mp->host_if_name), mp->namespace, sizeof (mp->namespace), &host_sw_if_index); } else { rv = lcp_itf_pair_delete (phy_sw_if_index); } BAD_SW_IF_INDEX_LABEL; REPLY_MACRO2 (VL_API_LCP_ITF_PAIR_ADD_DEL_V2_REPLY, { rmp->host_sw_if_index = ntohl (host_sw_if_index); }); } static void send_lcp_itf_pair_details (index_t lipi, vl_api_registration_t *rp, u32 context) { vl_api_lcp_itf_pair_details_t *rmp; lcp_itf_pair_t *lcp_pair = lcp_itf_pair_get (lipi); REPLY_MACRO_DETAILS4 ( VL_API_LCP_ITF_PAIR_DETAILS, rp, context, ({ rmp->phy_sw_if_index = lcp_pair->lip_phy_sw_if_index; rmp->host_sw_if_index = lcp_pair->lip_host_sw_if_index; rmp->vif_index = lcp_pair->lip_vif_index; rmp->host_if_type = api_encode_host_type (lcp_pair->lip_host_type); memcpy_s (rmp->host_if_name, sizeof (rmp->host_if_name), lcp_pair->lip_host_name, vec_len (lcp_pair->lip_host_name)); clib_strncpy ((char *) rmp->namespace, (char *) lcp_pair->lip_namespace, vec_len (lcp_pair->lip_namespace)); })); } static void vl_api_lcp_itf_pair_get_t_handler (vl_api_lcp_itf_pair_get_t *mp) { vl_api_lcp_itf_pair_get_reply_t *rmp; i32 rv = 0; REPLY_AND_DETAILS_MACRO ( VL_API_LCP_ITF_PAIR_GET_REPLY, lcp_itf_pair_pool, ({ send_lcp_itf_pair_details (cursor, rp, mp->context); })); } static void vl_api_lcp_default_ns_set_t_handler (vl_api_lcp_default_ns_set_t *mp) { vl_api_lcp_default_ns_set_reply_t *rmp; int rv; mp->namespace[LCP_NS_LEN - 1] = 0; rv = lcp_set_default_ns (mp->namespace); REPLY_MACRO (VL_API_LCP_DEFAULT_NS_SET_REPLY); } static void vl_api_lcp_default_ns_get_t_handler (vl_api_lcp_default_ns_get_t *mp) { lcp_main_t *lcpm = &lcp_main; vl_api_lcp_default_ns_get_reply_t *rmp; vl_api_registration_t *reg; char *ns; reg = vl_api_client_index_to_registration (mp->client_index); if (!reg) return; rmp = vl_msg_api_alloc (sizeof (*rmp)); clib_memset (rmp, 0, sizeof (*rmp)); rmp->_vl_msg_id = (VL_API_LCP_DEFAULT_NS_GET_REPLY + lcpm->msg_id_base); rmp->context = mp->context; ns = (char *) lcp_get_default_ns (); if (ns) clib_strncpy ((char *) rmp->namespace, ns, LCP_NS_LEN - 1); vl_api_send_msg (reg, (u8 *) rmp); } static void vl_api_lcp_itf_pair_replace_begin_t_handler ( vl_api_lcp_itf_pair_replace_begin_t *mp) { vl_api_lcp_itf_pair_replace_begin_reply_t *rmp; int rv; rv = lcp_itf_pair_replace_begin (); REPLY_MACRO (VL_API_LCP_ITF_PAIR_REPLACE_BEGIN_REPLY); } static void vl_api_lcp_itf_pair_replace_end_t_handler ( vl_api_lcp_itf_pair_replace_end_t *mp) { vl_api_lcp_itf_pair_replace_end_reply_t *rmp; int rv = 0; rv = lcp_itf_pair_replace_end (); REPLY_MACRO (VL_API_LCP_ITF_PAIR_REPLACE_END_REPLY); } /* * Set up the API message handling tables */ #include <linux-cp/lcp.api.c> static clib_error_t * lcp_plugin_api_hookup (vlib_main_t *vm) { /* Ask for a correctly-sized block of API message decode slots */ lcp_msg_id_base = setup_message_id_table (); return (NULL); } VLIB_INIT_FUNCTION (lcp_plugin_api_hookup); #include <vpp/app/version.h> VLIB_PLUGIN_REGISTER () = { .version = VPP_BUILD_VER, .description = "Linux Control Plane - Interface Mirror", .default_disabled = 1, }; /* * fd.io coding-style-patch-verification: ON * * Local Variables: * eval: (c-set-style "gnu") * End: */