#
2cd53241 |
| 21-Dec-2024 |
Jean-Sébastien Pédron <dumbbell@FreeBSD.org> |
linuxkpi: Add idr.h -> radix-tree.h -> rcupdate.h includes
[Why] Some files in DRM rely on namespace pollution: they use the <linux/rcupdate.h> API without including it explicitly.
[How] Reproduce
linuxkpi: Add idr.h -> radix-tree.h -> rcupdate.h includes
[Why] Some files in DRM rely on namespace pollution: they use the <linux/rcupdate.h> API without including it explicitly.
[How] Reproduce the Linux chain of includes even if it means nothing on FreeBSD. This allows consumers of <linux/idr.h> to "inherit" <linux/rcupdate.h> API.
Reviewed by: manu Sponsored by: The FreeBSD Foundation Differential Revision: https://reviews.freebsd.org/D48741
show more ...
|
#
95ee2897 |
| 16-Aug-2023 |
Warner Losh <imp@FreeBSD.org> |
sys: Remove $FreeBSD$: two-line .h pattern
Remove /^\s*\*\n \*\s+\$FreeBSD\$$\n/
|
#
307f78f3 |
| 19-Dec-2021 |
Vladimir Kondratyev <wulf@FreeBSD.org> |
LinuxKPI: Constantly use _LINUXKPI_ prefix in include guards
MFC after: 1 week Reviewed by: bz, emaste, hselasky, manu Differential Revision: https://reviews.freebsd.org/D33562
|
#
6b839ff4 |
| 07-Aug-2020 |
Hans Petter Selasky <hselasky@FreeBSD.org> |
Implement radix_tree_store() in the LinuxKPI for use with the coming extensible arrays implementation.
While at it add some more comments explaining the current radix_tree_insert() function and make
Implement radix_tree_store() in the LinuxKPI for use with the coming extensible arrays implementation.
While at it add some more comments explaining the current radix_tree_insert() function and make sure to clean the root node when the radix tree reaches the maximum height. This can happen if the index passed is too big when the tree is empty.
The radix_tree_store() function is basically a copy of the radix_tree_insert() function with some added functionality.
The radix_tree_store() function is local to FreeBSD and does not yet exist in Linux.
Reviewed by: kib MFC after: 1 week Sponsored by: Mellanox Technologies
show more ...
|
#
6fad8d17 |
| 01-Jun-2018 |
Hans Petter Selasky <hselasky@FreeBSD.org> |
Implement radix_tree_iter_delete() in the LinuxKPI.
Submitted by: Johannes Lundberg <johalun0@gmail.com> MFC after: 1 week Sponsored by: Mellanox Technologies Sponsored by: Limelight Networks
|
#
ead15282 |
| 18-Feb-2018 |
Hans Petter Selasky <hselasky@FreeBSD.org> |
Implement support for radix_tree_for_each_slot() and radix_tree_exception() in the LinuxKPI and use unsigned long type for the radix tree index.
MFC after: 1 week Sponsored by: Mellanox Technologies
|
#
8e7baabc |
| 03-Nov-2015 |
Hans Petter Selasky <hselasky@FreeBSD.org> |
Make all the LinuxKPI include files compile standalone.
Sponsored by: Mellanox Technologies
|
#
8d59ecb2 |
| 29-Oct-2015 |
Hans Petter Selasky <hselasky@FreeBSD.org> |
Finish process of moving the LinuxKPI module into the default kernel build.
- Move all files related to the LinuxKPI into sys/compat/linuxkpi and its subfolders. - Update sys/conf/files and some M
Finish process of moving the LinuxKPI module into the default kernel build.
- Move all files related to the LinuxKPI into sys/compat/linuxkpi and its subfolders. - Update sys/conf/files and some Makefiles to use new file locations. - Added description of COMPAT_LINUXKPI to sys/conf/NOTES which in turn adds the LinuxKPI to all LINT builds. - The LinuxKPI can be added to the kernel by setting the COMPAT_LINUXKPI option. The OFED kernel option no longer builds the LinuxKPI into the kernel. This was done to keep the build rules for the LinuxKPI in sys/conf/files simple. - Extend the LinuxKPI module to include support for USB by moving the Linux USB compat from usb.ko to linuxkpi.ko. - Bump the FreeBSD_version. - A universe kernel build has been done.
Reviewed by: np @ (cxgb and cxgbe related changes only) Sponsored by: Mellanox Technologies
show more ...
|