Details
Details
- Reviewers
• hselasky
Diff Detail
Diff Detail
- Repository
- rS FreeBSD src repository - subversion
- Lint
Lint Passed - Unit
No Test Coverage - Build Status
Buildable 3225 Build 3258: arc lint + arc unit
Event Timeline
Comment Actions
Hi,
In the USB core M_NOWAIT should be used, and NULL checks should be preserved. The NULL checks are active for embedded products (non-FreeBSD) where the malloc implementation does not support M_WAITOK.
--HPS
Comment Actions
Where there are NULL checks M_NOWAIT is the correct option for malloc(). Else use M_WAITOK.
--HPS