From mboxrd@z Thu Jan 1 00:00:00 1970 From: Glauber de Oliveira Costa Subject: [PATCH] Deprecate usage of IDE and SCSI frontend devices in paravirt guests Date: Fri, 27 Oct 2006 10:41:08 -0300 Message-ID: <20061027134108.GA12493@redhat.com> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="xHFwDpU9dbj6ez1V" Return-path: Content-Disposition: inline List-Unsubscribe: , List-Post: List-Help: List-Subscribe: , Sender: xen-devel-bounces@lists.xensource.com Errors-To: xen-devel-bounces@lists.xensource.com To: xen-devel@lists.xensource.com, Ewan Mellor List-Id: xen-devel@lists.xenproject.org --xHFwDpU9dbj6ez1V Content-Type: text/plain; charset=us-ascii Content-Disposition: inline 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 -- Glauber de Oliveira Costa Red Hat Inc. "Free as in Freedom" --xHFwDpU9dbj6ez1V Content-Type: text/plain; charset=us-ascii Content-Disposition: inline; filename=xen-deprecate-nonxvd # 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; --xHFwDpU9dbj6ez1V Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Disposition: inline _______________________________________________ Xen-devel mailing list Xen-devel@lists.xensource.com http://lists.xensource.com/xen-devel --xHFwDpU9dbj6ez1V--