summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorIlya Maximets <i.maximets@samsung.com>2019-02-26 13:38:35 +0300
committerIan Stokes <ian.stokes@intel.com>2019-02-27 22:19:03 +0000
commit5d1765d30e73552119c53da2f77eb7ccf137ee90 (patch)
tree80007bfb4edf42751384a1e0d8a47d07bf80093f /lib
parent324215c65cfa68963f98afaefccd42dc9c5954b2 (diff)
downloadopenvswitch-5d1765d30e73552119c53da2f77eb7ccf137ee90.tar.gz
dpif-netdev: Reduce log level for not found mark id.
It's a normal case for 'find' function, especially because this happens for every first packet of flow that was not offloaded yet. Should not warn about this. Dropped to DBG to avoid log trashing in case of big number of new flows. CC: Yuanhan Liu <yliu@fridaylinux.org> Fixes: 241bad15d99a ("dpif-netdev: associate flow with a mark id") Acked-by: Flavio Leitner <fbl@sysclose.org> Signed-off-by: Ilya Maximets <i.maximets@samsung.com> Signed-off-by: Ian Stokes <ian.stokes@intel.com>
Diffstat (limited to 'lib')
-rw-r--r--lib/dpif-netdev.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/dpif-netdev.c b/lib/dpif-netdev.c
index ec84378a0..4d6d0c372 100644
--- a/lib/dpif-netdev.c
+++ b/lib/dpif-netdev.c
@@ -2183,8 +2183,8 @@ megaflow_to_mark_find(const ovs_u128 *mega_ufid)
}
}
- VLOG_WARN("Mark id for ufid "UUID_FMT" was not found\n",
- UUID_ARGS((struct uuid *)mega_ufid));
+ VLOG_DBG("Mark id for ufid "UUID_FMT" was not found\n",
+ UUID_ARGS((struct uuid *)mega_ufid));
return INVALID_FLOW_MARK;
}