get:
Show a patch.

patch:
Update a patch.

put:
Update a patch.

GET /api/patches/7467/?format=api
HTTP 200 OK
Allow: GET, PUT, PATCH, HEAD, OPTIONS
Content-Type: application/json
Vary: Accept

{
    "id": 7467,
    "url": "https://patches.dpdk.org/api/patches/7467/?format=api",
    "web_url": "https://patches.dpdk.org/project/dpdk/patch/1444076406-30141-5-git-send-email-mario.alfredo.c.arevalo@intel.com/",
    "project": {
        "id": 1,
        "url": "https://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": "<1444076406-30141-5-git-send-email-mario.alfredo.c.arevalo@intel.com>",
    "list_archive_url": "https://inbox.dpdk.org/dev/1444076406-30141-5-git-send-email-mario.alfredo.c.arevalo@intel.com",
    "date": "2015-10-05T20:20:03",
    "name": "[dpdk-dev,v4,4/7] mk: Add rule for installing modules",
    "commit_ref": null,
    "pull_url": null,
    "state": "superseded",
    "archived": true,
    "hash": "81f9d27446626b77e86fe2122a13f12a047d1ff7",
    "submitter": {
        "id": 329,
        "url": "https://patches.dpdk.org/api/people/329/?format=api",
        "name": "Mario Carrillo",
        "email": "mario.alfredo.c.arevalo@intel.com"
    },
    "delegate": null,
    "mbox": "https://patches.dpdk.org/project/dpdk/patch/1444076406-30141-5-git-send-email-mario.alfredo.c.arevalo@intel.com/mbox/",
    "series": [],
    "comments": "https://patches.dpdk.org/api/patches/7467/comments/",
    "check": "pending",
    "checks": "https://patches.dpdk.org/api/patches/7467/checks/",
    "tags": {},
    "related": [],
    "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 [IPv6:::1])\n\tby dpdk.org (Postfix) with ESMTP id D74599390;\n\tMon,  5 Oct 2015 22:20:18 +0200 (CEST)",
            "from mga11.intel.com (mga11.intel.com [192.55.52.93])\n\tby dpdk.org (Postfix) with ESMTP id 8795F924C\n\tfor <dev@dpdk.org>; Mon,  5 Oct 2015 22:20:13 +0200 (CEST)",
            "from fmsmga001.fm.intel.com ([10.253.24.23])\n\tby fmsmga102.fm.intel.com with ESMTP; 05 Oct 2015 13:20:14 -0700",
            "from mcarril6-mobl.zpn.intel.com ([10.219.24.17])\n\tby fmsmga001.fm.intel.com with ESMTP; 05 Oct 2015 13:20:11 -0700"
        ],
        "X-ExtLoop1": "1",
        "X-IronPort-AV": "E=Sophos;i=\"5.17,640,1437462000\"; d=\"scan'208\";a=\"804228114\"",
        "From": "Mario Carrillo <mario.alfredo.c.arevalo@intel.com>",
        "To": "dev@dpdk.org",
        "Date": "Mon,  5 Oct 2015 15:20:03 -0500",
        "Message-Id": "<1444076406-30141-5-git-send-email-mario.alfredo.c.arevalo@intel.com>",
        "X-Mailer": "git-send-email 2.1.0",
        "In-Reply-To": "<1444076406-30141-1-git-send-email-mario.alfredo.c.arevalo@intel.com>",
        "References": "<1442608390-12537-1-git-send-email-mario.alfredo.c.arevalo@intel.com>\n\t<1444076406-30141-1-git-send-email-mario.alfredo.c.arevalo@intel.com>",
        "Subject": "[dpdk-dev] [PATCH v4 4/7] mk: Add rule for installing modules",
        "X-BeenThere": "dev@dpdk.org",
        "X-Mailman-Version": "2.1.15",
        "Precedence": "list",
        "List-Id": "patches and discussions about DPDK <dev.dpdk.org>",
        "List-Unsubscribe": "<http://dpdk.org/ml/options/dev>,\n\t<mailto:dev-request@dpdk.org?subject=unsubscribe>",
        "List-Archive": "<http://dpdk.org/ml/archives/dev/>",
        "List-Post": "<mailto:dev@dpdk.org>",
        "List-Help": "<mailto:dev-request@dpdk.org?subject=help>",
        "List-Subscribe": "<http://dpdk.org/ml/listinfo/dev>,\n\t<mailto:dev-request@dpdk.org?subject=subscribe>",
        "Errors-To": "dev-bounces@dpdk.org",
        "Sender": "\"dev\" <dev-bounces@dpdk.org>"
    },
    "content": "Add hierarchy-file support to the DPDK modules.\n\nWhen invoking \"make install-mod\" modules will be\ninstalled in: $(DESTDIR)/$(KERNEL_DIR)\n\nIf RTE_EXEC_ENV=linuxapp then\nKERNEL_DIR=/lib/modules/$(uname -r)/extra/drivers/dpdk\nelse KERNEL_DIR=/boot/modules by default.\n\nYou can override KERNEL_DIR var.\nThis hierarchy is based on:\nhttp://www.freedesktop.org/software/systemd/man/file-hierarchy.html\n\nSigned-off-by: Mario Carrillo <mario.alfredo.c.arevalo@intel.com>\n---\n mk/rte.sdkinstall.mk | 21 +++++++++++++++++++++\n mk/rte.sdkroot.mk    |  4 ++--\n 2 files changed, 23 insertions(+), 2 deletions(-)",
    "diff": "diff --git a/mk/rte.sdkinstall.mk b/mk/rte.sdkinstall.mk\nindex 36a59fc..628d9fb 100644\n--- a/mk/rte.sdkinstall.mk\n+++ b/mk/rte.sdkinstall.mk\n@@ -49,13 +49,20 @@ BINARY_FILES := $(patsubst %.map,,$(wildcard $(RTE_OUTPUT)/app/*))\n NIC_FILES := $(wildcard $(BUILD_DIR)/tools/*.py)\n BINARY_FILES += $(NIC_FILES)\n LIBS := $(wildcard $(RTE_OUTPUT)/lib/*)\n+MODULES := $(wildcard $(RTE_OUTPUT)/kmod/*)\n include $(BUILD_DIR)/build/.config\n RTE_ARCH := $(CONFIG_RTE_ARCH:\"%\"=%)\n+RTE_EXEC_ENV := $(CONFIG_RTE_EXEC_ENV:\"%\"=%)\n ifeq ($(RTE_ARCH),x86_64)\n LIB_DIR ?= /usr/lib64\n else\n LIB_DIR ?= /usr/lib\n endif\n+ifeq ($(RTE_EXEC_ENV),linuxapp)\n+KERNEL_DIR ?= /lib/modules/$(shell uname -r)/extra/drivers/dpdk\n+else\n+KERNEL_DIR ?= /boot/modules\n+endif\n endif\n endif\n \n@@ -127,6 +134,20 @@ install-lib:\n \techo installing: $$LIB; \\\n \tdone\n #\n+# if RTE_EXEC_ENV=linuxapp modules install in:\n+# /lib/modules/$(uname -r)/extra/drivers/dpdk\n+# else /boot/modules/ by default\n+# KERNEL_DIR can be overridden.\n+#\n+.PHONY: install-mod\n+install-mod:\n+\t@echo ================== Installing modules\n+\t@[ -d $(DESTDIR)/$(KERNEL_DIR) ] || mkdir -p $(DESTDIR)/$(KERNEL_DIR)\n+\t@for MOD in ${MODULES}; do \\\n+\tcp -rf $$MOD ${DESTDIR}/${KERNEL_DIR}; \\\n+\techo installing: $$MOD; \\\n+\tdone\n+#\n # uninstall: remove all built sdk\n #\n UNINSTALL_TARGETS := $(addsuffix _uninstall,\\\ndiff --git a/mk/rte.sdkroot.mk b/mk/rte.sdkroot.mk\nindex 7a72c9b..e652218 100644\n--- a/mk/rte.sdkroot.mk\n+++ b/mk/rte.sdkroot.mk\n@@ -97,8 +97,8 @@ test fast_test ring_test mempool_test perf_test coverage:\n testall:\n \t$(Q)$(MAKE) -f $(RTE_SDK)/mk/rte.sdktestall.mk $@\n \n-.PHONY: install install-headers install-bin install-lib uninstall\n-install install-headers install-bin install-lib uninstall:\n+.PHONY: install install-headers install-bin install-lib install-mod uninstall\n+install install-headers install-bin install-lib install-mod uninstall:\n \t$(Q)$(MAKE) -f $(RTE_SDK)/mk/rte.sdkinstall.mk $@\n \n .PHONY: doc help\n",
    "prefixes": [
        "dpdk-dev",
        "v4",
        "4/7"
    ]
}