mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-12-25 05:34:00 +08: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
@ -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 New Issue
Block a user