summaryrefslogtreecommitdiff
path: root/cgpt
diff options
context:
space:
mode:
Diffstat (limited to 'cgpt')
-rw-r--r--cgpt/cgpt_common.c36
-rw-r--r--cgpt/cgpt_show.c36
2 files changed, 36 insertions, 36 deletions
diff --git a/cgpt/cgpt_common.c b/cgpt/cgpt_common.c
index c8a069a4..ff3ae696 100644
--- a/cgpt/cgpt_common.c
+++ b/cgpt/cgpt_common.c
@@ -1162,6 +1162,42 @@ uint8_t RepairHeader(GptData *gpt, const uint32_t valid_headers) {
return 0;
}
+int CgptGetNumNonEmptyPartitions(CgptShowParams *params) {
+ struct drive drive;
+ int gpt_retval;
+ int retval;
+
+ if (params == NULL)
+ return CGPT_FAILED;
+
+ if (CGPT_OK != DriveOpen(params->drive_name, &drive, O_RDONLY))
+ return CGPT_FAILED;
+
+ if (GPT_SUCCESS != (gpt_retval = GptSanityCheck(&drive.gpt))) {
+ Error("GptSanityCheck() returned %d: %s\n",
+ gpt_retval, GptError(gpt_retval));
+ retval = CGPT_FAILED;
+ goto done;
+ }
+
+ params->num_partitions = 0;
+ int numEntries = GetNumberOfEntries(&drive);
+ int i;
+ for(i = 0; i < numEntries; i++) {
+ GptEntry *entry = GetEntry(&drive.gpt, ANY_VALID, i);
+ if (GuidIsZero(&entry->type))
+ continue;
+
+ params->num_partitions++;
+ }
+
+ retval = CGPT_OK;
+
+done:
+ DriveClose(&drive, 0);
+ return retval;
+}
+
int GuidEqual(const Guid *guid1, const Guid *guid2) {
return (0 == memcmp(guid1, guid2, sizeof(Guid)));
}
diff --git a/cgpt/cgpt_show.c b/cgpt/cgpt_show.c
index 082a5c73..a2b7c951 100644
--- a/cgpt/cgpt_show.c
+++ b/cgpt/cgpt_show.c
@@ -219,42 +219,6 @@ void EntriesDetails(struct drive *drive, const int secondary, int raw) {
}
}
-int CgptGetNumNonEmptyPartitions(CgptShowParams *params) {
- struct drive drive;
- int gpt_retval;
- int retval;
-
- if (params == NULL)
- return CGPT_FAILED;
-
- if (CGPT_OK != DriveOpen(params->drive_name, &drive, O_RDONLY))
- return CGPT_FAILED;
-
- if (GPT_SUCCESS != (gpt_retval = GptSanityCheck(&drive.gpt))) {
- Error("GptSanityCheck() returned %d: %s\n",
- gpt_retval, GptError(gpt_retval));
- retval = CGPT_FAILED;
- goto done;
- }
-
- params->num_partitions = 0;
- int numEntries = GetNumberOfEntries(&drive);
- int i;
- for(i = 0; i < numEntries; i++) {
- GptEntry *entry = GetEntry(&drive.gpt, ANY_VALID, i);
- if (GuidIsZero(&entry->type))
- continue;
-
- params->num_partitions++;
- }
-
- retval = CGPT_OK;
-
-done:
- DriveClose(&drive, 0);
- return retval;
-}
-
int MtdShow(struct drive *drive, CgptShowParams *params) {
if (params->partition) { // show single partition
if (params->partition > GetNumberOfEntries(drive)) {