summaryrefslogtreecommitdiffstats
path: root/lib/label
diff options
context:
space:
mode:
authorJoe Thornber <thornber@redhat.com>2002-01-11 10:43:32 +0000
committerJoe Thornber <thornber@redhat.com>2002-01-11 10:43:32 +0000
commit493656dd3c6ca468fdf6fd908e49c1a6058e4d7f (patch)
tree6881ccaad125c1ea168ef506065fd7a0fc2adb37 /lib/label
parent391f02b1b566ba90bec541bca6e199e8f119e76f (diff)
downloadlvm2-493656dd3c6ca468fdf6fd908e49c1a6058e4d7f.tar.gz
lvm2-493656dd3c6ca468fdf6fd908e49c1a6058e4d7f.tar.xz
lvm2-493656dd3c6ca468fdf6fd908e49c1a6058e4d7f.zip
o label.c now compiles.
Diffstat (limited to 'lib/label')
-rw-r--r--lib/label/label.c32
-rw-r--r--lib/label/label.h6
2 files changed, 19 insertions, 19 deletions
diff --git a/lib/label/label.c b/lib/label/label.c
index 0dbccc6e..6a02038c 100644
--- a/lib/label/label.c
+++ b/lib/label/label.c
@@ -40,7 +40,7 @@ static struct labeller_i *_alloc_li(const char *name, struct labeller *l)
return li;
}
-static void _free_li(struct list *li)
+static void _free_li(struct labeller_i *li)
{
dbg_free(li);
}
@@ -55,12 +55,12 @@ int label_init(void)
void label_exit(void)
{
struct list *c, *n;
- struct labeller_list *ll;
+ struct labeller_i *li;
for (c = _labellers.n; c != &_labellers; c = n) {
n = c->n;
- ll = list_item(c, struct labeller_list);
- _free_li(c);
+ li = list_item(c, struct labeller_i);
+ _free_li(li);
}
}
@@ -91,55 +91,55 @@ struct labeller *label_get_handler(const char *name)
return NULL;
}
-static struct labeller *_find_labeller(const char *device)
+static struct labeller *_find_labeller(struct device *dev)
{
struct list *lih;
struct labeller_i *li;
list_iterate (lih, &_labellers) {
li = list_item(lih, struct labeller_i);
- if (li->l->ops->can_handle(device))
+ if (li->l->ops->can_handle(li->l, dev))
return li->l;
}
- log_err("Could not find label on device '%s'.", device);
+ log_err("Could not find label on device '%s'.", dev_name(dev));
return NULL;
}
-int label_remove(const char *device)
+int label_remove(struct device *dev)
{
struct labeller *l;
- if (!(l = _find_labeller(device))) {
+ if (!(l = _find_labeller(dev))) {
stack;
return 0;
}
- return l->ops->remove(device);
+ return l->ops->remove(l, dev);
}
-int label_read(const char *path, struct label **result)
+int label_read(struct device *dev, struct label **result)
{
struct labeller *l;
- if (!(l = _find_labeller(device))) {
+ if (!(l = _find_labeller(dev))) {
stack;
return 0;
}
- return l->ops->read(device, label);
+ return l->ops->read(l, dev, result);
}
-int label_verify(const char *path)
+int label_verify(struct device *dev)
{
struct labeller *l;
- if (!(l = _find_labeller(device))) {
+ if (!(l = _find_labeller(dev))) {
stack;
return 0;
}
- return l->ops->verify(device);
+ return l->ops->verify(l, dev);
}
void label_free(struct label *l)
diff --git a/lib/label/label.h b/lib/label/label.h
index ea607b68..cc245238 100644
--- a/lib/label/label.h
+++ b/lib/label/label.h
@@ -69,9 +69,9 @@ int label_register_handler(const char *name, struct labeller *handler);
struct labeller *label_get_handler(const char *name);
-int label_remove(const char *path);
-int label_read(const char *path, struct label **result);
-int label_verify(const char *path);
+int label_remove(struct device *dev);
+int label_read(struct device *dev, struct label **result);
+int label_verify(struct device *dev);
void label_free(struct label *l);
/*