gpt4 book ai didi

linux - 关于epoll_insert的详细函数

转载 作者:太空宇宙 更新时间:2023-11-04 09:23:57 25 4
gpt4 key购买 nike

epoll_insert函数被sys_epoll_ctl调用。

epoll_insert函数中有几个关键步骤:

  1. 使用队列回调初始化轮询表:ep_ptable_queue_proc

  2. 它会调用file->f_op->poll

  3. 如果文件已经“就绪”,那么我们将其放入就绪列表

    /* If the file is already "ready" we drop it inside the ready list */
    if ((revents & event->events) && !ep_is_linked(&epi->rdllink)) {

    list_add_tail(&epi->rdllink, &ep->rdllist);

    /* Notify waiting tasks that events are available */
    if (waitqueue_active(&ep->wq))
    wake_up_locked(&ep->wq);
    if (waitqueue_active(&ep->poll_wait))
    pwake++;
    }

我不明白为什么要在 epoll_insert 函数中检查文件是否就绪。我们应该在 ep_poll_callback 函数中检查它吗?

最佳答案

ep_poll_callback 仅在其中一个文件描述符的状态发生变化时调用。如果那是唯一将 epoll 描述符添加到读取列表的地方,您可能会错过在设法将它们添加到 epoll 之前发生的事件。例如,在 Web 服务器中,如果客户端请求是在连接后立即发送的,您可能会错过该请求。

关于linux - 关于epoll_insert的详细函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38800281/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com