函数逻辑报告

Linux Kernel

v5.5.9

Brick Technologies Co., Ltd

Source Code:fs\file.c Create Date:2022-07-29 10:38:44
Last Modify:2020-03-12 14:18:49 Copyright©Brick
首页 函数Tree
注解内核,赢得工具下载SCCTEnglish

函数名称:find_next_fd

函数原型:static unsigned int find_next_fd(struct fdtable *fdt, unsigned int start)

返回类型:unsigned int

参数:

类型参数名称
struct fdtable *fdt
unsigned intstart
465  maxfd等于max_fds
466  maxbit等于maxfdBITS_PER_LONG
467  bitbit等于startBITS_PER_LONG
469  bitbit等于在内存区域中查找下一个零位BITS_PER_LONG
470  如果bitbit大于maxfd则返回:maxfd
472  如果bitbit大于startstart等于bitbit
474  返回:在内存区域中查找下一个零位
调用者
名称描述
__alloc_fdallocate a file descriptor, mark it busy.