]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
net sched actions: fix misleading text strings in pedit action
authorRoman Mashak <mrv@mojatatu.com>
Wed, 27 Jun 2018 17:33:34 +0000 (13:33 -0400)
committerDavid S. Miller <davem@davemloft.net>
Thu, 28 Jun 2018 13:12:03 +0000 (22:12 +0900)
Change "tc filter pedit .." to "tc actions pedit .." in error
messages to clearly refer to pedit action.

Reviewed-by: Simon Horman <simon.horman@netronome.com>
Signed-off-by: Roman Mashak <mrv@mojatatu.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
net/sched/act_pedit.c

index 3b775f54cee5ad46bbc95478de615203126fc335..caa6927a992c19fcb4c7cae2c6eec0aac7c1f5c4 100644 (file)
@@ -305,7 +305,7 @@ static int tcf_pedit(struct sk_buff *skb, const struct tc_action *a,
 
                        rc = pedit_skb_hdr_offset(skb, htype, &hoffset);
                        if (rc) {
-                               pr_info("tc filter pedit bad header type specified (0x%x)\n",
+                               pr_info("tc action pedit bad header type specified (0x%x)\n",
                                        htype);
                                goto bad;
                        }
@@ -314,7 +314,7 @@ static int tcf_pedit(struct sk_buff *skb, const struct tc_action *a,
                                char *d, _d;
 
                                if (!offset_valid(skb, hoffset + tkey->at)) {
-                                       pr_info("tc filter pedit 'at' offset %d out of bounds\n",
+                                       pr_info("tc action pedit 'at' offset %d out of bounds\n",
                                                hoffset + tkey->at);
                                        goto bad;
                                }
@@ -326,12 +326,12 @@ static int tcf_pedit(struct sk_buff *skb, const struct tc_action *a,
                        }
 
                        if (offset % 4) {
-                               pr_info("tc filter pedit offset must be on 32 bit boundaries\n");
+                               pr_info("tc action pedit offset must be on 32 bit boundaries\n");
                                goto bad;
                        }
 
                        if (!offset_valid(skb, hoffset + offset)) {
-                               pr_info("tc filter pedit offset %d out of bounds\n",
+                               pr_info("tc action pedit offset %d out of bounds\n",
                                        hoffset + offset);
                                goto bad;
                        }
@@ -349,7 +349,7 @@ static int tcf_pedit(struct sk_buff *skb, const struct tc_action *a,
                                val = (*ptr + tkey->val) & ~tkey->mask;
                                break;
                        default:
-                               pr_info("tc filter pedit bad command (%d)\n",
+                               pr_info("tc action pedit bad command (%d)\n",
                                        cmd);
                                goto bad;
                        }