Displaying 20 results from an estimated 36 matches for "serial_reg".
2007 Aug 31
0
Processed: tagging bugs that are closed by packages in NEW as pending
...ckages in NEW
> #
> tags 431773 pending
Bug#431773: libqt4-dev: Missing mkspec files on hppa
Tags were: lenny sid patch
Bug#427398: scandir syscall broken on hppa
Bug#433768: getdent(3) broken on hppa
Tags added: pending
> tags 433755 pending
Bug#433755: Please include dropped header file serial_reg.h in linux-libc-dev
Tags were: upstream
Tags added: pending
> tags 435378 pending
Bug#435378: Keyboard doesn't work on Pegasos2
There were no tags set.
Tags added: pending
> tags 439662 pending
Bug#439662: xen-3: FTBFS on amd64: error: gnu/stubs-32.h: No such file or directory
There wer...
2013 Nov 29
15
Xen on ARMv8
Hi,
I want to try Xen on ARMv8 Simulator.
Can you please provide guidance?. I am looking for
information about sources, build and procedure to
launch Xen on ARMv8
Thanks & Regards
Vijay
2019 Sep 23
0
[PATCH 2/6] mdev: introduce device specific ops
...4
--- a/samples/vfio-mdev/mtty.c
+++ b/samples/vfio-mdev/mtty.c
@@ -27,6 +27,7 @@
#include <linux/ctype.h>
#include <linux/file.h>
#include <linux/mdev.h>
+#include <linux/vfio_mdev.h>
#include <linux/pci.h>
#include <linux/serial.h>
#include <uapi/linux/serial_reg.h>
@@ -1410,6 +1411,14 @@ static struct attribute_group *mdev_type_groups[] = {
NULL,
};
+static const struct vfio_mdev_parent_ops vfio_mdev_ops = {
+ .open = mtty_open,
+ .release = mtty_close,
+ .read = mtty_read,
+ .write...
2019 Sep 24
0
[PATCH 2/6] mdev: introduce device specific ops
...@@ -27,6 +27,7 @@
>> #include <linux/ctype.h>
>> #include <linux/file.h>
>> #include <linux/mdev.h>
>> +#include <linux/vfio_mdev.h>
>> #include <linux/pci.h>
>> #include <linux/serial.h>
>> #include <uapi/linux/serial_reg.h>
>> @@ -1410,6 +1411,14 @@ static struct attribute_group *mdev_type_groups[]
>> = {
>> NULL,
>> };
>>
>> +static const struct vfio_mdev_parent_ops vfio_mdev_ops = {
>> + .open = mtty_open,
>> + .release = mtty_...
2019 Sep 24
3
[PATCH V2 5/8] mdev: introduce device specific ops
...amples/vfio-mdev/mtty.c
> @@ -27,6 +27,7 @@
> #include <linux/ctype.h>
> #include <linux/file.h>
> #include <linux/mdev.h>
> +#include <linux/vfio_mdev.h>
> #include <linux/pci.h>
> #include <linux/serial.h>
> #include <uapi/linux/serial_reg.h>
> @@ -723,6 +724,8 @@ static ssize_t mdev_access(struct mdev_device *mdev, u8 *buf, size_t count,
> return ret;
> }
>
> +static const struct vfio_mdev_device_ops vfio_dev_ops;
> +
> static int mtty_create(struct kobject *kobj, struct mdev_device *mdev)
> {
>...
2019 Sep 24
3
[PATCH V2 5/8] mdev: introduce device specific ops
...amples/vfio-mdev/mtty.c
> @@ -27,6 +27,7 @@
> #include <linux/ctype.h>
> #include <linux/file.h>
> #include <linux/mdev.h>
> +#include <linux/vfio_mdev.h>
> #include <linux/pci.h>
> #include <linux/serial.h>
> #include <uapi/linux/serial_reg.h>
> @@ -723,6 +724,8 @@ static ssize_t mdev_access(struct mdev_device *mdev, u8 *buf, size_t count,
> return ret;
> }
>
> +static const struct vfio_mdev_device_ops vfio_dev_ops;
> +
> static int mtty_create(struct kobject *kobj, struct mdev_device *mdev)
> {
>...
2019 Sep 24
0
[PATCH V2 5/8] mdev: introduce device specific ops
...4
--- a/samples/vfio-mdev/mtty.c
+++ b/samples/vfio-mdev/mtty.c
@@ -27,6 +27,7 @@
#include <linux/ctype.h>
#include <linux/file.h>
#include <linux/mdev.h>
+#include <linux/vfio_mdev.h>
#include <linux/pci.h>
#include <linux/serial.h>
#include <uapi/linux/serial_reg.h>
@@ -723,6 +724,8 @@ static ssize_t mdev_access(struct mdev_device *mdev, u8 *buf, size_t count,
return ret;
}
+static const struct vfio_mdev_device_ops vfio_dev_ops;
+
static int mtty_create(struct kobject *kobj, struct mdev_device *mdev)
{
struct mdev_state *mdev_state;
@@ -771,6 +7...
2019 Oct 11
0
[PATCH V3 4/7] mdev: introduce device specific ops
...4
--- a/samples/vfio-mdev/mtty.c
+++ b/samples/vfio-mdev/mtty.c
@@ -27,6 +27,7 @@
#include <linux/ctype.h>
#include <linux/file.h>
#include <linux/mdev.h>
+#include <linux/vfio_mdev.h>
#include <linux/pci.h>
#include <linux/serial.h>
#include <uapi/linux/serial_reg.h>
@@ -708,6 +709,8 @@ static ssize_t mdev_access(struct mdev_device *mdev, u8 *buf, size_t count,
return ret;
}
+static const struct vfio_mdev_device_ops vfio_dev_ops;
+
static int mtty_create(struct kobject *kobj, struct mdev_device *mdev)
{
struct mdev_state *mdev_state;
@@ -755,7 +7...
2019 Sep 25
0
[PATCH V2 5/8] mdev: introduce device specific ops
...,6 +27,7 @@
> > #include <linux/ctype.h>
> > #include <linux/file.h>
> > #include <linux/mdev.h>
> > +#include <linux/vfio_mdev.h>
> > #include <linux/pci.h>
> > #include <linux/serial.h>
> > #include <uapi/linux/serial_reg.h>
> > @@ -723,6 +724,8 @@ static ssize_t mdev_access(struct mdev_device
> *mdev, u8 *buf, size_t count,
> > return ret;
> > }
> >
> > +static const struct vfio_mdev_device_ops vfio_dev_ops;
> > +
> > static int mtty_create(struct kobject *kobj, s...
2019 Oct 17
0
[PATCH V4 3/6] mdev: introduce device specific ops
...4
--- a/samples/vfio-mdev/mtty.c
+++ b/samples/vfio-mdev/mtty.c
@@ -27,6 +27,7 @@
#include <linux/ctype.h>
#include <linux/file.h>
#include <linux/mdev.h>
+#include <linux/vfio_mdev.h>
#include <linux/pci.h>
#include <linux/serial.h>
#include <uapi/linux/serial_reg.h>
@@ -708,6 +709,8 @@ static ssize_t mdev_access(struct mdev_device *mdev, u8 *buf, size_t count,
return ret;
}
+static const struct vfio_mdev_device_ops vfio_dev_ops;
+
static int mtty_create(struct kobject *kobj, struct mdev_device *mdev)
{
struct mdev_state *mdev_state;
@@ -755,7 +7...
2019 Nov 06
0
[PATCH V9 3/6] mdev: introduce device specific ops
...- a/samples/vfio-mdev/mtty.c
+++ b/samples/vfio-mdev/mtty.c
@@ -27,6 +27,7 @@
#include <linux/ctype.h>
#include <linux/file.h>
#include <linux/mdev.h>
+#include <linux/mdev_vfio_ops.h>
#include <linux/pci.h>
#include <linux/serial.h>
#include <uapi/linux/serial_reg.h>
@@ -708,6 +709,8 @@ static ssize_t mdev_access(struct mdev_device *mdev, u8 *buf, size_t count,
return ret;
}
+static const struct mdev_vfio_device_ops vfio_dev_ops;
+
static int mtty_create(struct kobject *kobj, struct mdev_device *mdev)
{
struct mdev_state *mdev_state;
@@ -755,7 +7...
2019 Nov 07
0
[PATCH V11 3/6] mdev: introduce device specific ops
...- a/samples/vfio-mdev/mtty.c
+++ b/samples/vfio-mdev/mtty.c
@@ -27,6 +27,7 @@
#include <linux/ctype.h>
#include <linux/file.h>
#include <linux/mdev.h>
+#include <linux/mdev_vfio_ops.h>
#include <linux/pci.h>
#include <linux/serial.h>
#include <uapi/linux/serial_reg.h>
@@ -708,6 +709,8 @@ static ssize_t mdev_access(struct mdev_device *mdev, u8 *buf, size_t count,
return ret;
}
+static const struct mdev_vfio_device_ops vfio_dev_ops;
+
static int mtty_create(struct kobject *kobj, struct mdev_device *mdev)
{
struct mdev_state *mdev_state;
@@ -755,7 +7...
2019 Nov 05
0
[PATCH V8 3/6] mdev: introduce device specific ops
...- a/samples/vfio-mdev/mtty.c
+++ b/samples/vfio-mdev/mtty.c
@@ -27,6 +27,7 @@
#include <linux/ctype.h>
#include <linux/file.h>
#include <linux/mdev.h>
+#include <linux/mdev_vfio_ops.h>
#include <linux/pci.h>
#include <linux/serial.h>
#include <uapi/linux/serial_reg.h>
@@ -708,6 +709,8 @@ static ssize_t mdev_access(struct mdev_device *mdev, u8 *buf, size_t count,
return ret;
}
+static const struct mdev_vfio_device_ops vfio_dev_ops;
+
static int mtty_create(struct kobject *kobj, struct mdev_device *mdev)
{
struct mdev_state *mdev_state;
@@ -755,7 +7...
2019 Nov 04
0
[PATCH V7 3/6] mdev: introduce device specific ops
...- a/samples/vfio-mdev/mtty.c
+++ b/samples/vfio-mdev/mtty.c
@@ -27,6 +27,7 @@
#include <linux/ctype.h>
#include <linux/file.h>
#include <linux/mdev.h>
+#include <linux/mdev_vfio_ops.h>
#include <linux/pci.h>
#include <linux/serial.h>
#include <uapi/linux/serial_reg.h>
@@ -708,6 +709,8 @@ static ssize_t mdev_access(struct mdev_device *mdev, u8 *buf, size_t count,
return ret;
}
+static const struct mdev_vfio_device_ops vfio_dev_ops;
+
static int mtty_create(struct kobject *kobj, struct mdev_device *mdev)
{
struct mdev_state *mdev_state;
@@ -755,7 +7...
2019 Nov 04
1
[PATCH V7 3/6] mdev: introduce device specific ops
...es/vfio-mdev/mtty.c
> @@ -27,6 +27,7 @@
> #include <linux/ctype.h>
> #include <linux/file.h>
> #include <linux/mdev.h>
> +#include <linux/mdev_vfio_ops.h>
> #include <linux/pci.h>
> #include <linux/serial.h>
> #include <uapi/linux/serial_reg.h>
> @@ -708,6 +709,8 @@ static ssize_t mdev_access(struct mdev_device *mdev, u8 *buf, size_t count,
> return ret;
> }
>
> +static const struct mdev_vfio_device_ops vfio_dev_ops;
> +
> static int mtty_create(struct kobject *kobj, struct mdev_device *mdev)
> {
>...
2019 Oct 21
0
[PATCH V4 3/6] mdev: introduce device specific ops
...7,6 +27,7 @@
>> #include <linux/ctype.h>
>> #include <linux/file.h>
>> #include <linux/mdev.h>
>> +#include <linux/vfio_mdev.h>
>> #include <linux/pci.h>
>> #include <linux/serial.h>
>> #include <uapi/linux/serial_reg.h>
>> @@ -708,6 +709,8 @@ static ssize_t mdev_access(struct mdev_device
>> *mdev, u8 *buf, size_t count,
>> return ret;
>> }
>>
>> +static const struct vfio_mdev_device_ops vfio_dev_ops;
>> +
>> static int mtty_create(struct kobject *kobj, s...
2019 Sep 25
3
[PATCH V2 5/8] mdev: introduce device specific ops
...e <linux/ctype.h>
> > > #include <linux/file.h>
> > > #include <linux/mdev.h>
> > > +#include <linux/vfio_mdev.h>
> > > #include <linux/pci.h>
> > > #include <linux/serial.h>
> > > #include <uapi/linux/serial_reg.h>
> > > @@ -723,6 +724,8 @@ static ssize_t mdev_access(struct mdev_device
> > *mdev, u8 *buf, size_t count,
> > > return ret;
> > > }
> > >
> > > +static const struct vfio_mdev_device_ops vfio_dev_ops;
> > > +
> > > stat...
2019 Sep 25
3
[PATCH V2 5/8] mdev: introduce device specific ops
...e <linux/ctype.h>
> > > #include <linux/file.h>
> > > #include <linux/mdev.h>
> > > +#include <linux/vfio_mdev.h>
> > > #include <linux/pci.h>
> > > #include <linux/serial.h>
> > > #include <uapi/linux/serial_reg.h>
> > > @@ -723,6 +724,8 @@ static ssize_t mdev_access(struct mdev_device
> > *mdev, u8 *buf, size_t count,
> > > return ret;
> > > }
> > >
> > > +static const struct vfio_mdev_device_ops vfio_dev_ops;
> > > +
> > > stat...
2019 Nov 04
9
[PATCH V7 0/6] mdev based hardware virtio offloading support
Hi all:
There are hardwares that can do virtio datapath offloading while
having its own control path. This path tries to implement a mdev based
unified API to support using kernel virtio driver to drive those
devices. This is done by introducing a new mdev transport for virtio
(virtio_mdev) and register itself as a new kind of mdev driver. Then
it provides a unified way for kernel virtio driver
2019 Oct 17
12
[PATCH V4 0/6] mdev based hardware virtio offloading support
Hi all:
There are hardwares that can do virtio datapath offloading while
having its own control path. This path tries to implement a mdev based
unified API to support using kernel virtio driver to drive those
devices. This is done by introducing a new mdev transport for virtio
(virtio_mdev) and register itself as a new kind of mdev driver. Then
it provides a unified way for kernel virtio driver