aboutsummaryrefslogtreecommitdiffstats
path: root/VIRL_RELEASE_UBUNTU
diff options
context:
space:
mode:
authorselias <samelias@cisco.com>2017-09-22 10:49:28 +0200
committerSamuel Eliáš <samelias@cisco.com>2017-10-23 12:35:46 +0000
commit890c00d6b809d0d908903fbf1a0ec5ceca8b54ad (patch)
tree33fb2a76883b17184bde8baa2739290fb5190ea8 /VIRL_RELEASE_UBUNTU
parent04f2c49d50e242ac13aca9938c5a90a2ec012b7f (diff)
Update disk-image-builder scripts to allow IPv6
Change-Id: I28ed08689db97eabc21726afa9d977fcda526dfb Signed-off-by: selias <samelias@cisco.com>
Diffstat (limited to 'VIRL_RELEASE_UBUNTU')
-rw-r--r--VIRL_RELEASE_UBUNTU2
1 files changed, 1 insertions, 1 deletions
diff --git a/VIRL_RELEASE_UBUNTU b/VIRL_RELEASE_UBUNTU
index e686e74c35..8f24b73b85 100644
--- a/VIRL_RELEASE_UBUNTU
+++ b/VIRL_RELEASE_UBUNTU
@@ -1 +1 @@
-csit-ubuntu-16.04.1_2017-02-23_1.8
+csit-ubuntu-16.04.1_2017-10-21_2.0
an> * 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. */ #include <vppinfra/pool.h> /* can be a very large size */ #define NELTS 1024 int main (int argc, char *argv[]) { u32 *junk = 0; int i; u32 *tp = 0; u32 *indices = 0; clib_mem_init (0, 3ULL << 30); vec_validate (indices, NELTS - 1); _vec_len (indices) = 0; pool_init_fixed (tp, NELTS); for (i = 0; i < NELTS; i++) { pool_get (tp, junk); vec_add1 (indices, junk - tp); *junk = i; } for (i = 0; i < NELTS; i++) { junk = pool_elt_at_index (tp, indices[i]); ASSERT (*junk == i); } fformat (stdout, "%d pool elts before deletes\n", pool_elts (tp)); pool_put_index (tp, indices[12]); pool_put_index (tp, indices[43]); fformat (stdout, "%d pool elts after deletes\n", pool_elts (tp)); pool_validate (tp); pool_free (tp); return 0; } /* * fd.io coding-style-patch-verification: ON * * Local Variables: * eval: (c-set-style "gnu") * End: */