mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2025-01-06 05:06:29 +00:00
14 lines
229 B
C
14 lines
229 B
C
|
#ifndef IOU_CORE_H
|
||
|
#define IOU_CORE_H
|
||
|
|
||
|
#include <linux/errno.h>
|
||
|
#include "io_uring_types.h"
|
||
|
|
||
|
static inline void io_req_set_res(struct io_kiocb *req, s32 res, u32 cflags)
|
||
|
{
|
||
|
req->cqe.res = res;
|
||
|
req->cqe.flags = cflags;
|
||
|
}
|
||
|
|
||
|
#endif
|