提交 17f82636 编写于 作者: E Eric Blake

maint: fix spelling errors in disk pools

Noticed during my work on storage struct cleanups.

* src/storage/storage_backend_disk.c
(virStorageBackendDiskPartBoundaries): Fix spelling errors.
Signed-off-by: NEric Blake <eblake@redhat.com>
上级 ca1ee0fd
/* /*
* storage_backend_disk.c: storage backend for disk handling * storage_backend_disk.c: storage backend for disk handling
* *
* Copyright (C) 2007-2008, 2010-2013 Red Hat, Inc. * Copyright (C) 2007-2014 Red Hat, Inc.
* Copyright (C) 2007-2008 Daniel P. Berrange * Copyright (C) 2007-2008 Daniel P. Berrange
* *
* This library is free software; you can redistribute it and/or * This library is free software; you can redistribute it and/or
...@@ -440,7 +440,7 @@ static int ...@@ -440,7 +440,7 @@ static int
virStorageBackendDiskPartTypeToCreate(virStoragePoolObjPtr pool) virStorageBackendDiskPartTypeToCreate(virStoragePoolObjPtr pool)
{ {
if (pool->def->source.format == VIR_STORAGE_POOL_DISK_DOS) { if (pool->def->source.format == VIR_STORAGE_POOL_DISK_DOS) {
/* count primary and extended paritions, /* count primary and extended partitions,
can't be more than 3 to create a new primary partition */ can't be more than 3 to create a new primary partition */
size_t i; size_t i;
int count = 0; int count = 0;
...@@ -532,10 +532,10 @@ virStorageBackendDiskPartFormat(virStoragePoolObjPtr pool, ...@@ -532,10 +532,10 @@ virStorageBackendDiskPartFormat(virStoragePoolObjPtr pool,
* partitions * partitions
*/ */
static int static int
virStorageBackendDiskPartBoundries(virStoragePoolObjPtr pool, virStorageBackendDiskPartBoundaries(virStoragePoolObjPtr pool,
unsigned long long *start, unsigned long long *start,
unsigned long long *end, unsigned long long *end,
unsigned long long allocation) unsigned long long allocation)
{ {
size_t i; size_t i;
int smallestExtent = -1; int smallestExtent = -1;
...@@ -568,7 +568,7 @@ virStorageBackendDiskPartBoundries(virStoragePoolObjPtr pool, ...@@ -568,7 +568,7 @@ virStorageBackendDiskPartBoundries(virStoragePoolObjPtr pool,
the extra bytes we have */ the extra bytes we have */
neededSize += cylinderSize; neededSize += cylinderSize;
} }
/* if we are creating a logical patition, we need one extra /* if we are creating a logical partition, we need one extra
block between partitions (or actually move start one block) */ block between partitions (or actually move start one block) */
if (partType == VIR_STORAGE_VOL_DISK_TYPE_LOGICAL) { if (partType == VIR_STORAGE_VOL_DISK_TYPE_LOGICAL) {
size -= SECTOR_SIZE; size -= SECTOR_SIZE;
...@@ -647,9 +647,9 @@ virStorageBackendDiskCreateVol(virConnectPtr conn ATTRIBUTE_UNUSED, ...@@ -647,9 +647,9 @@ virStorageBackendDiskCreateVol(virConnectPtr conn ATTRIBUTE_UNUSED,
} }
virCommandAddArg(cmd, partFormat); virCommandAddArg(cmd, partFormat);
if (virStorageBackendDiskPartBoundries(pool, &startOffset, if (virStorageBackendDiskPartBoundaries(pool, &startOffset,
&endOffset, &endOffset,
vol->capacity) != 0) { vol->capacity) != 0) {
goto cleanup; goto cleanup;
} }
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册