diff mbox

iproute2: skbedit: Fix help message

Message ID 1255522041.21940.7.camel@dogo.mojatatu.com
State Not Applicable, archived
Delegated to: David Miller
Headers show

Commit Message

jamal Oct. 14, 2009, 12:07 p.m. UTC
This fixes the help message on the skbedit action.
Stephen, please apply if Alexander ACKs.

cheers,
jamal
commit 28dd9c19a1fa618105238a3302f272e2aee7918a
Author: Jamal Hadi Salim <hadi@cyberus.ca>
Date:   Tue Oct 14 07:32:51 2009 -0400

    skbedit: Fix help message
    
    Currently the help text implies you can either pass queue mapping
    or priority. Truth is you can pass both
    
    Signed-off-by: Jamal Hadi Salim <hadi@cyberus.ca>

Comments

Duyck, Alexander H Oct. 14, 2009, 4:04 p.m. UTC | #1
jamal wrote:
> This fixes the help message on the skbedit action.
> Stephen, please apply if Alexander ACKs.
> 
> cheers,
> jamal

This looks good to me.

Acked-by: Alexander Duyck <alexander.h.duyck@intel.com>--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
diff mbox

Patch

diff --git a/tc/m_skbedit.c b/tc/m_skbedit.c
index 9044353..ecb1f2d 100644
--- a/tc/m_skbedit.c
+++ b/tc/m_skbedit.c
@@ -31,8 +31,9 @@ 
 static void
 explain(void)
 {
-	fprintf(stderr, "Usage: ... skbedit "
-			"queue_mapping QUEUE_MAPPING | priority PRIORITY \n"
+	fprintf(stderr, "Usage: ... skbedit <[QM] [PM]>\n"
+			"QM = queue_mapping QUEUE_MAPPING\n"
+			"PM = priority PRIORITY \n"
 			"QUEUE_MAPPING = device transmit queue to use\n"
 			"PRIORITY = classID to assign to priority field\n");
 }