[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-Id: <1411005153-11041-9-git-send-email-simon.horman@netronome.com>
Date: Thu, 18 Sep 2014 10:52:33 +0900
From: Simon Horman <simon.horman@...ronome.com>
To: dev@...nvswtich.org, netdev@...r.kernel.org
Cc: Pravin Shelar <pshelar@...ira.com>, Jesse Gross <jesse@...ira.com>,
Thomas Graf <tgraf@...g.ch>,
Simon Horman <simon.horman@...ronome.com>
Subject: [PATCH/RFC 8/8] hack: ofproto: enable odp select action
This is a quick hack to enable the datapath group select action.
It is in lieu of some combination of:
* probing
* run-time configuration by the end-use.
* run-time heuristic to use the action as appropriate
Signed-off-by: Simon Horman <simon.horman@...ronome.com>
---
ofproto/ofproto-dpif-xlate.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/ofproto/ofproto-dpif-xlate.c b/ofproto/ofproto-dpif-xlate.c
index b08a821..eca617d 100644
--- a/ofproto/ofproto-dpif-xlate.c
+++ b/ofproto/ofproto-dpif-xlate.c
@@ -2896,7 +2896,7 @@ xlate_select_group_userspace(struct xlate_ctx *ctx, struct group_dpif *group)
static void
xlate_select_group(struct xlate_ctx *ctx, struct group_dpif *group)
{
- if (ctx->xbridge->dp_select_group) {
+ if (true /*ctx->xbridge->dp_select_group*/ ) {
xlate_select_group_datapath(ctx, group);
} else {
xlate_select_group_userspace(ctx, group);
--
2.0.1
--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Powered by blists - more mailing lists