summaryrefslogtreecommitdiff
path: root/datapath-windows/ovsext/PacketParser.h
diff options
context:
space:
mode:
authorAlin Serdean <aserdean@cloudbasesolutions.com>2015-10-27 19:50:35 +0000
committerGurucharan Shetty <gshetty@nicira.com>2015-10-27 13:21:39 -0700
commit481c5a6d836f77331e42b1fd65b5fc9786bda5d5 (patch)
treee02a4e627b915045353ef7bc21770220cb4444d4 /datapath-windows/ovsext/PacketParser.h
parent2a33a3c20f56b8ac09abebc8b14fca9314abfacb (diff)
downloadopenvswitch-481c5a6d836f77331e42b1fd65b5fc9786bda5d5.tar.gz
Revert "datapath-windows: Support attribute OVS_KEY_ATTR_TCP_FLAGS"
This reverts commit a26b2023ce33fed1ef962012dc2c03765d2e92cb. This patch punishes performance without the implementation of megaflows on Windows. Once megaflows is implemented in the flow logic this patch will be revisited. Signed-off-by: Alin Gabriel Serdean <aserdean@cloudbasesolutions.com> Acked-by: Sairam Venugopal <vsairam@vmware.com> Signed-off-by: Gurucharan Shetty <gshetty@nicira.com>
Diffstat (limited to 'datapath-windows/ovsext/PacketParser.h')
-rw-r--r--datapath-windows/ovsext/PacketParser.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/datapath-windows/ovsext/PacketParser.h b/datapath-windows/ovsext/PacketParser.h
index 765819ab0..55d110f11 100644
--- a/datapath-windows/ovsext/PacketParser.h
+++ b/datapath-windows/ovsext/PacketParser.h
@@ -75,8 +75,11 @@ OvsGetTcpCtl(const NET_BUFFER_LIST *packet, // IN
static UINT8
OvsGetTcpFlags(const NET_BUFFER_LIST *packet, // IN
+ const OvsFlowKey *key, // IN
const POVS_PACKET_HDR_INFO layers) // IN
{
+ UNREFERENCED_PARAMETER(key); // should be removed later
+
if (layers->isTcp) {
return TCP_FLAGS(OvsGetTcpCtl(packet, layers));
} else {