Page MenuHomeFreeBSD

linuxkpi: Add list_for_each_entry_lockless() macro
ClosedPublic

Authored by nc on Jun 9 2021, 6:21 PM.
Tags
None
Referenced Files
F134308899: D30708.id90674.diff
Sat, Nov 1, 7:26 AM
Unknown Object (File)
Wed, Oct 29, 4:24 PM
Unknown Object (File)
Fri, Oct 24, 10:14 AM
Unknown Object (File)
Tue, Oct 21, 12:52 AM
Unknown Object (File)
Wed, Oct 15, 5:01 AM
Unknown Object (File)
Tue, Oct 7, 5:45 AM
Unknown Object (File)
Sun, Oct 5, 4:02 AM
Unknown Object (File)
Sep 29 2025, 12:01 AM

Details

Summary

The reason why list_for_each_entry() is being redefined here is because unlike the Linux version, FreeBSD's list_for_each_entry() does not use locks.

This is needed by the drm-kmod 5.7 update.

Diff Detail

Repository
rG FreeBSD src repository
Lint
Lint Not Applicable
Unit
Tests Not Applicable

Event Timeline

nc requested review of this revision.Jun 9 2021, 6:21 PM
nc retitled this revision from Add list_for_each_entry_lockless() macro to linuxkpi: Add list_for_each_entry_lockless() macro.Jun 9 2021, 6:23 PM

If it's the same as list_for_each_entry you should explain why in the commit message.

I believe linuxkpi's list_for_each_entry is lockless (but am not sure), so I updated the message.

Please use function macro.

#define list_for_each_entry_lockless(...) list_for_each_entry(__VA_ARGS__)

--HPS

Using function macro as per @hselasky's suggestion.

This revision is now accepted and ready to land.Jun 10 2021, 7:29 AM