From: Jarno Rajahalme Date: Tue, 25 Mar 2014 00:34:48 +0000 (-0700) Subject: datapath: Remove a debugging message. X-Git-Url: http://git.onelab.eu/?a=commitdiff_plain;h=87968f01fc8404b98f0bb98aac0f73b743b79b5c;hp=5382a3cf9be0632c83cff17f08c9b46036a8ad88;p=sliver-openvswitch.git datapath: Remove a debugging message. This was left in accidentally. Signed-off-by: Jarno Rajahalme --- diff --git a/datapath/datapath.c b/datapath/datapath.c index 1efbb00ff..f7c3391ce 100644 --- a/datapath/datapath.c +++ b/datapath/datapath.c @@ -1922,12 +1922,6 @@ static int __init dp_init(void) pr_info("Open vSwitch switching datapath %s, built "__DATE__" "__TIME__"\n", VERSION); - pr_info("Datapath sw_flow_key size: %ld bytes. ip.frag at %ld, tp.flags at %ld, ipv4.addr at %ld\n", - sizeof(struct sw_flow_key), - offsetof(struct sw_flow_key, ip.frag), - offsetof(struct sw_flow_key, tp.flags), - offsetof(struct sw_flow_key, ipv4.addr)); - err = ovs_flow_init(); if (err) goto error;