mirror of
https://github.com/adulau/aha.git
synced 2024-12-31 21:26:18 +00:00
[PATCH] relayfs: add relayfs_remove_file()
This patch adds and exports relayfs_remove_file(), for API symmetry (with relayfs_create_file()). 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>
This commit is contained in:
parent
907f2c77d1
commit
7431733791
2 changed files with 13 additions and 0 deletions
|
@ -224,6 +224,17 @@ int relayfs_remove(struct dentry *dentry)
|
|||
return error;
|
||||
}
|
||||
|
||||
/**
|
||||
* relayfs_remove_file - remove a file from relay filesystem
|
||||
* @dentry: directory dentry
|
||||
*
|
||||
* Returns 0 if successful, negative otherwise.
|
||||
*/
|
||||
int relayfs_remove_file(struct dentry *dentry)
|
||||
{
|
||||
return relayfs_remove(dentry);
|
||||
}
|
||||
|
||||
/**
|
||||
* relayfs_remove_dir - remove a directory in the relay filesystem
|
||||
* @dentry: directory dentry
|
||||
|
@ -600,6 +611,7 @@ EXPORT_SYMBOL_GPL(relayfs_file_operations);
|
|||
EXPORT_SYMBOL_GPL(relayfs_create_dir);
|
||||
EXPORT_SYMBOL_GPL(relayfs_remove_dir);
|
||||
EXPORT_SYMBOL_GPL(relayfs_create_file);
|
||||
EXPORT_SYMBOL_GPL(relayfs_remove_file);
|
||||
|
||||
MODULE_AUTHOR("Tom Zanussi <zanussi@us.ibm.com> and Karim Yaghmour <karim@opersys.com>");
|
||||
MODULE_DESCRIPTION("Relay Filesystem");
|
||||
|
|
|
@ -153,6 +153,7 @@ extern struct dentry *relayfs_create_file(const char *name,
|
|||
int mode,
|
||||
struct file_operations *fops,
|
||||
void *data);
|
||||
extern int relayfs_remove_file(struct dentry *dentry);
|
||||
|
||||
/**
|
||||
* relay_write - write data into the channel
|
||||
|
|
Loading…
Reference in a new issue