Show a cover letter.

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

{
    "id": 60028,
    "url": "http://patches.dpdk.org/api/covers/60028/?format=api",
    "web_url": "http://patches.dpdk.org/project/dpdk/cover/20190927135054.20845-1-konstantin.ananyev@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": "<20190927135054.20845-1-konstantin.ananyev@intel.com>",
    "list_archive_url": "https://inbox.dpdk.org/dev/20190927135054.20845-1-konstantin.ananyev@intel.com",
    "date": "2019-09-27T13:50:51",
    "name": "[v2,0/3] move mbuf definition into a separate file",
    "submitter": {
        "id": 33,
        "url": "http://patches.dpdk.org/api/people/33/?format=api",
        "name": "Ananyev, Konstantin",
        "email": "konstantin.ananyev@intel.com"
    },
    "mbox": "http://patches.dpdk.org/project/dpdk/cover/20190927135054.20845-1-konstantin.ananyev@intel.com/mbox/",
    "series": [
        {
            "id": 6586,
            "url": "http://patches.dpdk.org/api/series/6586/?format=api",
            "web_url": "http://patches.dpdk.org/project/dpdk/list/?series=6586",
            "date": "2019-09-27T13:50:51",
            "name": "move mbuf definition into a separate file",
            "version": 2,
            "mbox": "http://patches.dpdk.org/series/6586/mbox/"
        }
    ],
    "comments": "http://patches.dpdk.org/api/covers/60028/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 1C2F51BE9C;\n\tFri, 27 Sep 2019 15:51:11 +0200 (CEST)",
            "from mga02.intel.com (mga02.intel.com [134.134.136.20])\n\tby dpdk.org (Postfix) with ESMTP id 744AD1BE92\n\tfor <dev@dpdk.org>; Fri, 27 Sep 2019 15:51:08 +0200 (CEST)",
            "from orsmga008.jf.intel.com ([10.7.209.65])\n\tby orsmga101.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384;\n\t27 Sep 2019 06:51:08 -0700",
            "from sivswdev08.ir.intel.com ([10.237.217.47])\n\tby orsmga008.jf.intel.com with ESMTP; 27 Sep 2019 06:51:06 -0700"
        ],
        "X-Amp-Result": "SKIPPED(no attachment in message)",
        "X-Amp-File-Uploaded": "False",
        "X-ExtLoop1": "1",
        "X-IronPort-AV": "E=Sophos;i=\"5.64,555,1559545200\"; d=\"scan'208\";a=\"183981825\"",
        "From": "Konstantin Ananyev <konstantin.ananyev@intel.com>",
        "To": "dev@dpdk.org",
        "Cc": "michel@digirati.com.br, olivier.matz@6wind.com, anatoly.burakov@intel.com,\n\tvipin.varghese@intel.com,\n\tKonstantin Ananyev <konstantin.ananyev@intel.com>",
        "Date": "Fri, 27 Sep 2019 14:50:51 +0100",
        "Message-Id": "<20190927135054.20845-1-konstantin.ananyev@intel.com>",
        "X-Mailer": "git-send-email 2.18.0",
        "In-Reply-To": "<20190816125304.29719-1-konstantin.ananyev@intel.com>",
        "References": "<20190816125304.29719-1-konstantin.ananyev@intel.com>",
        "Subject": "[dpdk-dev] [PATCH v2 0/3] move mbuf definition into a separate file",
        "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": "v1 -> v2\nAs per Michel comments included <generic/rte_atomic.h> into rte_mbuf_core.h\n\nRight now inclusion of rte_mbuf.h header can cause inclusion of\nsome arch/os specific headers.\nThat prevents it to be included directly by some\nnon-DPDK (but related) entities: KNI, BPF programs, etc.\nTo overcome that problem usually a separate definitions of rte_mbuf\nstructure is created within these entities.\nThat aproach has a lot of drawbacks: code duplication, error prone, etc.\nThis series moves rte_mbuf structure definition (and some related macros)\ninto a separate file that can be included by both rte_mbuf.h and\nother non-DPDK entities.\n\nNote that these moves shouldn't introduce any change for current DPDK code.\n\nKonstantin Ananyev (3):\n  eal: move CACHE and IOVA related definitions\n  mbuf: move mbuf definition into a separate file\n  examples/bpf: remove duplicate mbuf definition\n\n examples/bpf/t2.c                             |   4 +-\n examples/bpf/t3.c                             |   2 +-\n lib/librte_eal/common/include/rte_common.h    |  44 ++\n lib/librte_eal/common/include/rte_memory.h    |  38 -\n lib/librte_mbuf/Makefile                      |   5 +-\n lib/librte_mbuf/meson.build                   |   3 +-\n lib/librte_mbuf/rte_mbuf.h                    | 738 +-----------------\n .../mbuf.h => lib/librte_mbuf/rte_mbuf_core.h | 558 ++++++++-----\n 8 files changed, 427 insertions(+), 965 deletions(-)\n rename examples/bpf/mbuf.h => lib/librte_mbuf/rte_mbuf_core.h (51%)"
}