storage: Improve virStorageBackendFileSystemStop

It's actually not used for DIR pool. So removing the checking.
This commit is contained in:
Osier Yang 2012-11-21 10:41:02 +08:00
parent f4ac06569a
commit 104650db3e

View File

@ -930,7 +930,7 @@ no_memory:
* @conn connection to report errors against * @conn connection to report errors against
* @pool storage pool to start * @pool storage pool to start
* *
* Stops a directory or FS based storage pool. * Stops a FS based storage pool.
* *
* - If it is a FS based pool, unmounts the unlying source device on the pool * - If it is a FS based pool, unmounts the unlying source device on the pool
* - Releases all cached data about volumes * - Releases all cached data about volumes
@ -940,8 +940,7 @@ static int
virStorageBackendFileSystemStop(virConnectPtr conn ATTRIBUTE_UNUSED, virStorageBackendFileSystemStop(virConnectPtr conn ATTRIBUTE_UNUSED,
virStoragePoolObjPtr pool) virStoragePoolObjPtr pool)
{ {
if (pool->def->type != VIR_STORAGE_POOL_DIR && if (virStorageBackendFileSystemUnmount(pool) < 0)
virStorageBackendFileSystemUnmount(pool) < 0)
return -1; return -1;
return 0; return 0;