Displaying 7 results from an estimated 7 matches for "xen_blkdev_backend".
2012 Sep 03
3
[PATCH] virtio-blk: Fix kconfig option
...street <koverstreet at google.com>
---
drivers/block/Kconfig | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/drivers/block/Kconfig b/drivers/block/Kconfig
index a796407..d4e1d12 100644
--- a/drivers/block/Kconfig
+++ b/drivers/block/Kconfig
@@ -521,7 +521,8 @@ config XEN_BLKDEV_BACKEND
config VIRTIO_BLK
tristate "Virtio block driver (EXPERIMENTAL)"
- depends on EXPERIMENTAL && VIRTIO
+ select VIRTIO
+ depends on EXPERIMENTAL
---help---
This is the virtual block driver for virtio. It can be used with
lguest or QEMU based VMMs (like KVM or X...
2012 Sep 03
3
[PATCH] virtio-blk: Fix kconfig option
...street <koverstreet at google.com>
---
drivers/block/Kconfig | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/drivers/block/Kconfig b/drivers/block/Kconfig
index a796407..d4e1d12 100644
--- a/drivers/block/Kconfig
+++ b/drivers/block/Kconfig
@@ -521,7 +521,8 @@ config XEN_BLKDEV_BACKEND
config VIRTIO_BLK
tristate "Virtio block driver (EXPERIMENTAL)"
- depends on EXPERIMENTAL && VIRTIO
+ select VIRTIO
+ depends on EXPERIMENTAL
---help---
This is the virtual block driver for virtio. It can be used with
lguest or QEMU based VMMs (like KVM or X...
2006 Aug 02
2
[PATCH 1/6] scsifront/back drivers'' common Makefile and header
...CSI_DC390T is not set
# CONFIG_SCSI_NSP32 is not set
# CONFIG_SCSI_DEBUG is not set
+# CONFIG_SCSI_SRP is not set
#
# Multi-device support (RAID and LVM)
@@ -1322,11 +1324,13 @@ CONFIG_XEN_PCIDEV_BACKEND_PASS=y
CONFIG_XEN_PCIDEV_BACKEND_PASS=y
# CONFIG_XEN_PCIDEV_BE_DEBUG is not set
CONFIG_XEN_BLKDEV_BACKEND=y
+CONFIG_XEN_SCSI_BACKEND=y
CONFIG_XEN_NETDEV_BACKEND=y
# CONFIG_XEN_NETDEV_PIPELINED_TRANSMITTER is not set
CONFIG_XEN_NETDEV_LOOPBACK=y
# CONFIG_XEN_TPMDEV_BACKEND is not set
CONFIG_XEN_BLKDEV_FRONTEND=y
+CONFIG_XEN_SCSI_FRONTEND=y
CONFIG_XEN_NETDEV_FRONTEND=y
CONFIG_XEN_SCRUB_PAGES=y
CO...
2017 Jan 28
6
make SCSI passthrough support optional
Hi all,
this series builds on my previous changes in Jens' for-4.11/rq-refactor
branch that split out the BLOCK_PC fields from struct request into a new
struct scsi_request, and makes support for struct scsi_request and the
SCSI passthrough ioctls optional. It is now only enabled by drivers that
need it.
In addition I've made SCSI passthrough support in the virtio_blk driver an
optional
2017 Jan 28
6
make SCSI passthrough support optional
Hi all,
this series builds on my previous changes in Jens' for-4.11/rq-refactor
branch that split out the BLOCK_PC fields from struct request into a new
struct scsi_request, and makes support for struct scsi_request and the
SCSI passthrough ioctls optional. It is now only enabled by drivers that
need it.
In addition I've made SCSI passthrough support in the virtio_blk driver an
optional
2011 Feb 26
1
make world error
This time make world on Ubuntu 10.04 gives following error
gcc -O2 -fomit-frame-pointer -m32 -march=i686 -fno-strict-aliasing
-std=gnu99 -Wall -Wstrict-prototypes -Wno-unused-value
-Wdeclaration-after-statement -D__XEN_TOOLS__ -MMD -MF .fsimage.so.d
-D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE
-D_LARGEFILE64_SOURCE -mno-tls-direct-seg-refs
-I../../../tools/libfsimage/common/
2008 Nov 29
24
pv_ops dom0 testing
...m what I have read on the mailing lists, it seems
that it is usually a problem with either grub or a
corrupt dom0 kernel.
Attached is my kernel config (2.6.28-rc6-tip).
I followed the instructions on:
http://wiki.xensource.com/xenwiki/XenParavirtOps
Then I did make menuconfig and added:
XEN_DOM0
XEN_BLKDEV_BACKEND
here are the two grub entries I tried
title Xen 3.4-unstable / Ubuntu 8.10, kernel 2.6.28-rc6-tip
root (hd0,0)
kernel /boot/xen-3.4-unstable.gz loglvl=all guest_loglvl=all
dom0_max_vcpus=1 com1=115200,8n1 console=com1 noreboot dom0_mem=512M
module /boot/vmlinuz-2.6.28-rc6-tip root=/dev/sda1...