]> git.proxmox.com Git - ovs.git/commitdiff
netdev-tc-offloads: Improve log message for icmpv6 offload not supported
authorMoshe Levi <moshele@mellanox.com>
Thu, 28 Feb 2019 19:29:10 +0000 (21:29 +0200)
committerSimon Horman <horms@verge.net.au>
Mon, 18 Mar 2019 13:57:27 +0000 (14:57 +0100)
Signed-off-by: Moshe Levi <moshele@mellanox.com>
Reviewed-by: Greg Rose <gvrose8192@gmail.com>
Signed-off-by: Simon Horman <simon.horman@netronome.com>
lib/netdev-tc-offloads.c

index b33a79bb14a220788754f5ad27f35427630fc6bc..115cd9e29ec37cac55bf8bde68e9f669c337d5b1 100644 (file)
@@ -1015,12 +1015,12 @@ test_key_and_mask(struct match *match)
                key->nw_proto == IPPROTO_ICMPV6) {
         if (mask->tp_src) {
             VLOG_DBG_RL(&rl,
-                        "offloading attribute icmp_type isn't supported");
+                        "offloading attribute icmpv6_type isn't supported");
             return EOPNOTSUPP;
         }
         if (mask->tp_dst) {
             VLOG_DBG_RL(&rl,
-                        "offloading attribute icmp_code isn't supported");
+                        "offloading attribute icmpv6_code isn't supported");
             return EOPNOTSUPP;
         }
     } else if (key->dl_type == htons(OFP_DL_TYPE_NOT_ETH_TYPE)) {