aboutsummaryrefslogtreecommitdiffstats
path: root/tests/vpp/perf/ip4/10ge2p1x520-ethip4udp-ip4base-oacl50sf-10kflows-ndrpdr.robot
diff options
context:
space:
mode:
authorTibor Frank <tifrank@cisco.com>2019-05-29 09:15:54 +0200
committerTibor Frank <tifrank@cisco.com>2019-05-29 09:15:54 +0200
commit10fdef7242c3f81e901a432b4de34632fcbacdb4 (patch)
treee093b28c4c977091bd60f66574396b8614ba6eb8 /tests/vpp/perf/ip4/10ge2p1x520-ethip4udp-ip4base-oacl50sf-10kflows-ndrpdr.robot
parent7be332a10beff2f80de36ae2a453712b607caf62 (diff)
Report 1901.2: Release notes
Change-Id: I4f9347bf3cb442d679ab9cda5154301a5f8c71c6 Signed-off-by: Tibor Frank <tifrank@cisco.com>
Diffstat (limited to 'tests/vpp/perf/ip4/10ge2p1x520-ethip4udp-ip4base-oacl50sf-10kflows-ndrpdr.robot')
0 files changed, 0 insertions, 0 deletions
ain 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/mem.h> #include <vppinfra/pool.h> #ifdef __KERNEL__ #include <linux/unistd.h> #else #include <unistd.h> #endif int main (int argc, char *argv[]) { int i; uword next; u32 *tp = 0; u32 *junk; for (i = 0; i < 70; i++) pool_get (tp, junk); (void) junk; /* compiler warning */ pool_put_index (tp, 1); pool_put_index (tp, 65); next = ~0; do { next = pool_next_index (tp, next); fformat (stdout, "next index %d\n", next); } while (next != ~0); return 0; } /* * fd.io coding-style-patch-verification: ON * * Local Variables: * eval: (c-set-style "gnu") * End: */