Show a cover letter.

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

{
    "id": 42147,
    "url": "http://patches.dpdk.org/api/covers/42147/?format=api",
    "web_url": "http://patches.dpdk.org/project/dpdk/cover/1530619789-33337-1-git-send-email-alejandro.lucero@netronome.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": "<1530619789-33337-1-git-send-email-alejandro.lucero@netronome.com>",
    "list_archive_url": "https://inbox.dpdk.org/dev/1530619789-33337-1-git-send-email-alejandro.lucero@netronome.com",
    "date": "2018-07-03T12:09:43",
    "name": "[v2,0/6] use IOVAs check based on DMA mask",
    "submitter": {
        "id": 270,
        "url": "http://patches.dpdk.org/api/people/270/?format=api",
        "name": "Alejandro Lucero",
        "email": "alejandro.lucero@netronome.com"
    },
    "mbox": "http://patches.dpdk.org/project/dpdk/cover/1530619789-33337-1-git-send-email-alejandro.lucero@netronome.com/mbox/",
    "series": [
        {
            "id": 371,
            "url": "http://patches.dpdk.org/api/series/371/?format=api",
            "web_url": "http://patches.dpdk.org/project/dpdk/list/?series=371",
            "date": "2018-07-03T12:09:43",
            "name": "use IOVAs check based on DMA mask",
            "version": 2,
            "mbox": "http://patches.dpdk.org/series/371/mbox/"
        }
    ],
    "comments": "http://patches.dpdk.org/api/covers/42147/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 DF91F1BE65;\n\tTue,  3 Jul 2018 14:10:00 +0200 (CEST)",
            "from netronome.com (host-79-78-33-110.static.as9105.net\n\t[79.78.33.110]) by dpdk.org (Postfix) with ESMTP id CC1C41BB6F;\n\tTue,  3 Jul 2018 14:09:57 +0200 (CEST)",
            "from netronome.com (localhost [127.0.0.1])\n\tby netronome.com (8.14.4/8.14.4/Debian-4.1ubuntu1) with ESMTP id\n\tw63C9rew033382; Tue, 3 Jul 2018 13:09:53 +0100",
            "(from alucero@localhost)\n\tby netronome.com (8.14.4/8.14.4/Submit) id w63C9p7P033380;\n\tTue, 3 Jul 2018 13:09:51 +0100"
        ],
        "From": "Alejandro Lucero <alejandro.lucero@netronome.com>",
        "To": "dev@dpdk.org",
        "Cc": "stable@dpdk.org, anatoly.burakov@intel.com, maxime.coquelin@redhat.com",
        "Date": "Tue,  3 Jul 2018 13:09:43 +0100",
        "Message-Id": "<1530619789-33337-1-git-send-email-alejandro.lucero@netronome.com>",
        "X-Mailer": "git-send-email 1.9.1",
        "Subject": "[dpdk-dev] [PATCH v2 0/6] use IOVAs check based on DMA mask",
        "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 adds, mainly, a check for ensuring IOVAs are within a\nrestricted range due to addressing limitations with some devices. There\nare two known cases: NFP and IOMMU VT-d emulation.\n\nWith this check IOVAs out of range are detected and PMDs can abort\ninitialization. For the VT-d case, IOVA VA mode is allowed as long as\nIOVAs are within the supported range, avoiding to forbid IOVA VA by\ndefault.\n\nFor the addressing limitations known cases, there are just 40(NFP) or\n39(VT-d) bits for handling IOVAs. When using IOVA PA, those limitations\nimply 1TB(NFP) or 512M(VT-d) as upper limits, which is likely enough for\nmost systems. With machines using more memory, the added check will\nensure IOVAs within the range.\n\nWith IOVA VA, and because the way the Linux kernel serves mmap calls\nin 64 bits systems, 39 or 40 bits are not enough. It is possible to\ngive an address hint with a lower starting address than the default one\nused by the kernel, and then ensuring the mmap uses that hint or hint plus\nsome offset. With 64 bits systems, the process virtual address space is\nlarge enoguh for doing the hugepages mmaping within the supported range\nwhen those addressing limitations exist. This patchset also adds a change\nfor using such a hint making the use of IOVA VA a more than likely\npossibility when there are those addressing limitations.\n\nThe check is not done by default but just when it is required. This\npatchset adds the check for NFP initialization and for setting the IOVA\nmode is an emulated VT-d is detected.\n\nThis patchset applies on 17.11.3.\n\nSimilar changes will be submitted to main DPDK branch soon.\n\nv2:\n - add get_addr_hint function\n - call munmap when hint given and not used by mmap\n - create dma mask in one step\n - refactor logs"
}