Revision 19cba8abd6ca09527c194864ae651db65cbacfe1 authored by Latchesar Ionkov on 11 October 2005, 15:29:03 UTC, committed by Linus Torvalds on 11 October 2005, 16:46:54 UTC
v9fs_file_read and v9fs_file_write use kmalloc to allocate buffers as big
as the data buffer received as parameter.  kmalloc cannot be used to
allocate buffers bigger than 128K, so reading/writing data in chunks bigger
than 128k fails.

This patch reorganizes v9fs_file_read and v9fs_file_write to allocate only
buffers as big as the maximum data that can be sent in one 9P message.

Signed-off-by: Latchesar Ionkov <lucho@ionkov.net>
Cc: Eric Van Hensbergen <ericvh@gmail.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
1 parent ad6ce87
History
File Mode Size
Makefile -rw-r--r-- 324 bytes
cache.c -rw-r--r-- 2.9 KB
cnode.c -rw-r--r-- 4.2 KB
coda_linux.c -rw-r--r-- 5.2 KB
dir.c -rw-r--r-- 16.9 KB
file.c -rw-r--r-- 7.3 KB
inode.c -rw-r--r-- 7.0 KB
pioctl.c -rw-r--r-- 2.4 KB
psdev.c -rw-r--r-- 10.8 KB
symlink.c -rw-r--r-- 1.2 KB
sysctl.c -rw-r--r-- 5.6 KB
upcall.c -rw-r--r-- 24.4 KB

back to top