volume.c 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. /*
  2. * Copyright (C) 2014 John Crispin <blogic@openwrt.org>
  3. *
  4. * This program is free software; you can redistribute it and/or modify
  5. * it under the terms of the GNU Lesser General Public License version 2.1
  6. * as published by the Free Software Foundation
  7. *
  8. * This program is distributed in the hope that it will be useful,
  9. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  11. * GNU General Public License for more details.
  12. */
  13. #include <sys/mount.h>
  14. #include <stdio.h>
  15. #include <stdlib.h>
  16. #include "libfstools.h"
  17. #include "volume.h"
  18. static LIST_HEAD(drivers);
  19. void
  20. volume_register_driver(struct driver *d)
  21. {
  22. struct driver *cur, *tmp;
  23. list_for_each_entry_safe(cur, tmp, &drivers, list) {
  24. if (d->priority <= cur->priority)
  25. continue;
  26. _list_add(&d->list, cur->list.prev, &cur->list);
  27. return;
  28. }
  29. list_add_tail(&d->list, &drivers);
  30. }
  31. struct volume* volume_find(char *name)
  32. {
  33. struct volume *v;
  34. struct driver *d;
  35. list_for_each_entry(d, &drivers, list) {
  36. if (d->find) {
  37. v = d->find(name);
  38. if (v)
  39. return v;
  40. }
  41. }
  42. return NULL;
  43. }