Page MenuHomeFreeBSD

linuxkpi: Define `ZERO_OR_NULL_PTR()` in <linux/slab.h>
ClosedPublic

Authored by dumbbell on Nov 11 2022, 6:30 PM.
Tags
None
Referenced Files
Unknown Object (File)
Feb 25 2025, 2:48 PM
Unknown Object (File)
Feb 14 2025, 7:00 PM
Unknown Object (File)
Feb 14 2025, 5:48 AM
Unknown Object (File)
Feb 13 2025, 6:51 PM
Unknown Object (File)
Feb 1 2025, 7:27 AM
Unknown Object (File)
Jan 29 2025, 1:58 AM
Unknown Object (File)
Jan 23 2025, 8:55 AM
Unknown Object (File)
Jan 20 2025, 11:27 AM

Details

Summary

On Linux, the kmalloc() family of functions returns a special value if the size of the allocation is zero. This macro verifies if the pointer is NULL (the allocation failed) or the size is 0 (the allocation was not performed AFAIU). This special value can be passed to kfree().

On FreeBSD, our malloc(9) functions don't return a special value for 0-size allocations. Therefore we can simply compare the result against NULL.

This change is a requirement to update our DRM drivers to Linux 5.12.

Diff Detail

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