From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-wm0-f67.google.com (mail-wm0-f67.google.com [74.125.82.67]) by dpdk.org (Postfix) with ESMTP id 452A24CBB for ; Fri, 27 Jul 2018 12:18:03 +0200 (CEST) Received: by mail-wm0-f67.google.com with SMTP id h20-v6so4887032wmb.4 for ; Fri, 27 Jul 2018 03:18:03 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=from:to:cc:subject:date:message-id:in-reply-to:references; bh=lcN9r25GYNMJyo+tTMXl+qstv7r7/8Iu4WS4H4vBXTo=; b=F6DCPLLNqp5GR7IWkz+VJmu6youPcCsH7vUiL/GmkMm6KfLuAEGO6ru5kVJGTeajFe lKu+ZYHMMqPZd/bzhQA9JsaP5ukQRv0CJFc5990aZPWr+FlEEbDf4/q3RiyMQZcZb8mj isQr+KovY1O3t/yHqZQP0qt4IKU3hPmOuWPb32CUsaOCRo2wuP9HzSGffVhY5YjOZGuj UcS3L1pygSo4w+sW8kU6i+qonwsQo93qY+A/lO16buz3H2NWy51w9lXSedvS3MaReBIm gFJcb4ZSbMd6ihtP//0XzlXcySPo+cJTCD2CUaztuzEJq2ZHBV8EMR4RiHLUpRDbF4vT y8KA== 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:in-reply-to :references; bh=lcN9r25GYNMJyo+tTMXl+qstv7r7/8Iu4WS4H4vBXTo=; b=c06ulaedqY26U6jOAsPtqmzYI75wn4QThmIhmzSUFudmFLY3iBVqR+eSNUAZd+p7zN GH+YHWZKDSxSYYonpECdAI7wvZb0eOitkY4z0Cp0vLsaMDsqtSEPvAbE1ppT+yZIN9ys MR/5wzTtEXb8FNApn9alKq1+YkO5E3lZCWxDFj0MVCLkytkrJ0XuhfyYWNgSBNPkuLVw Mw4o/anDKHo4Up54AdpgZN7H8+SL5xIO/rBoa+WRMuzvEW4aJYtek9T4TcvVDFaL5t41 Rwy3IbgQlmk2dfBKygF/mtmnkWjzSRyyqRBaNWPnIoIKZddGfbnoZ5TMMudhH4fV4tTK xf5w== X-Gm-Message-State: AOUpUlG5yDM9iaJEQC/iGndVl0KHk/1Nl1BFQW/mNlHV4dh8cD6YPMWU VtXkRiq3iFfDm5coWlHfZbY= X-Google-Smtp-Source: AAOMgpcG7NlinPgxBxxIQ0j0uQlRkt1qh8n31R8sCVops6tJ5HesBk0JtM9JpWitNsDqK/FCldJyKw== X-Received: by 2002:a1c:3:: with SMTP id 3-v6mr3627119wma.99.1532686682986; Fri, 27 Jul 2018 03:18:02 -0700 (PDT) Received: from localhost ([2a00:23c5:be94:4600:7b12:f8a0:fd52:f87d]) by smtp.gmail.com with ESMTPSA id d7-v6sm3618161wro.92.2018.07.27.03.18.01 (version=TLS1_2 cipher=ECDHE-RSA-CHACHA20-POLY1305 bits=256/256); Fri, 27 Jul 2018 03:18:01 -0700 (PDT) From: luca.boccassi@gmail.com To: Jerin Jacob Cc: Andrew Rybchenko , dpdk stable Date: Fri, 27 Jul 2018 11:17:41 +0100 Message-Id: <20180727101748.30228-5-luca.boccassi@gmail.com> X-Mailer: git-send-email 2.18.0 In-Reply-To: <20180727101748.30228-1-luca.boccassi@gmail.com> References: <20180724160752.20287-34-luca.boccassi@gmail.com> <20180727101748.30228-1-luca.boccassi@gmail.com> Subject: [dpdk-stable] patch 'ethdev: fix queue statistics mapping documentation' has been queued to LTS release 16.11.8 X-BeenThere: stable@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: patches for DPDK stable branches List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 27 Jul 2018 10:18:03 -0000 Hi, FYI, your patch has been queued to LTS release 16.11.8 Note it hasn't been pushed to http://dpdk.org/browse/dpdk-stable yet. It will be pushed if I get no objections before 07/29/18. So please shout if anyone has objections. Thanks. Luca Boccassi --- >>From af53cc748280ed3d36b73c910def3bd45c7dd414 Mon Sep 17 00:00:00 2001 From: Jerin Jacob Date: Fri, 29 Jun 2018 15:14:43 +0530 Subject: [PATCH] ethdev: fix queue statistics mapping documentation [ upstream commit 97f5f8cbadbeb47cc283251564e56a6c20ceec00 ] The RTE_MAX_ETHPORT_QUEUE_STATS_MAPS does not exists, change to the correct definition(RTE_ETHDEV_QUEUE_STAT_CNTRS) Fixes: 5de201df8927 ("ethdev: add stats per queue") Signed-off-by: Jerin Jacob Reviewed-by: Andrew Rybchenko --- lib/librte_ether/rte_ethdev.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/librte_ether/rte_ethdev.h b/lib/librte_ether/rte_ethdev.h index da33b9d50..1b6d2187b 100644 --- a/lib/librte_ether/rte_ethdev.h +++ b/lib/librte_ether/rte_ethdev.h @@ -2325,7 +2325,7 @@ void rte_eth_xstats_reset(uint8_t port_id); * @param stat_idx * The per-queue packet statistics functionality number that the transmit * queue is to be assigned. - * The value must be in the range [0, RTE_MAX_ETHPORT_QUEUE_STATS_MAPS - 1]. + * The value must be in the range [0, RTE_ETHDEV_QUEUE_STAT_CNTRS - 1]. * @return * Zero if successful. Non-zero otherwise. */ @@ -2345,7 +2345,7 @@ int rte_eth_dev_set_tx_queue_stats_mapping(uint8_t port_id, * @param stat_idx * The per-queue packet statistics functionality number that the receive * queue is to be assigned. - * The value must be in the range [0, RTE_MAX_ETHPORT_QUEUE_STATS_MAPS - 1]. + * The value must be in the range [0, RTE_ETHDEV_QUEUE_STAT_CNTRS - 1]. * @return * Zero if successful. Non-zero otherwise. */ -- 2.18.0