Changes in / [9256d093:1c8bfe8] in mainline
- Location:
- uspace/lib
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/gpt/libgpt.c
r9256d093 r1c8bfe8 57 57 static long long nearest_larger_int(double a); 58 58 static uint8_t get_byte(const char *); 59 static int check_overlap(gpt_part_t * p1, gpt_part_t * p2);60 59 61 60 /** Allocate memory for gpt label */ … … 291 290 292 291 /** Write GPT and partitions to device 293 * Note: also writes the header.294 292 * @param label label to write 295 293 * @param dev_handle device to write the data to … … 426 424 * Note: for use with gpt_alloc_partition() only. You will get 427 425 * duplicates with gpt_get_partition(). 428 * Note: does not call gpt_free_partition()!429 426 */ 430 427 int gpt_add_partition(gpt_label_t *label, gpt_part_t *partition) … … 435 432 } 436 433 437 /*FIXME:438 * Check dimensions and stuff! */439 gpt_part_foreach(label, p) {440 if (gpt_get_part_type(p) != GPT_PTE_UNUSED) {441 if (check_overlap(partition, p))442 return EINVAL;443 }444 }445 446 434 memcpy(label->parts->part_array + label->parts->fill++, 447 435 partition, sizeof(gpt_part_t)); 448 449 450 436 451 437 return EOK; … … 474 460 label->parts->fill -= 1; 475 461 476 /* FIXME! HOPEFULLY FIXED.462 /* FIXME! 477 463 * We cannot reduce the array so simply. We may have some partitions 478 * there since we allow blank spots. */ 479 gpt_part_t * p; 464 * there since we allow blank spots.*/ 480 465 if (label->parts->fill < (label->parts->arr_size / 2) - GPT_IGNORE_FILL_NUM) { 481 for (p = gpt_get_partition_at(label, label->parts->arr_size / 2);482 p < label->parts->part_array + label->parts->arr_size; ++p) {483 if (gpt_get_part_type(p) != GPT_PTE_UNUSED)484 return EOK;485 }486 487 466 if (reduce_part_array(label->parts) == ENOMEM) 488 467 return ENOMEM; … … 733 712 } 734 713 735 static int check_overlap(gpt_part_t * p1, gpt_part_t * p2) 736 { 737 if (gpt_get_start_lba(p1) < gpt_get_start_lba(p2) && gpt_get_end_lba(p1) <= gpt_get_start_lba(p2)) { 738 return 0; 739 } else if (gpt_get_start_lba(p1) > gpt_get_start_lba(p2) && gpt_get_end_lba(p2) <= gpt_get_start_lba(p1)) { 740 return 0; 741 } 742 743 return 1; 744 } 745 746 714 715 716 -
uspace/lib/mbr/libmbr.h
r9256d093 r1c8bfe8 204 204 /* Read/Write/Set MBR partitions. 205 205 * NOTE: Writing partitions writes the complete header as well. */ 206 extern int 206 extern int mbr_read_partitions(mbr_label_t *); 207 207 extern int mbr_write_partitions(mbr_label_t *, service_id_t); 208 208 extern mbr_part_t * mbr_alloc_partition(void);
Note:
See TracChangeset
for help on using the changeset viewer.