search for: config_lguest

Displaying 20 results from an estimated 52 matches for "config_lguest".

2008 Jan 17
1
[PATCH] fix drivers/lguest Makefile entry
It should depend on CONFIG_LGUEST, not CONFIG_LGUEST_GUEST Signed-off-by: Glauber de Oliveira Costa <gcosta@redhat.com> --- drivers/Makefile | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/drivers/Makefile b/drivers/Makefile index ee1b6a5..58a17e9 100644 --- a/drivers/Makefile +++ b/drivers/Makefil...
2007 May 09
2
[patch 5/9] lguest: the Makefile and Kconfig
...enu diff -puN drivers/Makefile~lguest-the-makefile-and-kconfig drivers/Makefile --- a/drivers/Makefile~lguest-the-makefile-and-kconfig +++ a/drivers/Makefile @@ -72,6 +72,7 @@ obj-$(CONFIG_ISDN) += isdn/ obj-$(CONFIG_EDAC) += edac/ obj-$(CONFIG_MCA) += mca/ obj-$(CONFIG_EISA) += eisa/ +obj-$(CONFIG_LGUEST_GUEST) += lguest/ obj-$(CONFIG_CPU_FREQ) += cpufreq/ obj-$(CONFIG_MMC) += mmc/ obj-$(CONFIG_NEW_LEDS) += leds/ diff -puN /dev/null drivers/lguest/Kconfig --- /dev/null +++ a/drivers/lguest/Kconfig @@ -0,0 +1,20 @@ +config LGUEST + tristate "Linux hypervisor example code" + depends o...
2007 May 02
3
[RELEASE] Lguest for 2.6.21
...est/lguest.txt for how to run, drivers/lguest/README for the draft code documentation journey. Bug or even success reports always welcome! Rusty. Quickstart: $ cd linux-2.6.21 $ zcat /tmp/lguest-2.6.21-254.patch.gz | patch -p1 $ make - Say "y" to CONFIG_EXPERIMENTAL, "m" to CONFIG_LGUEST. $ make modules_install $ make -C Documentation/lguest $ sudo Documentation/lguest/lguest --block=<some-convenient-raw-image> \ 128 vmlinux root=/dev/lgba Three ^C's within one second will kill the guest.
2007 May 02
3
[RELEASE] Lguest for 2.6.21
...est/lguest.txt for how to run, drivers/lguest/README for the draft code documentation journey. Bug or even success reports always welcome! Rusty. Quickstart: $ cd linux-2.6.21 $ zcat /tmp/lguest-2.6.21-254.patch.gz | patch -p1 $ make - Say "y" to CONFIG_EXPERIMENTAL, "m" to CONFIG_LGUEST. $ make modules_install $ make -C Documentation/lguest $ sudo Documentation/lguest/lguest --block=<some-convenient-raw-image> \ 128 vmlinux root=/dev/lgba Three ^C's within one second will kill the guest.
2007 Apr 18
0
[PATCH] lguest: Compile hypervisor.S into the lg module directly
...ed to allocate our page-array dynamically. Signed-off-by: Rusty Russell <rusty@rustcorp.com.au> diff -r 9d462a93e1fa arch/i386/lguest/Makefile --- a/arch/i386/lguest/Makefile Wed Mar 21 08:56:52 2007 +1100 +++ b/arch/i386/lguest/Makefile Thu Mar 22 11:43:20 2007 +1100 @@ -4,19 +4,4 @@ obj-$(CONFIG_LGUEST_GUEST) += lguest.o l # Host requires the other files, which can be a module. obj-$(CONFIG_LGUEST) += lg.o lg-objs := core.o hypercalls.o page_tables.o interrupts_and_traps.o \ - segments.o io.o lguest_user.o - -# We use top 4MB for hypervisor. */ -HYPE_ADDR := 0xFFC00000 -# The data is only 1k (...
2007 Apr 18
0
[PATCH] lguest: Compile hypervisor.S into the lg module directly
...ed to allocate our page-array dynamically. Signed-off-by: Rusty Russell <rusty@rustcorp.com.au> diff -r 9d462a93e1fa arch/i386/lguest/Makefile --- a/arch/i386/lguest/Makefile Wed Mar 21 08:56:52 2007 +1100 +++ b/arch/i386/lguest/Makefile Thu Mar 22 11:43:20 2007 +1100 @@ -4,19 +4,4 @@ obj-$(CONFIG_LGUEST_GUEST) += lguest.o l # Host requires the other files, which can be a module. obj-$(CONFIG_LGUEST) += lg.o lg-objs := core.o hypercalls.o page_tables.o interrupts_and_traps.o \ - segments.o io.o lguest_user.o - -# We use top 4MB for hypervisor. */ -HYPE_ADDR := 0xFFC00000 -# The data is only 1k (...
2013 Jun 19
3
[PATCH] virtio-spec: add field for scsi command size
Il 19/06/2013 10:24, Michael S. Tsirkin ha scritto: >> > 2) We introduce VIRTIO_NET_F_ANY_LAYOUT and VIRTIO_BLK_F_ANY_LAYOUT >> > specifically for net and block (note the new names). So why not a transport feature? Is it just because the SCSI commands for virtio-blk also require a config space field? Sorry if I missed this upthread. Paolo >> > 3) I note the
2013 Jun 19
3
[PATCH] virtio-spec: add field for scsi command size
Il 19/06/2013 10:24, Michael S. Tsirkin ha scritto: >> > 2) We introduce VIRTIO_NET_F_ANY_LAYOUT and VIRTIO_BLK_F_ANY_LAYOUT >> > specifically for net and block (note the new names). So why not a transport feature? Is it just because the SCSI commands for virtio-blk also require a config space field? Sorry if I missed this upthread. Paolo >> > 3) I note the
2007 Jul 29
1
[PATCH] BLOCK=n , LGUEST=m/y compile error
.....4e7408c 100644 --- a/Documentation/lguest/lguest.txt +++ b/Documentation/lguest/lguest.txt @@ -33,6 +33,7 @@ Running Lguest: CONFIG_EXPERIMENTAL=y ("Prompt for development and/or incomplete code/drivers") CONFIG_PARAVIRT=y ("Paravirtualization support (EXPERIMENTAL)") CONFIG_LGUEST=y/m ("Linux hypervisor example code") + CONFIG_BLOCK=y ("Enable the block layer") and I recommend: CONFIG_HZ=100 ("Timer frequency")[2] diff --git a/drivers/lguest/Kconfig b/drivers/lguest/Kconfig index 43d901f..4bc0577 100644 --- a/drivers/lguest/Kconfig +++...
2007 Jul 29
1
[PATCH] BLOCK=n , LGUEST=m/y compile error
.....4e7408c 100644 --- a/Documentation/lguest/lguest.txt +++ b/Documentation/lguest/lguest.txt @@ -33,6 +33,7 @@ Running Lguest: CONFIG_EXPERIMENTAL=y ("Prompt for development and/or incomplete code/drivers") CONFIG_PARAVIRT=y ("Paravirtualization support (EXPERIMENTAL)") CONFIG_LGUEST=y/m ("Linux hypervisor example code") + CONFIG_BLOCK=y ("Enable the block layer") and I recommend: CONFIG_HZ=100 ("Timer frequency")[2] diff --git a/drivers/lguest/Kconfig b/drivers/lguest/Kconfig index 43d901f..4bc0577 100644 --- a/drivers/lguest/Kconfig +++...
2014 Aug 27
2
[PATCH 2/3] virtio_ring: Use DMA APIs
...--- a/drivers/virtio/Kconfig > +++ b/drivers/virtio/Kconfig > @@ -1,5 +1,6 @@ > config VIRTIO > tristate > + depends on HAS_DMA > ---help--- > This option is selected by any driver which implements the virtio > bus, such as CONFIG_VIRTIO_PCI, CONFIG_VIRTIO_MMIO, CONFIG_LGUEST, > diff --git a/drivers/virtio/virtio_ring.c b/drivers/virtio/virtio_ring.c > index d356a701c9c2..6a78e2fd8e63 100644 > --- a/drivers/virtio/virtio_ring.c > +++ b/drivers/virtio/virtio_ring.c > @@ -24,6 +24,7 @@ > #include <linux/module.h> > #include <linux/hrtimer.h...
2014 Aug 27
2
[PATCH 2/3] virtio_ring: Use DMA APIs
...--- a/drivers/virtio/Kconfig > +++ b/drivers/virtio/Kconfig > @@ -1,5 +1,6 @@ > config VIRTIO > tristate > + depends on HAS_DMA > ---help--- > This option is selected by any driver which implements the virtio > bus, such as CONFIG_VIRTIO_PCI, CONFIG_VIRTIO_MMIO, CONFIG_LGUEST, > diff --git a/drivers/virtio/virtio_ring.c b/drivers/virtio/virtio_ring.c > index d356a701c9c2..6a78e2fd8e63 100644 > --- a/drivers/virtio/virtio_ring.c > +++ b/drivers/virtio/virtio_ring.c > @@ -24,6 +24,7 @@ > #include <linux/module.h> > #include <linux/hrtimer.h...
2013 Jun 20
0
[PATCH] virtio-spec: add field for scsi command size
...Signed-off-by: Rusty Russell <rusty at rustcorp.com.au> diff --git a/drivers/virtio/Kconfig b/drivers/virtio/Kconfig index 8d5bddb..99c0187 100644 --- a/drivers/virtio/Kconfig +++ b/drivers/virtio/Kconfig @@ -5,6 +5,22 @@ config VIRTIO bus, such as CONFIG_VIRTIO_PCI, CONFIG_VIRTIO_MMIO, CONFIG_LGUEST, CONFIG_RPMSG or CONFIG_S390_GUEST. +config VIRTIO_TORTURE + bool "Virtio torture debugging" + depends on VIRTIO && DEBUG_KERNEL + help + + This makes the virtio_ring implementation stress-test + devices. In particularly, creatively change the format of + requests to...
2014 Aug 26
0
[PATCH 2/3] virtio_ring: Use DMA APIs
...index c6683f2e396c..b6f3acc61153 100644 --- a/drivers/virtio/Kconfig +++ b/drivers/virtio/Kconfig @@ -1,5 +1,6 @@ config VIRTIO tristate + depends on HAS_DMA ---help--- This option is selected by any driver which implements the virtio bus, such as CONFIG_VIRTIO_PCI, CONFIG_VIRTIO_MMIO, CONFIG_LGUEST, diff --git a/drivers/virtio/virtio_ring.c b/drivers/virtio/virtio_ring.c index d356a701c9c2..6a78e2fd8e63 100644 --- a/drivers/virtio/virtio_ring.c +++ b/drivers/virtio/virtio_ring.c @@ -24,6 +24,7 @@ #include <linux/module.h> #include <linux/hrtimer.h> #include <linux/kmemleak.h...
2014 Aug 27
0
[PATCH 2/3] virtio_ring: Use DMA APIs
...++ b/drivers/virtio/Kconfig > > @@ -1,5 +1,6 @@ > > config VIRTIO > > tristate > > + depends on HAS_DMA > > ---help--- > > This option is selected by any driver which implements the virtio > > bus, such as CONFIG_VIRTIO_PCI, CONFIG_VIRTIO_MMIO, CONFIG_LGUEST, > > diff --git a/drivers/virtio/virtio_ring.c b/drivers/virtio/virtio_ring.c > > index d356a701c9c2..6a78e2fd8e63 100644 > > --- a/drivers/virtio/virtio_ring.c > > +++ b/drivers/virtio/virtio_ring.c > > @@ -24,6 +24,7 @@ > > #include <linux/module.h> >...
2007 May 10
4
[PATCH 0/5] lguest feedback tidyups
Hi all, Gratefully-received recent feedback from CC'd was applied to excellent effect (and the advice from Matt Mackall about my personal appearance is best unrequited). The patch is split in 5 parts to correspond with the 9 parts Andrew sent out before, but here's the summary: 1) Sparse (thanks Christoph Hellwig): - lguest_const can be static now - lguest.c should include
2007 May 10
4
[PATCH 0/5] lguest feedback tidyups
Hi all, Gratefully-received recent feedback from CC'd was applied to excellent effect (and the advice from Matt Mackall about my personal appearance is best unrequited). The patch is split in 5 parts to correspond with the 9 parts Andrew sent out before, but here's the summary: 1) Sparse (thanks Christoph Hellwig): - lguest_const can be static now - lguest.c should include
2013 Jun 20
3
[PATCH] virtio-spec: add field for scsi command size
...usty at rustcorp.com.au> > > diff --git a/drivers/virtio/Kconfig b/drivers/virtio/Kconfig > index 8d5bddb..99c0187 100644 > --- a/drivers/virtio/Kconfig > +++ b/drivers/virtio/Kconfig > @@ -5,6 +5,22 @@ config VIRTIO > bus, such as CONFIG_VIRTIO_PCI, CONFIG_VIRTIO_MMIO, CONFIG_LGUEST, > CONFIG_RPMSG or CONFIG_S390_GUEST. > > +config VIRTIO_TORTURE > + bool "Virtio torture debugging" > + depends on VIRTIO && DEBUG_KERNEL > + help > + > + This makes the virtio_ring implementation stress-test > + devices. In particularly, cre...
2013 Jun 20
3
[PATCH] virtio-spec: add field for scsi command size
...usty at rustcorp.com.au> > > diff --git a/drivers/virtio/Kconfig b/drivers/virtio/Kconfig > index 8d5bddb..99c0187 100644 > --- a/drivers/virtio/Kconfig > +++ b/drivers/virtio/Kconfig > @@ -5,6 +5,22 @@ config VIRTIO > bus, such as CONFIG_VIRTIO_PCI, CONFIG_VIRTIO_MMIO, CONFIG_LGUEST, > CONFIG_RPMSG or CONFIG_S390_GUEST. > > +config VIRTIO_TORTURE > + bool "Virtio torture debugging" > + depends on VIRTIO && DEBUG_KERNEL > + help > + > + This makes the virtio_ring implementation stress-test > + devices. In particularly, cre...
2007 Jul 20
2
[PATCH 1/7] lguest: documentation pt I: Preparation
...not + * have more than 2.5G of memory on a normally configured Host. :*/ #define _LARGEFILE64_SOURCE #define _GNU_SOURCE #include <stdio.h> =================================================================== --- a/drivers/lguest/Makefile +++ b/drivers/lguest/Makefile @@ -5,3 +5,15 @@ obj-$(CONFIG_LGUEST) += lg.o obj-$(CONFIG_LGUEST) += lg.o lg-y := core.o hypercalls.o page_tables.o interrupts_and_traps.o \ segments.o io.o lguest_user.o switcher.o + +Preparation Preparation!: PREFIX=P +Guest: PREFIX=G +Drivers: PREFIX=D +Launcher: PREFIX=L +Host: PREFIX=H +Switcher: PREFIX=S +Mastery: PREFIX=M...