Show a cover letter.

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

{
    "id": 47446,
    "url": "http://patches.dpdk.org/api/covers/47446/?format=api",
    "web_url": "http://patches.dpdk.org/project/dpdk/cover/1540494678-64299-1-git-send-email-yipeng1.wang@intel.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": "<1540494678-64299-1-git-send-email-yipeng1.wang@intel.com>",
    "list_archive_url": "https://inbox.dpdk.org/dev/1540494678-64299-1-git-send-email-yipeng1.wang@intel.com",
    "date": "2018-10-25T19:11:12",
    "name": "[v3,0/6] hash: improve multiple places",
    "submitter": {
        "id": 754,
        "url": "http://patches.dpdk.org/api/people/754/?format=api",
        "name": "Wang, Yipeng1",
        "email": "yipeng1.wang@intel.com"
    },
    "mbox": "http://patches.dpdk.org/project/dpdk/cover/1540494678-64299-1-git-send-email-yipeng1.wang@intel.com/mbox/",
    "series": [
        {
            "id": 2106,
            "url": "http://patches.dpdk.org/api/series/2106/?format=api",
            "web_url": "http://patches.dpdk.org/project/dpdk/list/?series=2106",
            "date": "2018-10-25T19:11:12",
            "name": "hash: improve multiple places",
            "version": 3,
            "mbox": "http://patches.dpdk.org/series/2106/mbox/"
        }
    ],
    "comments": "http://patches.dpdk.org/api/covers/47446/comments/",
    "headers": {
        "Return-Path": "<dev-bounces@dpdk.org>",
        "X-Original-To": "patchwork@dpdk.org",
        "Delivered-To": "patchwork@dpdk.org",
        "Received": [
            "from [92.243.14.124] (localhost [127.0.0.1])\n\tby dpdk.org (Postfix) with ESMTP id 169775B3A;\n\tFri, 26 Oct 2018 04:16:40 +0200 (CEST)",
            "from mga03.intel.com (mga03.intel.com [134.134.136.65])\n\tby dpdk.org (Postfix) with ESMTP id 9CC402BF3\n\tfor <dev@dpdk.org>; Fri, 26 Oct 2018 04:16:38 +0200 (CEST)",
            "from orsmga001.jf.intel.com ([10.7.209.18])\n\tby orsmga103.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384;\n\t25 Oct 2018 19:16:37 -0700",
            "from skx-yipeng.jf.intel.com ([10.54.81.175])\n\tby orsmga001.jf.intel.com with ESMTP; 25 Oct 2018 19:16:37 -0700"
        ],
        "X-Amp-Result": "SKIPPED(no attachment in message)",
        "X-Amp-File-Uploaded": "False",
        "X-ExtLoop1": "1",
        "X-IronPort-AV": "E=Sophos;i=\"5.54,426,1534834800\"; d=\"scan'208\";a=\"102770302\"",
        "From": "Yipeng Wang <yipeng1.wang@intel.com>",
        "To": "bruce.richardson@intel.com",
        "Cc": "stephen@networkplumber.org, dev@dpdk.org, yipeng1.wang@intel.com,\n\thonnappa.nagarahalli@arm.com, sameh.gobriel@intel.com",
        "Date": "Thu, 25 Oct 2018 12:11:12 -0700",
        "Message-Id": "<1540494678-64299-1-git-send-email-yipeng1.wang@intel.com>",
        "X-Mailer": "git-send-email 2.7.4",
        "In-Reply-To": "<1540404570-102126-1-git-send-email-yipeng1.wang@intel.com>",
        "References": "<1540404570-102126-1-git-send-email-yipeng1.wang@intel.com>",
        "Subject": "[dpdk-dev] [PATCH v3 0/6] hash: improve multiple places",
        "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\t<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\t<mailto:dev-request@dpdk.org?subject=subscribe>",
        "Errors-To": "dev-bounces@dpdk.org",
        "Sender": "\"dev\" <dev-bounces@dpdk.org>"
    },
    "content": "This patch set depends on Honnappa's patch set:\nhttp://patchwork.dpdk.org/cover/47268/\n\nThis patch set fixes/improves a couple of places mostly\non unit tests:\n\ncommit 1: remove unnecessary code in hash library.\ncommit 2: use jhash in multiwriter unit test.\ncommit 3: cover more test case in unit test.\ncommit 4: improve readwrite test to consider the extendable table.\ncommit 5: remove scaling unit test.\ncommit 6: add readwrite test to meson and autotest file.\n\nv2->v3:\n* Split commit 4 to commit 3 and 4 (Honnappa)\n* Remove hard coded macro (Bruce)\n* Add commit 6 fix to add readwrite test to autotest files.\n* Remove unnecessary header in commit 1 (Mattias)\n\nV1->V2:\n* In commit 2 change use_jhash to a macro instead of a hard coded\nlocal variable (Bruce).\n* Add commit 4 to remove scaling unit test (Bruce).\n\nSigned-off-by: Yipeng Wang <yipeng1.wang@intel.com>\n\nYipeng Wang (6):\n  hash: fix unnecessary pause\n  test/hash: change multiwriter test to use jhash\n  test/hash: test more corner cases in unit test\n  test/hash: add readwrite test for ext table\n  test/hash: remove hash scaling unit test\n  test/hash: fix to add read-write test to autotest\n\n lib/librte_hash/rte_cuckoo_hash.c |   5 +-\n test/test/Makefile                |   1 -\n test/test/autotest_data.py        |  12 +--\n test/test/meson.build             |   3 +-\n test/test/test_hash_multiwriter.c |   3 +-\n test/test/test_hash_readwrite.c   |  73 ++++++++++++---\n test/test/test_hash_scaling.c     | 191 --------------------------------------\n 7 files changed, 70 insertions(+), 218 deletions(-)\n delete mode 100644 test/test/test_hash_scaling.c"
}