Show a cover letter.

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

{
    "id": 72097,
    "url": "http://patches.dpdk.org/api/covers/72097/?format=api",
    "web_url": "http://patches.dpdk.org/project/dpdk/cover/20200624082847.21344-1-talshn@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": "<20200624082847.21344-1-talshn@mellanox.com>",
    "list_archive_url": "https://inbox.dpdk.org/dev/20200624082847.21344-1-talshn@mellanox.com",
    "date": "2020-06-24T08:28:37",
    "name": "[v9,00/10] Windows bus/pci support",
    "submitter": {
        "id": 1669,
        "url": "http://patches.dpdk.org/api/people/1669/?format=api",
        "name": "Tal Shnaiderman",
        "email": "talshn@mellanox.com"
    },
    "mbox": "http://patches.dpdk.org/project/dpdk/cover/20200624082847.21344-1-talshn@mellanox.com/mbox/",
    "series": [
        {
            "id": 10579,
            "url": "http://patches.dpdk.org/api/series/10579/?format=api",
            "web_url": "http://patches.dpdk.org/project/dpdk/list/?series=10579",
            "date": "2020-06-24T08:28:37",
            "name": "Windows bus/pci support",
            "version": 9,
            "mbox": "http://patches.dpdk.org/series/10579/mbox/"
        }
    ],
    "comments": "http://patches.dpdk.org/api/covers/72097/comments/",
    "headers": {
        "Return-Path": "<dev-bounces@dpdk.org>",
        "X-Original-To": "patchwork@inbox.dpdk.org",
        "Delivered-To": "patchwork@inbox.dpdk.org",
        "Received": [
            "from dpdk.org (dpdk.org [92.243.14.124])\n\tby inbox.dpdk.org (Postfix) with ESMTP id 5A538A0350;\n\tWed, 24 Jun 2020 10:29:29 +0200 (CEST)",
            "from [92.243.14.124] (localhost [127.0.0.1])\n\tby dpdk.org (Postfix) with ESMTP id 2137D1D912;\n\tWed, 24 Jun 2020 10:29:29 +0200 (CEST)",
            "from mellanox.co.il (mail-il-dmz.mellanox.com [193.47.165.129])\n by dpdk.org (Postfix) with ESMTP id 956AD1D90A\n for <dev@dpdk.org>; Wed, 24 Jun 2020 10:29:27 +0200 (CEST)",
            "from Internal Mail-Server by MTLPINE1 (envelope-from\n talshn@mellanox.com) with SMTP; 24 Jun 2020 11:29:26 +0300",
            "from l-wincomp04-vm.labs.mlnx (l-wincomp04-vm.mtl.labs.mlnx\n [10.237.1.5])\n by labmailer.mlnx (8.13.8/8.13.8) with ESMTP id 05O8TGKG012156;\n Wed, 24 Jun 2020 11:29:16 +0300"
        ],
        "From": "talshn@mellanox.com",
        "To": "dev@dpdk.org",
        "Cc": "thomas@monjalon.net, pallavi.kadam@intel.com, dmitry.kozliuk@gmail.com,\n david.marchand@redhat.com, grive@u256.net, ranjit.menon@intel.com,\n navasile@linux.microsoft.com, harini.ramakrishnan@microsoft.com,\n ocardona@microsoft.com, anatoly.burakov@intel.com, fady@mellanox.com,\n bruce.richardson@intel.com, Tal Shnaiderman <talshn@mellanox.com>",
        "Date": "Wed, 24 Jun 2020 11:28:37 +0300",
        "Message-Id": "<20200624082847.21344-1-talshn@mellanox.com>",
        "X-Mailer": "git-send-email 2.16.1.windows.4",
        "In-Reply-To": "<20200622075529.24180-2-talshn@mellanox.com>",
        "References": "<20200622075529.24180-2-talshn@mellanox.com>",
        "Subject": "[dpdk-dev] [PATCH v9 00/10] Windows bus/pci support",
        "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 <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 <mailto:dev-request@dpdk.org?subject=subscribe>",
        "Errors-To": "dev-bounces@dpdk.org",
        "Sender": "\"dev\" <dev-bounces@dpdk.org>"
    },
    "content": "From: Tal Shnaiderman <talshn@mellanox.com>\n\nThis patchset implements the EAL and PCI functions needed for probing PMDs using RTE_KDRV_NONE on Windows.\n\n---\nv9:\n\t* Split the patch of common OS file to config and options patches (ThomasM).\n\t* Remove rte_ prefixes from new functions as they are eal internal (ThomasM).\n\t^ Move common declarations to eal_private.h.\n\t* Add get_pci_hardware_id and parse_pci_hardware_id in pci.c (DmitryK)\n\t* Fix issues in pci.c (DmitryK)\nv8:\n\t* Move internal_config to static inside eal_common_config.c and use getters for all external uses.\n\t* Fix duplicated export line (FadyB)\n\t* Fix FreeBSD missing function.\nv7:\n\t* Remove Unneeded code from MinGW mapping script (DmitryK)\n\t* Fix error flow issues in pci.c (DmitryK)\n\t* Fix Unix build errors following unity of common functions.\n\t* Move strerror to rte_strerror (DmitryK) \nv6:\n\t* Fix duplication of exported functions for mingw by modifying the version.map in build (new commit)\n\t* Fix comments and move additional functions to eal_common_config (DavidM)\n\t* Fix cross-compilation in mingw (DmitryK)\n\t* Fix Warnings\n\t* Move off_t type to pci (ThomasM)\nv5:\n\t* Adjust mem-mapping functions to changes in latest memory management patchset.\n\t* Fix incorrect implib definition in drivers/meson.build\nv4:\n\t* Fixed various warnings and naming conventions(DmitryK).\n\t* Fixed broken mingw-64 build(DmitryK).\n\t* Improved logging(DmitryK).\n\t* Added patch to fix warnings on rte_pci_addr logging.\n\t* Fixed broken make on linux/freebsd.\nv3:\n\t* Changes in BDF and hardware ids retrieval(DmitryK).\n\t* Apply new generic MM to all pci unix callers(DmitryK).\n\t* Minor corrections in pci.c(DmitryK).\nv2:\n\t* fix style issues.\n\t* fix error handing flow in pci.c\n\t* change eal_config.c to eal_common_config.c\n---\n\nTal Shnaiderman (10):\n  eal: move OS common config objects\n  eal: move OS common options functions\n  pci: use OS generic memory mapping functions\n  pci: build on Windows\n  pci: fix format warning on Windows\n  drivers: ignore pmdinfogen generation for Windows\n  drivers: fix incorrect meson import folder for Windows\n  bus/pci: introduce Windows support with stubs\n  bus/pci: support Windows with bifurcated drivers\n  build: generate version.map file for MinGW on Windows\n\n buildtools/{map_to_def.py => map_to_win.py}  |  11 +-\n buildtools/meson.build                       |   4 +-\n drivers/baseband/meson.build                 |   4 +\n drivers/bus/ifpga/meson.build                |   6 +\n drivers/bus/pci/bsd/pci.c                    |   2 +-\n drivers/bus/pci/linux/pci_uio.c              |   2 +-\n drivers/bus/pci/linux/pci_vfio.c             |   9 +-\n drivers/bus/pci/meson.build                  |  14 +-\n drivers/bus/pci/pci_common.c                 |   2 -\n drivers/bus/pci/pci_common_uio.c             |   2 +-\n drivers/bus/pci/windows/pci.c                | 424 +++++++++++++++++++++++++++\n drivers/bus/vdev/meson.build                 |   6 +\n drivers/bus/vmbus/meson.build                |   7 +\n drivers/common/meson.build                   |   4 +\n drivers/compress/meson.build                 |   4 +\n drivers/crypto/meson.build                   |   4 +\n drivers/event/meson.build                    |   4 +\n drivers/mempool/meson.build                  |   4 +\n drivers/meson.build                          |  51 ++--\n drivers/net/meson.build                      |   4 +\n drivers/raw/meson.build                      |   4 +\n drivers/vdpa/meson.build                     |   4 +\n lib/librte_eal/common/eal_common_config.c    |  95 ++++++\n lib/librte_eal/common/eal_common_dynmem.c    |  55 ++--\n lib/librte_eal/common/eal_common_fbarray.c   |   8 +-\n lib/librte_eal/common/eal_common_mcfg.c      |  16 +-\n lib/librte_eal/common/eal_common_memalloc.c  |   4 +-\n lib/librte_eal/common/eal_common_memory.c    |  43 ++-\n lib/librte_eal/common/eal_common_options.c   |  48 ++-\n lib/librte_eal/common/eal_common_proc.c      |  33 ++-\n lib/librte_eal/common/eal_common_thread.c    |  10 +-\n lib/librte_eal/common/eal_internal_cfg.h     |   1 -\n lib/librte_eal/common/eal_private.h          |  39 +++\n lib/librte_eal/common/malloc_elem.c          |  15 +-\n lib/librte_eal/common/malloc_heap.c          |  15 +-\n lib/librte_eal/common/meson.build            |   3 +\n lib/librte_eal/freebsd/Makefile              |   1 +\n lib/librte_eal/freebsd/eal.c                 | 219 ++++++--------\n lib/librte_eal/freebsd/eal_hugepage_info.c   |  32 +-\n lib/librte_eal/freebsd/eal_memory.c          |  34 ++-\n lib/librte_eal/linux/Makefile                |   1 +\n lib/librte_eal/linux/eal.c                   | 254 +++++++---------\n lib/librte_eal/linux/eal_hugepage_info.c     |  50 ++--\n lib/librte_eal/linux/eal_memalloc.c          | 137 ++++++---\n lib/librte_eal/linux/eal_memory.c            | 131 +++++----\n lib/librte_eal/linux/eal_timer.c             |  19 +-\n lib/librte_eal/linux/eal_vfio.c              |  20 +-\n lib/librte_eal/rte_eal_exports.def           |  10 +\n lib/librte_eal/windows/eal.c                 | 118 ++++----\n lib/librte_eal/windows/eal_hugepages.c       |   7 +-\n lib/librte_eal/windows/eal_memalloc.c        |  18 +-\n lib/librte_eal/windows/eal_memory.c          |  11 +-\n lib/librte_eal/windows/eal_mp.c              |  15 +\n lib/librte_eal/windows/include/rte_windows.h |   1 +\n lib/librte_pci/rte_pci.c                     |  19 +-\n lib/librte_pci/rte_pci.h                     |   5 +-\n lib/meson.build                              |  24 +-\n 57 files changed, 1456 insertions(+), 631 deletions(-)\n rename buildtools/{map_to_def.py => map_to_win.py} (69%)\n create mode 100644 drivers/bus/pci/windows/pci.c\n create mode 100644 lib/librte_eal/common/eal_common_config.c"
}