Show a cover letter.

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

{
    "id": 52626,
    "url": "http://patches.dpdk.org/api/covers/52626/?format=api",
    "web_url": "http://patches.dpdk.org/project/dpdk/cover/20190410184118.39727-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": "<20190410184118.39727-1-yskoh@mellanox.com>",
    "list_archive_url": "https://inbox.dpdk.org/dev/20190410184118.39727-1-yskoh@mellanox.com",
    "date": "2019-04-10T18:41:14",
    "name": "[v5,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/20190410184118.39727-1-yskoh@mellanox.com/mbox/",
    "series": [
        {
            "id": 4252,
            "url": "http://patches.dpdk.org/api/series/4252/?format=api",
            "web_url": "http://patches.dpdk.org/project/dpdk/list/?series=4252",
            "date": "2019-04-10T18:41:14",
            "name": "net/mlx: remove device register remap",
            "version": 5,
            "mbox": "http://patches.dpdk.org/series/4252/mbox/"
        }
    ],
    "comments": "http://patches.dpdk.org/api/covers/52626/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 BE74D1B3FD;\n\tWed, 10 Apr 2019 20:41:25 +0200 (CEST)",
            "from mellanox.co.il (mail-il-dmz.mellanox.com [193.47.165.129])\n\tby dpdk.org (Postfix) with ESMTP id 0FC791B3EC\n\tfor <dev@dpdk.org>; Wed, 10 Apr 2019 20:41:23 +0200 (CEST)",
            "from Internal Mail-Server by MTLPINE1 (envelope-from\n\tyskoh@mellanox.com)\n\twith ESMTPS (AES256-SHA encrypted); 10 Apr 2019 21:41:22 +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 x3AIfKx0002770;\n\tWed, 10 Apr 2019 21:41:21 +0300"
        ],
        "From": "Yongseok Koh <yskoh@mellanox.com>",
        "To": "shahafs@mellanox.com",
        "Cc": "dev@dpdk.org",
        "Date": "Wed, 10 Apr 2019 11:41:14 -0700",
        "Message-Id": "<20190410184118.39727-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 v5 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\nv5:\n* fix 32-bit build issue\n* remove MLX[4|5]_UAR_SIZE and MLX[4|5]_UAR_OFFSET\n\nv4:\n* add mlx4_proc_priv_[init|uninit]() to avoid duplicate code\n* remove the number of Rx queues from the ppriv size calculation\n* move freeing ppriv to mlx4_dev_close() from mlx4_dev_stop()\n* rebase on top of \"net/mlx4: fix Tx doorbell register unmap\" [1]\n\nv3:\n* move UAR table to per-process storage\n\nv2:\n* rebase on the latest branch tip\n* fix a bug\n\n[1] http://patches.dpdk.org/patch/52435/\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            | 255 +++++++++----------------------------\n drivers/net/mlx4/mlx4.h            |  25 ++--\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            | 228 ++++++++-------------------------\n drivers/net/mlx5/mlx5.h            |  17 ++-\n drivers/net/mlx5/mlx5_defs.h       |  10 --\n drivers/net/mlx5/mlx5_ethdev.c     |   3 +\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        | 200 +++++++++++++++++------------\n drivers/net/mlx5/mlx5_vlan.c       |   3 +-\n 19 files changed, 414 insertions(+), 595 deletions(-)"
}