sxlock.c 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. /*
  2. * Copyright (c) 2022 Agustina Arzille.
  3. *
  4. * This program is free software: you can redistribute it and/or modify
  5. * it under the terms of the GNU General Public License as published by
  6. * the Free Software Foundation, either version 3 of the License, or
  7. * (at your option) any later version.
  8. *
  9. * This program is distributed in the hope that it will be useful,
  10. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. * GNU General Public License for more details.
  13. *
  14. * You should have received a copy of the GNU General Public License
  15. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  16. */
  17. #include <kern/sleepq.h>
  18. #include <kern/sxlock.h>
  19. #include <machine/cpu.h>
  20. #define sxlock_lock_impl(try_lock, label, obj) \
  21. do \
  22. { \
  23. struct sleepq *sleepq = sleepq_lend ((obj), false); \
  24. atomic_or_rel (&(obj)->lock, SXLOCK_MASK + 1); \
  25. \
  26. while (1) \
  27. { \
  28. if (try_lock (obj) == 0) \
  29. break; \
  30. \
  31. sleepq_wait (sleepq, label); \
  32. } \
  33. \
  34. sleepq_return (sleepq); \
  35. } \
  36. while (0)
  37. void
  38. sxlock_exlock_slow (struct sxlock *sxp)
  39. {
  40. sxlock_lock_impl (sxlock_tryexlock, "sxlock/X", sxp);
  41. }
  42. void
  43. sxlock_shlock_slow (struct sxlock *sxp)
  44. {
  45. sxlock_lock_impl (sxlock_tryshlock, "sxlock/S", sxp);
  46. }
  47. void
  48. sxlock_unlock_slow (struct sxlock *sxp)
  49. {
  50. struct sleepq *sleepq = sleepq_acquire (sxp, false);
  51. if (sleepq)
  52. {
  53. sleepq_broadcast (sleepq);
  54. sleepq_release (sleepq);
  55. }
  56. }