From: Sjur Brændeland <[email protected]> This driver depends on Rusty's new host virtio ring implementation, so this patch-set is based on the vringh branch in Rusty's git.
Changes since V1: - Use the new iov helper functions, and simplify iov handling. However this triggers compile warnings, as it takes struct iov while kernel api uses struct kiov - Introduced the module_virtio_driver macro - Pass NULL as wiov to vringh_getdesc_kern() Regards, Sjur Sjur Brændeland (2): remoteproc: Add support for vringh (Host vrings) virtio: Add module driver macro for virtio drivers. Vikram ARV (1): caif_virtio: Introduce caif over virtio drivers/net/caif/Kconfig | 8 + drivers/net/caif/Makefile | 3 + drivers/net/caif/caif_virtio.c | 547 ++++++++++++++++++++++++++++++++ drivers/remoteproc/Kconfig | 3 + drivers/remoteproc/remoteproc_virtio.c | 127 +++++++- include/linux/remoteproc.h | 14 + include/linux/virtio.h | 9 + include/linux/virtio_caif.h | 24 ++ include/uapi/linux/virtio_ids.h | 1 + 9 files changed, 729 insertions(+), 7 deletions(-) create mode 100644 drivers/net/caif/caif_virtio.c create mode 100644 include/linux/virtio_caif.h -- 1.7.5.4 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to [email protected] More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/

