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
nexedi
linux
Commits
585f6f50
Commit
585f6f50
authored
Aug 11, 2003
by
Oliver Neukum
Committed by
Greg Kroah-Hartman
Aug 11, 2003
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[PATCH] USB: ttusb_dec.c: another case of GFP_KERNEL in interrupt
- in interrupt usb_submit_urb must use GFP_ATOMIC
parent
3f16e892
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
drivers/media/dvb/ttusb-dec/ttusb_dec.c
drivers/media/dvb/ttusb-dec/ttusb_dec.c
+1
-1
No files found.
drivers/media/dvb/ttusb-dec/ttusb_dec.c
View file @
585f6f50
...
@@ -413,7 +413,7 @@ static void ttusb_dec_process_urb(struct urb *urb, struct pt_regs *ptregs)
...
@@ -413,7 +413,7 @@ static void ttusb_dec_process_urb(struct urb *urb, struct pt_regs *ptregs)
#if LINUX_VERSION_CODE >= KERNEL_VERSION(2,5,0)
#if LINUX_VERSION_CODE >= KERNEL_VERSION(2,5,0)
if
(
dec
->
iso_stream_count
)
if
(
dec
->
iso_stream_count
)
usb_submit_urb
(
urb
,
GFP_
KERNEL
);
usb_submit_urb
(
urb
,
GFP_
ATOMIC
);
#endif
#endif
}
}
...
...
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