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)
Thu, Mar 28, 9:05 AM
Unknown Object (File)
Feb 22 2024, 2:34 PM
Unknown Object (File)
Dec 20 2023, 1:35 AM
Unknown Object (File)
Nov 13 2023, 12:26 PM
Unknown Object (File)
Nov 1 2023, 12:58 PM
Unknown Object (File)
Oct 25 2023, 8:31 AM
Unknown Object (File)
Aug 10 2023, 7:42 AM
Unknown Object (File)
Jul 25 2023, 12:59 PM
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