* [PATCH] Deprecate usage of IDE and SCSI frontend devices in paravirt guests
@ 2006-10-27 13:41 Glauber de Oliveira Costa
0 siblings, 0 replies; only message in thread
From: Glauber de Oliveira Costa @ 2006-10-27 13:41 UTC (permalink / raw)
To: xen-devel, Ewan Mellor
[-- Attachment #1: Type: text/plain, Size: 268 bytes --]
This patch deprecates the usage in IDE and SCSI front end devices in
paravirt guests, through a warning. HVM is untouched.
Comments welcome,
Signed-off-by: Glauber de Oliveira Costa <gcosta@redhat.com>
--
Glauber de Oliveira Costa
Red Hat Inc.
"Free as in Freedom"
[-- Attachment #2: xen-deprecate-nonxvd --]
[-- Type: text/plain, Size: 1023 bytes --]
# HG changeset patch
# User gcosta@redhat.com
# Date 1161955140 14400
# Node ID bea5de78c62533d3a0efd1c43f41e6ff56572743
# Parent 0c7923eb6b9846c92f1c15486e06ee9745bcf676
[LINUX] Deprecate usage of ide/scsi devices in paravirt guests
diff -r 0c7923eb6b98 -r bea5de78c625 linux-2.6-xen-sparse/drivers/xen/blkfront/vbd.c
--- a/linux-2.6-xen-sparse/drivers/xen/blkfront/vbd.c Wed Oct 25 10:27:03 2006 +0100
+++ b/linux-2.6-xen-sparse/drivers/xen/blkfront/vbd.c Fri Oct 27 09:19:00 2006 -0400
@@ -109,10 +109,16 @@ xlbd_alloc_major_info(int major, int min
switch (index) {
case XLBD_MAJOR_IDE_RANGE:
+#ifdef CONFIG_XEN
+ WPRINTK("Use of IDE block devices inside paravirt guests is deprecated\n");
+#endif
ptr->type = &xlbd_ide_type;
ptr->index = index - XLBD_MAJOR_IDE_START;
break;
case XLBD_MAJOR_SCSI_RANGE:
+#ifdef CONFIG_XEN
+ WPRINTK("Use of SCSI block devices inside paravirt guests is deprecated\n");
+#endif
ptr->type = &xlbd_scsi_type;
ptr->index = index - XLBD_MAJOR_SCSI_START;
break;
[-- Attachment #3: Type: text/plain, Size: 138 bytes --]
_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xensource.com
http://lists.xensource.com/xen-devel
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2006-10-27 13:41 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2006-10-27 13:41 [PATCH] Deprecate usage of IDE and SCSI frontend devices in paravirt guests Glauber de Oliveira Costa
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.