Show a cover letter.

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

{
    "id": 810831,
    "url": "http://patchwork.ozlabs.org/api/covers/810831/?format=api",
    "web_url": "http://patchwork.ozlabs.org/project/netdev/cover/1504744467-79590-1-git-send-email-sainath.grandhi@intel.com/",
    "project": {
        "id": 7,
        "url": "http://patchwork.ozlabs.org/api/projects/7/?format=api",
        "name": "Linux network development",
        "link_name": "netdev",
        "list_id": "netdev.vger.kernel.org",
        "list_email": "netdev@vger.kernel.org",
        "web_url": null,
        "scm_url": null,
        "webscm_url": null,
        "list_archive_url": "",
        "list_archive_url_format": "",
        "commit_url_format": ""
    },
    "msgid": "<1504744467-79590-1-git-send-email-sainath.grandhi@intel.com>",
    "list_archive_url": null,
    "date": "2017-09-07T00:34:24",
    "name": "[RFC,v1,0/3] Support for tap user-space access with veth interfaces",
    "submitter": {
        "id": 70733,
        "url": "http://patchwork.ozlabs.org/api/people/70733/?format=api",
        "name": "Grandhi, Sainath",
        "email": "sainath.grandhi@intel.com"
    },
    "mbox": "http://patchwork.ozlabs.org/project/netdev/cover/1504744467-79590-1-git-send-email-sainath.grandhi@intel.com/mbox/",
    "series": [
        {
            "id": 1899,
            "url": "http://patchwork.ozlabs.org/api/series/1899/?format=api",
            "web_url": "http://patchwork.ozlabs.org/project/netdev/list/?series=1899",
            "date": "2017-09-07T00:34:24",
            "name": "Support for tap user-space access with veth interfaces",
            "version": 1,
            "mbox": "http://patchwork.ozlabs.org/series/1899/mbox/"
        }
    ],
    "comments": "http://patchwork.ozlabs.org/api/covers/810831/comments/",
    "headers": {
        "Return-Path": "<netdev-owner@vger.kernel.org>",
        "X-Original-To": "patchwork-incoming@ozlabs.org",
        "Delivered-To": "patchwork-incoming@ozlabs.org",
        "Authentication-Results": "ozlabs.org;\n\tspf=none (mailfrom) smtp.mailfrom=vger.kernel.org\n\t(client-ip=209.132.180.67; helo=vger.kernel.org;\n\tenvelope-from=netdev-owner@vger.kernel.org;\n\treceiver=<UNKNOWN>)",
        "Received": [
            "from vger.kernel.org (vger.kernel.org [209.132.180.67])\n\tby ozlabs.org (Postfix) with ESMTP id 3xnhPV0CHDz9s8J\n\tfor <patchwork-incoming@ozlabs.org>;\n\tThu,  7 Sep 2017 10:37:50 +1000 (AEST)",
            "(majordomo@vger.kernel.org) by vger.kernel.org via listexpand\n\tid S1752719AbdIGAhr (ORCPT <rfc822;patchwork-incoming@ozlabs.org>);\n\tWed, 6 Sep 2017 20:37:47 -0400",
            "from mga03.intel.com ([134.134.136.65]:34859 \"EHLO mga03.intel.com\"\n\trhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP\n\tid S1752021AbdIGAhq (ORCPT <rfc822;netdev@vger.kernel.org>);\n\tWed, 6 Sep 2017 20:37:46 -0400",
            "from fmsmga002.fm.intel.com ([10.253.24.26])\n\tby orsmga103.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384;\n\t06 Sep 2017 17:37:45 -0700",
            "from otc-grantley-03.jf.intel.com ([10.54.39.23])\n\tby fmsmga002.fm.intel.com with ESMTP; 06 Sep 2017 17:37:45 -0700"
        ],
        "X-ExtLoop1": "1",
        "X-IronPort-AV": "E=Sophos;i=\"5.42,355,1500966000\"; d=\"scan'208\";a=\"1215697539\"",
        "From": "sainath.grandhi@intel.com",
        "To": "netdev@vger.kernel.org",
        "Cc": "davem@davemloft.net, Sainath Grandhi <sainath.grandhi@intel.com>",
        "Subject": "[PATCH RFC v1 0/3] Support for tap user-space access with veth\n\tinterfaces",
        "Date": "Wed,  6 Sep 2017 17:34:24 -0700",
        "Message-Id": "<1504744467-79590-1-git-send-email-sainath.grandhi@intel.com>",
        "X-Mailer": "git-send-email 2.7.4",
        "Sender": "netdev-owner@vger.kernel.org",
        "Precedence": "bulk",
        "List-ID": "<netdev.vger.kernel.org>",
        "X-Mailing-List": "netdev@vger.kernel.org"
    },
    "content": "From: Sainath Grandhi <sainath.grandhi@intel.com>\n\nThis patchset adds a tap device driver for veth virtual network interface.\nWith this implementation, tap character interface can be added only to the\npeer veth interface. Adding tap interface to veth is for usecases that forwards \npackets between host and VMs. This eliminates the need for an additional \nsoftware bridge. This can be extended to create both the peer interfaces as\ntap interfaces. These patches are a step in that direction.\n\nSainath Grandhi (3):\n  net: Adding API to parse IFLA_LINKINFO attribute\n  net: Abstracting out common routines from veth for use by vethtap\n  vethtap: veth based tap driver\n\n drivers/net/Kconfig                 |   1 +\n drivers/net/Makefile                |   2 +\n drivers/net/{veth.c => veth_main.c} |  80 ++++++++++---\n drivers/net/vethtap.c               | 216 ++++++++++++++++++++++++++++++++++++\n include/linux/if_veth.h             |  13 +++\n include/net/rtnetlink.h             |   3 +\n net/core/rtnetlink.c                |   8 ++\n 7 files changed, 308 insertions(+), 15 deletions(-)\n rename drivers/net/{veth.c => veth_main.c} (89%)\n create mode 100644 drivers/net/vethtap.c\n create mode 100644 include/linux/if_veth.h"
}