]> git.proxmox.com Git - mirror_ovs.git/blame - ofproto/ofproto-dpif-upcall.h
treewide: Get rid of // comments, even inside comments.
[mirror_ovs.git] / ofproto / ofproto-dpif-upcall.h
CommitLineData
3f142f59 1/* Copyright (c) 2013, 2014 Nicira, Inc.
e1ec7dd4
EJ
2 *
3 * Licensed under the Apache License, Version 2.0 (the "License");
4 * you may not use this file except in compliance with the License.
5 * You may obtain a copy of the License at:
6 *
7 * http://www.apache.org/licenses/LICENSE-2.0
8 *
9 * Unless required by applicable law or agreed to in writing, software
10 * distributed under the License is distributed on an "AS IS" BASIS,
11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 * See the License for the specific language governing permissions and
13 * limitations under the License. */
14
15#ifndef OFPROTO_DPIF_UPCALL_H
16#define OFPROTO_DPIF_UPCALL_H
17
e79a6c83 18#include <stddef.h>
e1ec7dd4
EJ
19
20struct dpif;
21struct dpif_backer;
6b31e073
RW
22struct dpif_upcall;
23struct ofpbuf;
e79a6c83
EJ
24struct seq;
25struct simap;
e1ec7dd4 26
bfc691bb 27/* Udpif is responsible for retrieving upcalls from the kernel and processing
e79a6c83
EJ
28 * them. Additionally, it's responsible for maintaining the datapath flow
29 * table. */
e1ec7dd4 30
0fc1f5c0 31void udpif_init(void);
e1ec7dd4 32struct udpif *udpif_create(struct dpif_backer *, struct dpif *);
27f57736 33void udpif_run(struct udpif *udpif);
e79a6c83
EJ
34void udpif_set_threads(struct udpif *, size_t n_handlers,
35 size_t n_revalidators);
3f142f59 36void udpif_synchronize(struct udpif *);
e1ec7dd4 37void udpif_destroy(struct udpif *);
e1ec7dd4 38void udpif_revalidate(struct udpif *);
1c030aa5 39void udpif_get_memory_usage(struct udpif *, struct simap *usage);
e79a6c83 40struct seq *udpif_dump_seq(struct udpif *);
1b5b5071 41void udpif_flush(struct udpif *);
e1ec7dd4
EJ
42
43#endif /* ofproto-dpif-upcall.h */