From patchwork Fri Nov 2 10:57:41 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Luca Boccassi X-Patchwork-Id: 992270 X-Patchwork-Delegate: shemminger@vyatta.com Return-Path: X-Original-To: patchwork-incoming-netdev@ozlabs.org Delivered-To: patchwork-incoming-netdev@ozlabs.org Authentication-Results: ozlabs.org; spf=none (mailfrom) smtp.mailfrom=vger.kernel.org (client-ip=209.132.180.67; helo=vger.kernel.org; envelope-from=netdev-owner@vger.kernel.org; receiver=) Authentication-Results: ozlabs.org; dmarc=none (p=none dis=none) header.from=debian.org Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by ozlabs.org (Postfix) with ESMTP id 42mfDd0jKnzB4Vl for ; Fri, 2 Nov 2018 21:57:53 +1100 (AEDT) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1726693AbeKBUEf (ORCPT ); Fri, 2 Nov 2018 16:04:35 -0400 Received: from mail-wr1-f66.google.com ([209.85.221.66]:41128 "EHLO mail-wr1-f66.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1725935AbeKBUEf (ORCPT ); Fri, 2 Nov 2018 16:04:35 -0400 Received: by mail-wr1-f66.google.com with SMTP id x12-v6so1516108wrw.8 for ; Fri, 02 Nov 2018 03:57:50 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:from:to:cc:subject:date:message-id:mime-version :content-transfer-encoding; bh=FiAs7VFKNBq5D14bHMXt3An1Nb7uDm3qwXFT7hKYRb8=; b=I/1/D3PldnCaAjT0KItg7MTupE+12TAQ26NNk2DfUlRMK/9aMxiJp2NZPxjgbp8vTw 3TMHqyMZBoTqJ652UYIDZTA8Qwt6dolA7KzwnsoS8rogjDiakEZ0CIWcOLzSg3rZMKIb ly1Ek+WCBBLxjvPsSvTiKTwldepfJFAK3bkuztXMdwExasGVz0wUoQq6w/TSzQkNLA/V 5gPr2lnPvbM8Im8EOyUob9Rf5ATX3cQLZ/tK4E86YZLEGznZWd8EryReH/nBDaZUBZKA 9JMlDoY0G/ZMNVe2vrh0CUVSaFqyavmYAsUOd7WKfXCPLRXGmvZNbJmLjGf7GGbWDMzZ 1Faw== X-Gm-Message-State: AGRZ1gJtIU6l4LXiYt1ab48uofBclW98AwqZlgoplZ3yvDUe+9oGlqTt nIR8aGCgKBHroh6Sz6O0y/Dfm2mBcarXTQ== X-Google-Smtp-Source: AJdET5fSCWw16b2Ron7KV6FQsTuYTUDV+X5XscVJAD54Dbhnv4d66vz+eYHDQK/FlO/Xx+S4G31bhQ== X-Received: by 2002:adf:f542:: with SMTP id j2-v6mr1326530wrp.70.1541156269024; Fri, 02 Nov 2018 03:57:49 -0700 (PDT) Received: from localhost ([88.98.246.218]) by smtp.gmail.com with ESMTPSA id x186-v6sm17735691wmx.24.2018.11.02.03.57.47 (version=TLS1_2 cipher=ECDHE-RSA-CHACHA20-POLY1305 bits=256/256); Fri, 02 Nov 2018 03:57:47 -0700 (PDT) From: Luca Boccassi To: netdev@vger.kernel.org Cc: stephen@networkplumber.org, dsahern@gmail.com Subject: [PATCH iproute2] Fix warning in tc-skbprio.8 manpage Date: Fri, 2 Nov 2018 10:57:41 +0000 Message-Id: <20181102105741.25381-1-bluca@debian.org> X-Mailer: git-send-email 2.19.1 MIME-Version: 1.0 Sender: netdev-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: netdev@vger.kernel.org ". 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 --- 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.