| 755 | } |
| 756 | |
| 757 | _LOCAL_INLINE unsigned __io_uring_prep_poll_mask(unsigned poll_mask) |
| 758 | LIBURING_NOEXCEPT |
| 759 | { |
| 760 | #if __BYTE_ORDER == __BIG_ENDIAN |
| 761 | poll_mask = __swahw32(poll_mask); |
| 762 | #endif |
| 763 | return poll_mask; |
| 764 | } |
| 765 | |
| 766 | IOURINGINLINE void io_uring_prep_poll_add(struct io_uring_sqe *sqe, int fd, |
| 767 | unsigned poll_mask) |