Page MenuHomeFreeBSD

epoll: Store epoll_event udata member in ext member of kevent.
ClosedPublic

Authored by wulf on Jan 14 2021, 8:51 PM.
Tags
None
Referenced Files
Unknown Object (File)
Sat, Mar 29, 5:39 AM
Unknown Object (File)
Tue, Mar 25, 2:28 PM
Unknown Object (File)
Mar 13 2025, 11:42 AM
Unknown Object (File)
Mar 5 2025, 9:01 PM
Unknown Object (File)
Feb 22 2025, 2:01 AM
Unknown Object (File)
Feb 18 2025, 8:01 AM
Unknown Object (File)
Feb 8 2025, 8:29 PM
Unknown Object (File)
Feb 7 2025, 9:14 AM

Details

Summary

Current epoll implementation stores udata fields of epoll_event
structure in special dynamically-sized table rather than in udata field
of backing kevent structure because of 2 reasons:

  1. Kevent's udata size is smaller than epoll's on 32-bit archs.
  2. Kevent's udata can be clobbered on execution EPOLL_CTL_ADD as kqueue modifies existing event while epoll returns error in this case.

After r320043 has introduced 4 new 64bit user data members (ext[]),
we can store epoll udata in one of them and drop aforementioned table.
According to kqueue_register() source code ext members are not updated
when existing kevent is modified that fixes p.2.

As a side effect the patch fixes PR/252582.

Diff Detail

Repository
rG FreeBSD src repository
Lint
Lint Skipped
Unit
Tests Skipped