VSCSILun.cpp revision 26947320577c481b4afefdb0afbb855181e5b2e8
/* $Id$ */
/** @file
* Virtual SCSI driver: LUN handling
*/
/*
* Copyright (C) 2006-2010 Sun Microsystems, Inc.
*
* This file is part of VirtualBox Open Source Edition (OSE), as
* available from http://www.virtualbox.org. This file is free software;
* General Public License (GPL) as published by the Free Software
* Foundation, in version 2 as it comes in the "COPYING" file of the
* VirtualBox OSE distribution. VirtualBox OSE is distributed in the
* hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
*
* Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
* Clara, CA 95054 USA or visit http://www.sun.com if you need
* additional information or have any questions.
*/
#define LOG_GROUP LOG_GROUP_VSCSI
#include "VSCSIInternal.h"
/** SBC descriptor */
extern VSCSILUNDESC g_VScsiLunTypeSbc;
/** MMC descriptor */
//extern PVSCSILUNDESC g_pVScsiLunTypeMmc;
/**
* Array of supported SCSI LUN types.
*/
static PVSCSILUNDESC g_aVScsiLunTypesSupported[] =
{
};
void *pvVScsiLunUser)
{
{
{
break;
}
}
if (!pVScsiLunDesc)
if (!pVScsiLun)
return VERR_NO_MEMORY;
if (RT_SUCCESS(rc))
{
/** @todo Init other stuff */
*phVScsiLun = pVScsiLun;
return VINF_SUCCESS;
}
return rc;
}
/**
* Destroy virtual SCSI LUN.
*
* @returns VBox status code.
* @param hVScsiLun The virtal SCSI LUN handle to destroy.
*/
{
if (RT_FAILURE(rc))
return rc;
/* Make LUN invalid */
return VINF_SUCCESS;
}