Changeset 372df8f in mainline for uspace/lib/label/src/label.c


Ignore:
Timestamp:
2015-10-09T07:00:23Z (9 years ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
0ecfc62
Parents:
0bde8523
Message:

Let VBD handle unlabeled devices too. Now volsrv only cares about partitions.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/label/src/label.c

    r0bde8523 r372df8f  
    4040#include <stdlib.h>
    4141
     42#include "dummy.h"
    4243#include "gpt.h"
    4344#include "mbr.h"
     
    4647        &gpt_label_ops,
    4748        &mbr_label_ops,
     49        &dummy_label_ops,
    4850        NULL
    4951};
     
    7072
    7173        switch (ltype) {
     74        case lt_none:
     75                return EINVAL;
    7276        case lt_gpt:
    7377                ops = &gpt_label_ops;
Note: See TracChangeset for help on using the changeset viewer.