mirror of
https://github.com/torvalds/linux.git
synced 2024-11-10 22:21:40 +00:00
[PATCH] msnd_pinnacle GFP fix
Dumb typo - __get_free_page() takes gfp mask (in this case - GFP_KERNEL), not the page size... Signed-off-by: Al Viro <viro@parcelfarce.linux.theplanet.co.uk> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
This commit is contained in:
parent
01424961e6
commit
fa732f5568
@ -892,7 +892,7 @@ static __inline__ int pack_DAPF_to_DAPQ(register int start)
|
||||
static int dsp_read(char __user *buf, size_t len)
|
||||
{
|
||||
int count = len;
|
||||
char *page = (char *)__get_free_page(PAGE_SIZE);
|
||||
char *page = (char *)__get_free_page(GFP_KERNEL);
|
||||
|
||||
if (!page)
|
||||
return -ENOMEM;
|
||||
|
Loading…
Reference in New Issue
Block a user