fcb_walk.c 1001 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. /*
  2. * Copyright (c) 2017 Nordic Semiconductor ASA
  3. * Copyright (c) 2015 Runtime Inc
  4. *
  5. * SPDX-License-Identifier: Apache-2.0
  6. */
  7. #include <fs/fcb.h>
  8. #include "fcb_priv.h"
  9. /*
  10. * Call 'cb' for every element in flash circular buffer. If sector is specified,
  11. * only elements with that flash_sector are reported.
  12. */
  13. int
  14. fcb_walk(struct fcb *fcb, struct flash_sector *sector, fcb_walk_cb cb,
  15. void *cb_arg)
  16. {
  17. struct fcb_entry_ctx entry_ctx;
  18. int rc;
  19. entry_ctx.loc.fe_sector = sector;
  20. entry_ctx.loc.fe_elem_off = 0U;
  21. rc = k_mutex_lock(&fcb->f_mtx, K_FOREVER);
  22. if (rc < 0) {
  23. return -EINVAL;
  24. }
  25. while ((rc = fcb_getnext_nolock(fcb, &entry_ctx.loc)) !=
  26. -ENOTSUP) {
  27. k_mutex_unlock(&fcb->f_mtx);
  28. if (sector && entry_ctx.loc.fe_sector != sector) {
  29. return 0;
  30. }
  31. entry_ctx.fap = fcb->fap;
  32. rc = cb(&entry_ctx, cb_arg);
  33. if (rc) {
  34. return rc;
  35. }
  36. rc = k_mutex_lock(&fcb->f_mtx, K_FOREVER);
  37. if (rc < 0) {
  38. return -EINVAL;
  39. }
  40. }
  41. k_mutex_unlock(&fcb->f_mtx);
  42. return 0;
  43. }