diff options
author | Tom Zanussi <zanussi@us.ibm.com> | 2006-01-08 04:02:31 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-01-08 23:13:51 -0500 |
commit | 761da5c88aca34586e5b7295bd8b9be2438906f2 (patch) | |
tree | f5d1c91d1e16b0e8649ccaf3bdd7d163658e7455 /fs/relayfs/relay.c | |
parent | df49af8f3392e96ddbc9cf6dd81fbdc0496e1b44 (diff) |
[PATCH] relayfs: cleanup, change relayfs_file_* to relay_file_*
This patch renames relayfs_file_operations to relay_file_operations, and the
file operations themselves from relayfs_XXX to relay_file_XXX, to make it more
clear that they refer to relay files.
Signed-off-by: Tom Zanussi <zanussi@us.ibm.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'fs/relayfs/relay.c')
-rw-r--r-- | fs/relayfs/relay.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/relayfs/relay.c b/fs/relayfs/relay.c index 2935a6ab8ffa..abf3ceaace49 100644 --- a/fs/relayfs/relay.c +++ b/fs/relayfs/relay.c | |||
@@ -90,7 +90,7 @@ static struct dentry *create_buf_file_default_callback(const char *filename, | |||
90 | int *is_global) | 90 | int *is_global) |
91 | { | 91 | { |
92 | return relayfs_create_file(filename, parent, mode, | 92 | return relayfs_create_file(filename, parent, mode, |
93 | &relayfs_file_operations, buf); | 93 | &relay_file_operations, buf); |
94 | } | 94 | } |
95 | 95 | ||
96 | /* | 96 | /* |