volume.c 938 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  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. list_add(&d->list, &drivers);
  23. }
  24. struct volume* volume_find(char *name)
  25. {
  26. struct volume *v;
  27. struct driver *d;
  28. list_for_each_entry(d, &drivers, list) {
  29. if (d->find) {
  30. v = d->find(name);
  31. if (v)
  32. return v;
  33. }
  34. }
  35. return NULL;
  36. }