Show a cover letter.

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

{
    "id": 52314,
    "url": "http://patches.dpdk.org/api/covers/52314/?format=api",
    "web_url": "http://patches.dpdk.org/project/dpdk/cover/20190405013357.14503-1-yskoh@mellanox.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": "<20190405013357.14503-1-yskoh@mellanox.com>",
    "list_archive_url": "https://inbox.dpdk.org/dev/20190405013357.14503-1-yskoh@mellanox.com",
    "date": "2019-04-05T01:33:53",
    "name": "[v3,0/4] net/mlx: remove device register remap",
    "submitter": {
        "id": 636,
        "url": "http://patches.dpdk.org/api/people/636/?format=api",
        "name": "Yongseok Koh",
        "email": "yskoh@mellanox.com"
    },
    "mbox": "http://patches.dpdk.org/project/dpdk/cover/20190405013357.14503-1-yskoh@mellanox.com/mbox/",
    "series": [
        {
            "id": 4126,
            "url": "http://patches.dpdk.org/api/series/4126/?format=api",
            "web_url": "http://patches.dpdk.org/project/dpdk/list/?series=4126",
            "date": "2019-04-05T01:33:53",
            "name": "net/mlx: remove device register remap",
            "version": 3,
            "mbox": "http://patches.dpdk.org/series/4126/mbox/"
        }
    ],
    "comments": "http://patches.dpdk.org/api/covers/52314/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 D75661B3EA;\n\tFri,  5 Apr 2019 03:34:08 +0200 (CEST)",
            "from mellanox.co.il (mail-il-dmz.mellanox.com [193.47.165.129])\n\tby dpdk.org (Postfix) with ESMTP id 8BE531B3D8\n\tfor <dev@dpdk.org>; Fri,  5 Apr 2019 03:34:06 +0200 (CEST)",
            "from Internal Mail-Server by MTLPINE1 (envelope-from\n\tyskoh@mellanox.com)\n\twith ESMTPS (AES256-SHA encrypted); 5 Apr 2019 04:34:04 +0300",
            "from scfae-sc-2.mti.labs.mlnx (scfae-sc-2.mti.labs.mlnx\n\t[10.101.0.96])\n\tby labmailer.mlnx (8.13.8/8.13.8) with ESMTP id x351Y2kS018492;\n\tFri, 5 Apr 2019 04:34:03 +0300"
        ],
        "From": "Yongseok Koh <yskoh@mellanox.com>",
        "To": "shahafs@mellanox.com",
        "Cc": "dev@dpdk.org",
        "Date": "Thu,  4 Apr 2019 18:33:53 -0700",
        "Message-Id": "<20190405013357.14503-1-yskoh@mellanox.com>",
        "X-Mailer": "git-send-email 2.11.0",
        "In-Reply-To": "<20190325193627.19726-1-yskoh@mellanox.com>",
        "References": "<20190325193627.19726-1-yskoh@mellanox.com>",
        "Subject": "[dpdk-dev] [PATCH v3 0/4] net/mlx: remove device register remap",
        "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 patchset lifts the requirement of reserving huge virtual address space\nand remapping device UAR register on to it in order to use the same address\nbetween primary and secondary process.\n\nv3:\n* move UAR table to per-process storage\n\nv2:\n* rebase on the latest branch tip\n* fix a bug\n\nYongseok Koh (4):\n  net/mlx5: fix recursive inclusion of header file\n  net/mlx5: remove redundant queue index\n  net/mlx5: remove device register remap\n  net/mlx4: remove device register remap\n\n drivers/net/mlx4/mlx4.c            | 232 +++++++------------------------------\n drivers/net/mlx4/mlx4.h            |  15 ++-\n drivers/net/mlx4/mlx4_prm.h        |   3 +-\n drivers/net/mlx4/mlx4_rxtx.c       |   2 +-\n drivers/net/mlx4/mlx4_rxtx.h       |   6 +-\n drivers/net/mlx4/mlx4_txq.c        | 170 ++++++++++++++++-----------\n drivers/net/mlx5/mlx5.c            | 198 ++++---------------------------\n drivers/net/mlx5/mlx5.h            |  16 ++-\n drivers/net/mlx5/mlx5_ethdev.c     |  17 +++\n drivers/net/mlx5/mlx5_flow.c       |   5 +-\n drivers/net/mlx5/mlx5_flow_dv.c    |   4 +-\n drivers/net/mlx5/mlx5_flow_verbs.c |   5 +-\n drivers/net/mlx5/mlx5_rxq.c        |  29 +++--\n drivers/net/mlx5/mlx5_rxtx.h       |  21 ++--\n drivers/net/mlx5/mlx5_stats.c      |  15 +--\n drivers/net/mlx5/mlx5_trigger.c    |   8 +-\n drivers/net/mlx5/mlx5_txq.c        | 199 ++++++++++++++++++-------------\n drivers/net/mlx5/mlx5_vlan.c       |   3 +-\n 18 files changed, 378 insertions(+), 570 deletions(-)"
}