aboutsummaryrefslogtreecommitdiffstats
path: root/fs/relayfs/buffers.c
diff options
context:
space:
mode:
authorTom Zanussi <zanussi@us.ibm.com>2005-10-09 10:41:32 -0500
committerLinus Torvalds <torvalds@g5.osdl.org>2005-10-10 08:39:50 -0700
commit1cc956e12aedfdc6baf6312bc36a6b5a71af3c9d (patch)
tree0cdc8aaf0363aa1b96d41db183ec9e48500f891f /fs/relayfs/buffers.c
parentMerge master.kernel.org:/home/rmk/linux-2.6-arm (diff)
downloadlinux-dev-1cc956e12aedfdc6baf6312bc36a6b5a71af3c9d.tar.xz
linux-dev-1cc956e12aedfdc6baf6312bc36a6b5a71af3c9d.zip
[PATCH] relayfs: fix bogus param value in call to vmap
The third param in this call to vmap shouldn't be GFP_KERNEL, which makes no sense, but rather VM_MAP. Thanks to Al Viro for spotting this. Signed-off-by: Tom Zanussi <zanussi@us.ibm.com> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to '')
-rw-r--r--fs/relayfs/buffers.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/relayfs/buffers.c b/fs/relayfs/buffers.c
index 2aa8e2719999..84e21ffa5ca8 100644
--- a/fs/relayfs/buffers.c
+++ b/fs/relayfs/buffers.c
@@ -109,7 +109,7 @@ static void *relay_alloc_buf(struct rchan_buf *buf, unsigned long size)
if (unlikely(!buf->page_array[i]))
goto depopulate;
}
- mem = vmap(buf->page_array, n_pages, GFP_KERNEL, PAGE_KERNEL);
+ mem = vmap(buf->page_array, n_pages, VM_MAP, PAGE_KERNEL);
if (!mem)
goto depopulate;