Changes in / [9256d093:1c8bfe8] in mainline


Ignore:
Location:
uspace/lib
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/gpt/libgpt.c

    r9256d093 r1c8bfe8  
    5757static long long nearest_larger_int(double a);
    5858static uint8_t get_byte(const char *);
    59 static int check_overlap(gpt_part_t * p1, gpt_part_t * p2);
    6059
    6160/** Allocate memory for gpt label */
     
    291290
    292291/** Write GPT and partitions to device
    293  * Note: also writes the header.
    294292 * @param label        label to write
    295293 * @param dev_handle   device to write the data to
     
    426424 * Note: for use with gpt_alloc_partition() only. You will get
    427425 * duplicates with gpt_get_partition().
    428  * Note: does not call gpt_free_partition()!
    429426 */
    430427int gpt_add_partition(gpt_label_t *label, gpt_part_t *partition)
     
    435432        }
    436433       
    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        
    446434        memcpy(label->parts->part_array + label->parts->fill++,
    447435               partition, sizeof(gpt_part_t));
    448        
    449        
    450436       
    451437        return EOK;
     
    474460        label->parts->fill -= 1;
    475461       
    476         /* FIXME! HOPEFULLY FIXED.
     462        /* FIXME!
    477463         * 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.*/
    480465        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                
    487466                if (reduce_part_array(label->parts) == ENOMEM)
    488467                        return ENOMEM;
     
    733712}
    734713
    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  
    204204/* Read/Write/Set MBR partitions.
    205205 * NOTE: Writing partitions writes the complete header as well. */
    206 extern int          mbr_read_partitions(mbr_label_t *);
     206extern int mbr_read_partitions(mbr_label_t *);
    207207extern int          mbr_write_partitions(mbr_label_t *, service_id_t);
    208208extern mbr_part_t * mbr_alloc_partition(void);
Note: See TracChangeset for help on using the changeset viewer.