Page MenuHomeFreeBSD

usb: malloc with M_WAITOK never returns NULL
Needs ReviewPublic

Authored by howard0su_gmail.com on Apr 12 2016, 12:43 AM.
Tags
None
Referenced Files
Unknown Object (File)
Sun, Oct 12, 12:50 AM
Unknown Object (File)
Sat, Oct 11, 7:08 PM
Unknown Object (File)
Tue, Oct 7, 11:44 PM
Unknown Object (File)
Sun, Oct 5, 3:37 AM
Unknown Object (File)
Thu, Sep 25, 3:09 AM
Unknown Object (File)
Tue, Sep 16, 11:12 PM
Unknown Object (File)
Sep 12 2025, 12:20 PM
Unknown Object (File)
Sep 12 2025, 7:42 AM
This revision needs review, but all specified reviewers are disabled or inactive.

Details

Reviewers
hselasky

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

howard0su_gmail.com retitled this revision from to usb: malloc with M_WAITOK never returns NULL.
howard0su_gmail.com updated this object.
howard0su_gmail.com edited the test plan for this revision. (Show Details)

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

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

So all M_WAITOK should be replaced with M_NOWAIT?

Where there are NULL checks M_NOWAIT is the correct option for malloc(). Else use M_WAITOK.

--HPS