函数逻辑报告 |
Source Code:fs\io_uring.c |
Create Date:2022-07-29 10:55:20 |
Last Modify:2020-03-12 14:18:49 | Copyright©Brick |
首页 | 函数Tree |
注解内核,赢得工具 | 下载SCCT | English |
函数名称:Sets up an aio uring context, and returns the fd. Applications asks for a* ring size, we return the actual sq/cq ring sizes (among other things) in the* params structure passed in.
函数原型:static long io_uring_setup(unsigned int entries, struct io_uring_params __user *params)
返回类型:long
参数:
类型 | 参数 | 名称 |
---|---|---|
unsigned int | entries | |
struct io_uring_params __user * | params |
5426 | 如果copy_from_user( & p, params, p的长度)则返回:负EFAULT |
5433 | 如果flags按位与_context is polled 按位或SQ poll thread 按位或sq_thread_cpu is valid 按位或app defines CQ size 的值的反则返回:负EINVAL |
5437 | ret等于io_uring_create(entries, & p) |
5441 | 如果copy_to_user(params, & p, p的长度)则返回:负EFAULT |
5444 | 返回:ret |
名称 | 描述 |
---|---|
SYSCALL_DEFINE2 |
源代码转换工具 开放的插件接口 | X |
---|---|
支持:c/c++/esqlc/java Oracle/Informix/Mysql 插件可实现:逻辑报告 代码生成和批量转换代码 |