Show a cover letter.

GET /api/covers/75876/?format=api
HTTP 200 OK
Allow: GET, HEAD, OPTIONS
Content-Type: application/json
Vary: Accept

{
    "id": 75876,
    "url": "http://patches.dpdk.org/api/covers/75876/?format=api",
    "web_url": "http://patches.dpdk.org/project/dpdk/cover/20200824110130.16647-1-huwei013@chinasoftinc.com/",
    "project": {
        "id": 1,
        "url": "http://patches.dpdk.org/api/projects/1/?format=api",
        "name": "DPDK",
        "link_name": "dpdk",
        "list_id": "dev.dpdk.org",
        "list_email": "dev@dpdk.org",
        "web_url": "http://core.dpdk.org",
        "scm_url": "git://dpdk.org/dpdk",
        "webscm_url": "http://git.dpdk.org/dpdk",
        "list_archive_url": "https://inbox.dpdk.org/dev",
        "list_archive_url_format": "https://inbox.dpdk.org/dev/{}",
        "commit_url_format": ""
    },
    "msgid": "<20200824110130.16647-1-huwei013@chinasoftinc.com>",
    "list_archive_url": "https://inbox.dpdk.org/dev/20200824110130.16647-1-huwei013@chinasoftinc.com",
    "date": "2020-08-24T11:01:27",
    "name": "[v4,0/3] minor updates for getting queue info",
    "submitter": {
        "id": 1537,
        "url": "http://patches.dpdk.org/api/people/1537/?format=api",
        "name": "Wei Hu (Xavier)",
        "email": "huwei013@chinasoftinc.com"
    },
    "mbox": "http://patches.dpdk.org/project/dpdk/cover/20200824110130.16647-1-huwei013@chinasoftinc.com/mbox/",
    "series": [
        {
            "id": 11757,
            "url": "http://patches.dpdk.org/api/series/11757/?format=api",
            "web_url": "http://patches.dpdk.org/project/dpdk/list/?series=11757",
            "date": "2020-08-24T11:01:27",
            "name": "minor updates for getting queue info",
            "version": 4,
            "mbox": "http://patches.dpdk.org/series/11757/mbox/"
        }
    ],
    "comments": "http://patches.dpdk.org/api/covers/75876/comments/",
    "headers": {
        "Return-Path": "<dev-bounces@dpdk.org>",
        "X-Original-To": "patchwork@inbox.dpdk.org",
        "Delivered-To": "patchwork@inbox.dpdk.org",
        "Received": [
            "from dpdk.org (dpdk.org [92.243.14.124])\n\tby inbox.dpdk.org (Postfix) with ESMTP id 2BC73A04AC;\n\tMon, 24 Aug 2020 13:01:54 +0200 (CEST)",
            "from [92.243.14.124] (localhost [127.0.0.1])\n\tby dpdk.org (Postfix) with ESMTP id 6450BF90;\n\tMon, 24 Aug 2020 13:01:53 +0200 (CEST)",
            "from mail.chinasoftinc.com (unknown [114.113.233.8])\n by dpdk.org (Postfix) with ESMTP id E26A7F12\n for <dev@dpdk.org>; Mon, 24 Aug 2020 13:01:50 +0200 (CEST)",
            "from localhost.localdomain (120.133.139.157) by INCCAS002.ito.icss\n (10.168.0.60) with Microsoft SMTP Server id 14.3.487.0; Mon, 24 Aug 2020\n 19:01:48 +0800"
        ],
        "From": "\"Wei Hu (Xavier)\" <huwei013@chinasoftinc.com>",
        "To": "",
        "CC": "<dev@dpdk.org>, <xavier.huwei@huawei.com>",
        "Date": "Mon, 24 Aug 2020 19:01:27 +0800",
        "Message-ID": "<20200824110130.16647-1-huwei013@chinasoftinc.com>",
        "X-Mailer": "git-send-email 2.27.0",
        "In-Reply-To": "<20200818025132.27912-1-huwei013@chinasoftinc.com>",
        "References": "<20200818025132.27912-1-huwei013@chinasoftinc.com>",
        "MIME-Version": "1.0",
        "Content-Type": "text/plain; charset=\"UTF-8\"",
        "Content-Transfer-Encoding": "8bit",
        "X-Originating-IP": "[120.133.139.157]",
        "Subject": "[dpdk-dev] [PATCH v4 0/3] minor updates for getting queue info",
        "X-BeenThere": "dev@dpdk.org",
        "X-Mailman-Version": "2.1.15",
        "Precedence": "list",
        "List-Id": "DPDK patches and discussions <dev.dpdk.org>",
        "List-Unsubscribe": "<https://mails.dpdk.org/options/dev>,\n <mailto:dev-request@dpdk.org?subject=unsubscribe>",
        "List-Archive": "<http://mails.dpdk.org/archives/dev/>",
        "List-Post": "<mailto:dev@dpdk.org>",
        "List-Help": "<mailto:dev-request@dpdk.org?subject=help>",
        "List-Subscribe": "<https://mails.dpdk.org/listinfo/dev>,\n <mailto:dev-request@dpdk.org?subject=subscribe>",
        "Errors-To": "dev-bounces@dpdk.org",
        "Sender": "\"dev\" <dev-bounces@dpdk.org>"
    },
    "content": "This series include 3 patches.\nOne patch is a minor update to add checking whether the related Tx or Rx\nqueue has been setuped in the rte_eth_rx_queue_info_get and\nrte_eth_tx_queue_info_get API function to avoid illegal address access.\n\nAnd the other two patches for hns3 PMD driver.\n\nHuisong Li (1):\n  net/hns3: support getting Tx and Rx queue information\n\nWei Hu (Xavier) (2):\n  net/hns3: report Rx drop packets enable configuration\n  ethdev: check if queue setupped when getting queue info\n\n drivers/net/hns3/hns3_ethdev.c    | 11 +++++++++\n drivers/net/hns3/hns3_ethdev_vf.c | 11 +++++++++\n drivers/net/hns3/hns3_rxtx.c      | 37 +++++++++++++++++++++++++++++++\n drivers/net/hns3/hns3_rxtx.h      |  5 ++++-\n lib/librte_ethdev/rte_ethdev.c    | 16 +++++++++++++\n 5 files changed, 79 insertions(+), 1 deletion(-)"
}