Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Ovn dhcp #1

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 2 additions & 0 deletions ovn/controller/automake.mk
Expand Up @@ -10,6 +10,8 @@ ovn_controller_ovn_controller_SOURCES = \
ovn/controller/lflow.h \
ovn/controller/ofctrl.c \
ovn/controller/ofctrl.h \
ovn/controller/ofcontroller.c \
ovn/controller/ofcontroller.h \
ovn/controller/patch.c \
ovn/controller/patch.h \
ovn/controller/ovn-controller.c \
Expand Down
1 change: 1 addition & 0 deletions ovn/controller/lflow.c
Expand Up @@ -300,6 +300,7 @@ lflow_run(struct controller_ctx *ctx, struct hmap *flow_table,
error = actions_parse_string(lflow->actions, &symtab, &ldp->ports,
ct_zones, first_ptable, LOG_PIPELINE_LEN,
lflow->table_id, output_ptable,
OFTABLE_CONTROLLER,
&ofpacts, &prereqs);
if (error) {
static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 1);
Expand Down
1 change: 1 addition & 0 deletions ovn/controller/lflow.h
Expand Up @@ -49,6 +49,7 @@ struct uuid;
#define OFTABLE_REMOTE_OUTPUT 32
#define OFTABLE_LOCAL_OUTPUT 33
#define OFTABLE_DROP_LOOPBACK 34
#define OFTABLE_CONTROLLER 35
#define OFTABLE_LOG_EGRESS_PIPELINE 48 /* First of LOG_PIPELINE_LEN tables. */
#define OFTABLE_LOG_TO_PHY 64

Expand Down