All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH iproute2] Fix warning in tc-skbprio.8 manpage
@ 2018-11-02 10:57 Luca Boccassi
  2018-11-02 15:19 ` Edward Cree
                   ` (2 more replies)
  0 siblings, 3 replies; 5+ messages in thread
From: Luca Boccassi @ 2018-11-02 10:57 UTC (permalink / raw)
  To: netdev; +Cc: stephen, dsahern

". If" gets interpreted as a macro, so move the period to the previous
line:

  33: warning: macro `If' not defined

Fixes: 141b55f8544e ("Add SKB Priority qdisc support in tc(8)")

Signed-off-by: Luca Boccassi <bluca@debian.org>
---
 man/man8/tc-skbprio.8 | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/man/man8/tc-skbprio.8 b/man/man8/tc-skbprio.8
index 844bbf46..8b259839 100644
--- a/man/man8/tc-skbprio.8
+++ b/man/man8/tc-skbprio.8
@@ -29,8 +29,8 @@ While SKB Priority Queue is agnostic to how
 .B skb->priority
 is assigned. A typical use case is to copy
 the 6-bit DS field of IPv4 and IPv6 packets using
-.BR tc-skbedit (8)
-. If
+.BR tc-skbedit (8) .
+If
 .B skb->priority
 is greater or equal to 64, the priority is assumed to be 63.
 Priorities less than 64 are taken at face value.
-- 
2.19.1

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

* Re: [PATCH iproute2] Fix warning in tc-skbprio.8 manpage
  2018-11-02 10:57 [PATCH iproute2] Fix warning in tc-skbprio.8 manpage Luca Boccassi
@ 2018-11-02 15:19 ` Edward Cree
  2018-11-02 15:28   ` Luca Boccassi
  2018-11-02 15:27 ` [PATCH iproute2 v2] " Luca Boccassi
  2018-11-09 16:06 ` [PATCH iproute2] " Stephen Hemminger
  2 siblings, 1 reply; 5+ messages in thread
From: Edward Cree @ 2018-11-02 15:19 UTC (permalink / raw)
  To: Luca Boccassi, netdev; +Cc: stephen, dsahern

On 02/11/18 10:57, Luca Boccassi wrote:
> ". If" gets interpreted as a macro, so move the period to the previous
> line:
>
>   33: warning: macro `If' not defined
>
> Fixes: 141b55f8544e ("Add SKB Priority qdisc support in tc(8)")
>
> Signed-off-by: Luca Boccassi <bluca@debian.org>
> ---
>  man/man8/tc-skbprio.8 | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/man/man8/tc-skbprio.8 b/man/man8/tc-skbprio.8
> index 844bbf46..8b259839 100644
> --- a/man/man8/tc-skbprio.8
> +++ b/man/man8/tc-skbprio.8
> @@ -29,8 +29,8 @@ While SKB Priority Queue is agnostic to how
>  .B skb->priority
>  is assigned. A typical use case is to copy
>  the 6-bit DS field of IPv4 and IPv6 packets using
> -.BR tc-skbedit (8)
> -. If
> +.BR tc-skbedit (8) .
> +If
Won't that make the full-stop bold?
Removing the space, i.e.
.BR rc-skbedit (8).
ought to work.
-Ed
>  .B skb->priority
>  is greater or equal to 64, the priority is assumed to be 63.
>  Priorities less than 64 are taken at face value.

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

* [PATCH iproute2 v2] Fix warning in tc-skbprio.8 manpage
  2018-11-02 10:57 [PATCH iproute2] Fix warning in tc-skbprio.8 manpage Luca Boccassi
  2018-11-02 15:19 ` Edward Cree
@ 2018-11-02 15:27 ` Luca Boccassi
  2018-11-09 16:06 ` [PATCH iproute2] " Stephen Hemminger
  2 siblings, 0 replies; 5+ messages in thread
From: Luca Boccassi @ 2018-11-02 15:27 UTC (permalink / raw)
  To: netdev; +Cc: stephen, dsahern, ecree

". If" gets interpreted as a macro, so move the period to the previous
line:

  33: warning: macro `If' not defined

Fixes: 141b55f8544e ("Add SKB Priority qdisc support in tc(8)")

Signed-off-by: Luca Boccassi <bluca@debian.org>
---
v2: remove extra space to avoid making the full-stop bold.

 man/man8/tc-skbprio.8 | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/man/man8/tc-skbprio.8 b/man/man8/tc-skbprio.8
index 844bbf46..a0a316ba 100644
--- a/man/man8/tc-skbprio.8
+++ b/man/man8/tc-skbprio.8
@@ -29,8 +29,8 @@ While SKB Priority Queue is agnostic to how
 .B skb->priority
 is assigned. A typical use case is to copy
 the 6-bit DS field of IPv4 and IPv6 packets using
-.BR tc-skbedit (8)
-. If
+.BR tc-skbedit (8).
+If
 .B skb->priority
 is greater or equal to 64, the priority is assumed to be 63.
 Priorities less than 64 are taken at face value.
-- 
2.19.1

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

* Re: [PATCH iproute2] Fix warning in tc-skbprio.8 manpage
  2018-11-02 15:19 ` Edward Cree
@ 2018-11-02 15:28   ` Luca Boccassi
  0 siblings, 0 replies; 5+ messages in thread
From: Luca Boccassi @ 2018-11-02 15:28 UTC (permalink / raw)
  To: Edward Cree, netdev; +Cc: stephen, dsahern

[-- Attachment #1: Type: text/plain, Size: 1116 bytes --]

On Fri, 2018-11-02 at 15:19 +0000, Edward Cree wrote:
> On 02/11/18 10:57, Luca Boccassi wrote:
> > ". If" gets interpreted as a macro, so move the period to the
> > previous
> > line:
> > 
> >   33: warning: macro `If' not defined
> > 
> > Fixes: 141b55f8544e ("Add SKB Priority qdisc support in tc(8)")
> > 
> > Signed-off-by: Luca Boccassi <bluca@debian.org>
> > ---
> >  man/man8/tc-skbprio.8 | 4 ++--
> >  1 file changed, 2 insertions(+), 2 deletions(-)
> > 
> > diff --git a/man/man8/tc-skbprio.8 b/man/man8/tc-skbprio.8
> > index 844bbf46..8b259839 100644
> > --- a/man/man8/tc-skbprio.8
> > +++ b/man/man8/tc-skbprio.8
> > @@ -29,8 +29,8 @@ While SKB Priority Queue is agnostic to how
> >  .B skb->priority
> >  is assigned. A typical use case is to copy
> >  the 6-bit DS field of IPv4 and IPv6 packets using
> > -.BR tc-skbedit (8)
> > -. If
> > +.BR tc-skbedit (8) .
> > +If
> 
> Won't that make the full-stop bold?
> Removing the space, i.e.
> .BR rc-skbedit (8).
> ought to work.
> -Ed

Yes you are right, fixed in v2, thanks.

-- 
Kind regards,
Luca Boccassi

[-- Attachment #2: This is a digitally signed message part --]
[-- Type: application/pgp-signature, Size: 488 bytes --]

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

* Re: [PATCH iproute2] Fix warning in tc-skbprio.8 manpage
  2018-11-02 10:57 [PATCH iproute2] Fix warning in tc-skbprio.8 manpage Luca Boccassi
  2018-11-02 15:19 ` Edward Cree
  2018-11-02 15:27 ` [PATCH iproute2 v2] " Luca Boccassi
@ 2018-11-09 16:06 ` Stephen Hemminger
  2 siblings, 0 replies; 5+ messages in thread
From: Stephen Hemminger @ 2018-11-09 16:06 UTC (permalink / raw)
  To: Luca Boccassi; +Cc: netdev, dsahern

On Fri,  2 Nov 2018 10:57:41 +0000
Luca Boccassi <bluca@debian.org> wrote:

> ". If" gets interpreted as a macro, so move the period to the previous
> line:
> 
>   33: warning: macro `If' not defined
> 
> Fixes: 141b55f8544e ("Add SKB Priority qdisc support in tc(8)")
> 
> Signed-off-by: Luca Boccassi <bluca@debian.org>

Applied

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

end of thread, other threads:[~2018-11-10  1:47 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-11-02 10:57 [PATCH iproute2] Fix warning in tc-skbprio.8 manpage Luca Boccassi
2018-11-02 15:19 ` Edward Cree
2018-11-02 15:28   ` Luca Boccassi
2018-11-02 15:27 ` [PATCH iproute2 v2] " Luca Boccassi
2018-11-09 16:06 ` [PATCH iproute2] " 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.