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-- 199 bytes
balloc.c -rw-r--r-- 23.7 KB
cylinder.c -rw-r--r-- 5.8 KB
dir.c -rw-r--r-- 16.7 KB
file.c -rw-r--r-- 1.2 KB
ialloc.c -rw-r--r-- 7.6 KB
inode.c -rw-r--r-- 21.9 KB
namei.c -rw-r--r-- 7.6 KB
super.c -rw-r--r-- 38.8 KB
swab.h -rw-r--r-- 3.1 KB
symlink.c -rw-r--r-- 965 bytes
truncate.c -rw-r--r-- 11.1 KB
util.c -rw-r--r-- 5.4 KB
util.h -rw-r--r-- 14.9 KB

back to top