Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
linux
Commits
d3598bb2
Commit
d3598bb2
authored
Mar 20, 2003
by
David Brownell
Committed by
Greg Kroah-Hartman
Mar 20, 2003
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[PATCH] usbtest catch -ENOMEM
Smatch seems to be returning mostly false positives, but not this time.
parent
02aae77c
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
0 deletions
+2
-0
drivers/usb/misc/usbtest.c
drivers/usb/misc/usbtest.c
+2
-0
No files found.
drivers/usb/misc/usbtest.c
View file @
d3598bb2
...
@@ -881,6 +881,8 @@ static int unlink1 (struct usbtest_dev *dev, int pipe, int size, int async)
...
@@ -881,6 +881,8 @@ static int unlink1 (struct usbtest_dev *dev, int pipe, int size, int async)
init_completion
(
&
completion
);
init_completion
(
&
completion
);
urb
=
simple_alloc_urb
(
testdev_to_usbdev
(
dev
),
pipe
,
size
);
urb
=
simple_alloc_urb
(
testdev_to_usbdev
(
dev
),
pipe
,
size
);
if
(
!
urb
)
return
-
ENOMEM
;
if
(
async
)
if
(
async
)
urb
->
transfer_flags
|=
URB_ASYNC_UNLINK
;
urb
->
transfer_flags
|=
URB_ASYNC_UNLINK
;
urb
->
context
=
&
completion
;
urb
->
context
=
&
completion
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment