Skip to content

Commit

Permalink
dpif-netdev: Reduce log level for not found mark id.
Browse files Browse the repository at this point in the history
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: 241bad1 ("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: 0-day Robot <robot@bytheb.org>
  • Loading branch information
igsilya authored and ovsrobot committed Feb 20, 2019
1 parent 6ebc4b0 commit c587c1b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/dpif-netdev.c
Expand Up @@ -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;
}

Expand Down

0 comments on commit c587c1b

Please sign in to comment.