All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH iproute2 0/2] Man page fixes
@ 2016-12-13  5:33 Roi Dayan
  2016-12-13  5:33 ` [PATCH iproute2 1/2] tc: flower: Fix typo in the flower man page Roi Dayan
                   ` (2 more replies)
  0 siblings, 3 replies; 5+ messages in thread
From: Roi Dayan @ 2016-12-13  5:33 UTC (permalink / raw)
  To: Stephen Hemminger; +Cc: netdev, Amir Vadai, Hadar Hen Zion, Roi Dayan

Hi,

The 2 patches are man page related only.
First fixes a typo and second adding missing man page to the Makefile.

Thanks

Roi Dayan (2):
  tc: flower: Fix typo in the flower man page
  tc: tunnel_key: Add tc-tunnel_key man page to Makefile

 man/man8/Makefile    | 1 +
 man/man8/tc-flower.8 | 4 ++--
 2 files changed, 3 insertions(+), 2 deletions(-)

-- 
2.7.4

^ permalink raw reply	[flat|nested] 5+ messages in thread

* [PATCH iproute2 1/2] tc: flower: Fix typo in the flower man page
  2016-12-13  5:33 [PATCH iproute2 0/2] Man page fixes Roi Dayan
@ 2016-12-13  5:33 ` Roi Dayan
  2016-12-15 12:56   ` Simon Horman
  2016-12-13  5:33 ` [PATCH iproute2 2/2] tc: tunnel_key: Add tc-tunnel_key man page to Makefile Roi Dayan
  2016-12-22  0:10 ` [PATCH iproute2 0/2] Man page fixes Stephen Hemminger
  2 siblings, 1 reply; 5+ messages in thread
From: Roi Dayan @ 2016-12-13  5:33 UTC (permalink / raw)
  To: Stephen Hemminger; +Cc: netdev, Amir Vadai, Hadar Hen Zion, Roi Dayan

Replace vlan_eth_type with vlan_ethtype.

Fixes: 745d91726006 ("tc: flower: Introduce vlan support")
Signed-off-by: Roi Dayan <roid@mellanox.com>
Reviewed-by: Hadar Hen Zion <hadarh@mellanox.com>
---
 man/man8/tc-flower.8 | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/man/man8/tc-flower.8 b/man/man8/tc-flower.8
index 90fdfba..1cea54d 100644
--- a/man/man8/tc-flower.8
+++ b/man/man8/tc-flower.8
@@ -27,7 +27,7 @@ flower \- flow based traffic control filter
 .IR VID " | "
 .B vlan_prio
 .IR PRIORITY " | "
-.BR vlan_eth_type " { " ipv4 " | " ipv6 " | "
+.BR vlan_ethtype " { " ipv4 " | " ipv6 " | "
 .IR ETH_TYPE " } | "
 .BR ip_proto " { " tcp " | " udp " | " sctp " | " icmp " | " icmpv6 " | "
 .IR IP_PROTO " } | { "
@@ -87,7 +87,7 @@ Match on vlan tag priority.
 .I PRIORITY
 is an unsigned 3bit value in decimal format.
 .TP
-.BI vlan_eth_type " VLAN_ETH_TYPE"
+.BI vlan_ethtype " VLAN_ETH_TYPE"
 Match on layer three protocol.
 .I ETH_TYPE
 may be either
-- 
2.7.4

^ permalink raw reply related	[flat|nested] 5+ messages in thread

* [PATCH iproute2 2/2] tc: tunnel_key: Add tc-tunnel_key man page to Makefile
  2016-12-13  5:33 [PATCH iproute2 0/2] Man page fixes Roi Dayan
  2016-12-13  5:33 ` [PATCH iproute2 1/2] tc: flower: Fix typo in the flower man page Roi Dayan
@ 2016-12-13  5:33 ` Roi Dayan
  2016-12-22  0:10 ` [PATCH iproute2 0/2] Man page fixes Stephen Hemminger
  2 siblings, 0 replies; 5+ messages in thread
From: Roi Dayan @ 2016-12-13  5:33 UTC (permalink / raw)
  To: Stephen Hemminger; +Cc: netdev, Amir Vadai, Hadar Hen Zion, Roi Dayan

To be installed with the other man pages.

Fixes: d57639a475a9 ("tc/act_tunnel: Introduce ip tunnel action")
Signed-off-by: Roi Dayan <roid@mellanox.com>
Reviewed-by: Amir Vadai <amir@vadai.me>
---
 man/man8/Makefile | 1 +
 1 file changed, 1 insertion(+)

diff --git a/man/man8/Makefile b/man/man8/Makefile
index de6f249..d4cb01a 100644
--- a/man/man8/Makefile
+++ b/man/man8/Makefile
@@ -17,6 +17,7 @@ MAN8PAGES = $(TARGETS) ip.8 arpd.8 lnstat.8 routel.8 rtacct.8 rtmon.8 rtpr.8 ss.
 	tc-tcindex.8 tc-u32.8 tc-matchall.8 \
 	tc-connmark.8 tc-csum.8 tc-mirred.8 tc-nat.8 tc-pedit.8 tc-police.8 \
 	tc-simple.8 tc-skbedit.8 tc-vlan.8 tc-xt.8  tc-ife.8 tc-skbmod.8 \
+	tc-tunnel_key.8 \
 	devlink.8 devlink-dev.8 devlink-monitor.8 devlink-port.8 devlink-sb.8
 
 all: $(TARGETS)
-- 
2.7.4

^ permalink raw reply related	[flat|nested] 5+ messages in thread

* Re: [PATCH iproute2 1/2] tc: flower: Fix typo in the flower man page
  2016-12-13  5:33 ` [PATCH iproute2 1/2] tc: flower: Fix typo in the flower man page Roi Dayan
@ 2016-12-15 12:56   ` Simon Horman
  0 siblings, 0 replies; 5+ messages in thread
From: Simon Horman @ 2016-12-15 12:56 UTC (permalink / raw)
  To: Roi Dayan; +Cc: Stephen Hemminger, netdev, Amir Vadai, Hadar Hen Zion

On Tue, Dec 13, 2016 at 07:33:51AM +0200, Roi Dayan wrote:
> Replace vlan_eth_type with vlan_ethtype.
> 
> Fixes: 745d91726006 ("tc: flower: Introduce vlan support")
> Signed-off-by: Roi Dayan <roid@mellanox.com>
> Reviewed-by: Hadar Hen Zion <hadarh@mellanox.com>

Reviewed-by: Simon Horman <simon.horman@netronome.com>

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH iproute2 0/2] Man page fixes
  2016-12-13  5:33 [PATCH iproute2 0/2] Man page fixes Roi Dayan
  2016-12-13  5:33 ` [PATCH iproute2 1/2] tc: flower: Fix typo in the flower man page Roi Dayan
  2016-12-13  5:33 ` [PATCH iproute2 2/2] tc: tunnel_key: Add tc-tunnel_key man page to Makefile Roi Dayan
@ 2016-12-22  0:10 ` Stephen Hemminger
  2 siblings, 0 replies; 5+ messages in thread
From: Stephen Hemminger @ 2016-12-22  0:10 UTC (permalink / raw)
  To: Roi Dayan; +Cc: netdev, Amir Vadai, Hadar Hen Zion

On Tue, 13 Dec 2016 07:33:50 +0200
Roi Dayan <roid@mellanox.com> wrote:

> Hi,
> 
> The 2 patches are man page related only.
> First fixes a typo and second adding missing man page to the Makefile.
> 
> Thanks
> 
> Roi Dayan (2):
>   tc: flower: Fix typo in the flower man page
>   tc: tunnel_key: Add tc-tunnel_key man page to Makefile
> 
>  man/man8/Makefile    | 1 +
>  man/man8/tc-flower.8 | 4 ++--
>  2 files changed, 3 insertions(+), 2 deletions(-)
> 

Applied thanks.

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2016-12-22  0:10 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-12-13  5:33 [PATCH iproute2 0/2] Man page fixes Roi Dayan
2016-12-13  5:33 ` [PATCH iproute2 1/2] tc: flower: Fix typo in the flower man page Roi Dayan
2016-12-15 12:56   ` Simon Horman
2016-12-13  5:33 ` [PATCH iproute2 2/2] tc: tunnel_key: Add tc-tunnel_key man page to Makefile Roi Dayan
2016-12-22  0:10 ` [PATCH iproute2 0/2] Man page fixes Stephen Hemminger

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.