coth.h 5.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. /*
  2. * 9p backend
  3. *
  4. * Copyright IBM, Corp. 2010
  5. *
  6. * Authors:
  7. * Harsh Prateek Bora <harsh@linux.vnet.ibm.com>
  8. * Venkateswararao Jujjuri(JV) <jvrao@linux.vnet.ibm.com>
  9. *
  10. * This work is licensed under the terms of the GNU GPL, version 2. See
  11. * the COPYING file in the top-level directory.
  12. *
  13. */
  14. #ifndef QEMU_9P_COTH_H
  15. #define QEMU_9P_COTH_H
  16. #include "qemu/thread.h"
  17. #include "qemu/coroutine.h"
  18. #include "9p.h"
  19. /*
  20. * we want to use bottom half because we want to make sure the below
  21. * sequence of events.
  22. *
  23. * 1. Yield the coroutine in the QEMU thread.
  24. * 2. Submit the coroutine to a worker thread.
  25. * 3. Enter the coroutine in the worker thread.
  26. * we cannot swap step 1 and 2, because that would imply worker thread
  27. * can enter coroutine while step1 is still running
  28. */
  29. #define v9fs_co_run_in_worker(code_block) \
  30. do { \
  31. QEMUBH *co_bh; \
  32. co_bh = qemu_bh_new(co_run_in_worker_bh, \
  33. qemu_coroutine_self()); \
  34. qemu_bh_schedule(co_bh); \
  35. /* \
  36. * yield in qemu thread and re-enter back \
  37. * in worker thread \
  38. */ \
  39. qemu_coroutine_yield(); \
  40. qemu_bh_delete(co_bh); \
  41. code_block; \
  42. /* re-enter back to qemu thread */ \
  43. qemu_coroutine_yield(); \
  44. } while (0)
  45. void co_run_in_worker_bh(void *);
  46. int coroutine_fn v9fs_co_readlink(V9fsPDU *, V9fsPath *, V9fsString *);
  47. int coroutine_fn v9fs_co_readdir(V9fsPDU *, V9fsFidState *, struct dirent **);
  48. off_t coroutine_fn v9fs_co_telldir(V9fsPDU *, V9fsFidState *);
  49. void coroutine_fn v9fs_co_seekdir(V9fsPDU *, V9fsFidState *, off_t);
  50. void coroutine_fn v9fs_co_rewinddir(V9fsPDU *, V9fsFidState *);
  51. int coroutine_fn v9fs_co_statfs(V9fsPDU *, V9fsPath *, struct statfs *);
  52. int coroutine_fn v9fs_co_lstat(V9fsPDU *, V9fsPath *, struct stat *);
  53. int coroutine_fn v9fs_co_chmod(V9fsPDU *, V9fsPath *, mode_t);
  54. int coroutine_fn v9fs_co_utimensat(V9fsPDU *, V9fsPath *, struct timespec [2]);
  55. int coroutine_fn v9fs_co_chown(V9fsPDU *, V9fsPath *, uid_t, gid_t);
  56. int coroutine_fn v9fs_co_truncate(V9fsPDU *, V9fsPath *, off_t);
  57. int coroutine_fn v9fs_co_llistxattr(V9fsPDU *, V9fsPath *, void *, size_t);
  58. int coroutine_fn v9fs_co_lgetxattr(V9fsPDU *, V9fsPath *,
  59. V9fsString *, void *, size_t);
  60. int coroutine_fn v9fs_co_mknod(V9fsPDU *, V9fsFidState *, V9fsString *, uid_t,
  61. gid_t, dev_t, mode_t, struct stat *);
  62. int coroutine_fn v9fs_co_mkdir(V9fsPDU *, V9fsFidState *, V9fsString *,
  63. mode_t, uid_t, gid_t, struct stat *);
  64. int coroutine_fn v9fs_co_remove(V9fsPDU *, V9fsPath *);
  65. int coroutine_fn v9fs_co_rename(V9fsPDU *, V9fsPath *, V9fsPath *);
  66. int coroutine_fn v9fs_co_unlinkat(V9fsPDU *, V9fsPath *, V9fsString *,
  67. int flags);
  68. int coroutine_fn v9fs_co_renameat(V9fsPDU *, V9fsPath *, V9fsString *,
  69. V9fsPath *, V9fsString *);
  70. int coroutine_fn v9fs_co_fstat(V9fsPDU *, V9fsFidState *, struct stat *);
  71. int coroutine_fn v9fs_co_opendir(V9fsPDU *, V9fsFidState *);
  72. int coroutine_fn v9fs_co_open(V9fsPDU *, V9fsFidState *, int);
  73. int coroutine_fn v9fs_co_open2(V9fsPDU *, V9fsFidState *, V9fsString *,
  74. gid_t, int, int, struct stat *);
  75. int coroutine_fn v9fs_co_lsetxattr(V9fsPDU *, V9fsPath *, V9fsString *,
  76. void *, size_t, int);
  77. int coroutine_fn v9fs_co_lremovexattr(V9fsPDU *, V9fsPath *, V9fsString *);
  78. int coroutine_fn v9fs_co_closedir(V9fsPDU *, V9fsFidOpenState *);
  79. int coroutine_fn v9fs_co_close(V9fsPDU *, V9fsFidOpenState *);
  80. int coroutine_fn v9fs_co_fsync(V9fsPDU *, V9fsFidState *, int);
  81. int coroutine_fn v9fs_co_symlink(V9fsPDU *, V9fsFidState *, V9fsString *,
  82. const char *, gid_t, struct stat *);
  83. int coroutine_fn v9fs_co_link(V9fsPDU *, V9fsFidState *,
  84. V9fsFidState *, V9fsString *);
  85. int coroutine_fn v9fs_co_pwritev(V9fsPDU *, V9fsFidState *,
  86. struct iovec *, int, int64_t);
  87. int coroutine_fn v9fs_co_preadv(V9fsPDU *, V9fsFidState *,
  88. struct iovec *, int, int64_t);
  89. int coroutine_fn v9fs_co_name_to_path(V9fsPDU *, V9fsPath *,
  90. const char *, V9fsPath *);
  91. int coroutine_fn v9fs_co_st_gen(V9fsPDU *pdu, V9fsPath *path, mode_t,
  92. V9fsStatDotl *v9stat);
  93. #endif