-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[PATCH] v9fs: zero copy implementation
Performance enhancement reducing the number of copies in the data and stat paths. Signed-off-by: Latchesar Ionkov <lucho@ionkov.net> Cc: Eric Van Hensbergen <ericvh@ericvh.myip.org> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
- Loading branch information
Latchesar Ionkov
authored and
Linus Torvalds
committed
Jan 9, 2006
1 parent
d8da097
commit 531b109
Showing
18 changed files
with
1,083 additions
and
1,047 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,17 @@ | ||
obj-$(CONFIG_9P_FS) := 9p2000.o | ||
|
||
9p2000-objs := \ | ||
trans_fd.o \ | ||
trans_sock.o \ | ||
mux.o \ | ||
9p.o \ | ||
conv.o \ | ||
vfs_super.o \ | ||
vfs_inode.o \ | ||
vfs_file.o \ | ||
vfs_dir.o \ | ||
vfs_dentry.o \ | ||
error.o \ | ||
mux.o \ | ||
trans_fd.o \ | ||
trans_sock.o \ | ||
9p.o \ | ||
conv.o \ | ||
v9fs.o \ | ||
fid.o | ||
|
Oops, something went wrong.