Displaying 3 results from an estimated 3 matches for "missonni".
Did you mean:
missonnier
2017 Mar 07
2
[PATCH] vhost: Move vhost.h to allow vhost driver out-of-tree compilation
...use the vhost header file is in
driver/vhost.
To distribute a new vhost driver before it is included in the kernel tree,
we need to package it using kmod, dkms, ..., and to compile it out-of-tree
using headers provided by the distribution's kernel development package.
Signed-off-by: Guillaume Missonnier <guillaume.missonnier at atos.net>
---
MAINTAINERS | 1 +
drivers/vhost/net.c | 2 -
drivers/vhost/scsi.c | 2 -
drivers/vhost/test.c | 1 -
drivers/vhost/vhost.c | 2 -
drivers/vhost/vhost.h | 292 --------------------------------------...
2017 Mar 07
2
[PATCH] vhost: Move vhost.h to allow vhost driver out-of-tree compilation
...use the vhost header file is in
driver/vhost.
To distribute a new vhost driver before it is included in the kernel tree,
we need to package it using kmod, dkms, ..., and to compile it out-of-tree
using headers provided by the distribution's kernel development package.
Signed-off-by: Guillaume Missonnier <guillaume.missonnier at atos.net>
---
MAINTAINERS | 1 +
drivers/vhost/net.c | 2 -
drivers/vhost/scsi.c | 2 -
drivers/vhost/test.c | 1 -
drivers/vhost/vhost.c | 2 -
drivers/vhost/vhost.h | 292 --------------------------------------...
2017 Mar 10
0
[PATCH] vhost: Move vhost.h to allow vhost driver out-of-tree compilation
On Tue, Mar 07, 2017 at 10:47:05AM +0100, Guillaume Missonnier wrote:
> Move vhost.h to include/linux to allow vhost driver out-of-tree compilation.
> Currently, this cannot be done properly because the vhost header file is in
> driver/vhost.
>
> To distribute a new vhost driver before it is included in the kernel tree,
> we need to packag...