mirror of
https://github.com/psankar/simplefs.git
synced 2025-07-23 14:04:38 +02:00
simple.c: Fix typo, simplefs_destory_inode() -> simplefs_destroy_inode()
This commit is contained in:
parent
c3b69c8940
commit
92da439799
4
simple.c
4
simple.c
@ -691,7 +691,7 @@ struct dentry *simplefs_lookup(struct inode *parent_inode,
|
|||||||
/**
|
/**
|
||||||
* Simplest
|
* Simplest
|
||||||
*/
|
*/
|
||||||
void simplefs_destory_inode(struct inode *inode)
|
void simplefs_destroy_inode(struct inode *inode)
|
||||||
{
|
{
|
||||||
struct simplefs_inode *sfs_inode = SIMPLEFS_INODE(inode);
|
struct simplefs_inode *sfs_inode = SIMPLEFS_INODE(inode);
|
||||||
|
|
||||||
@ -709,7 +709,7 @@ static void simplefs_put_super(struct super_block *sb)
|
|||||||
}
|
}
|
||||||
|
|
||||||
static const struct super_operations simplefs_sops = {
|
static const struct super_operations simplefs_sops = {
|
||||||
.destroy_inode = simplefs_destory_inode,
|
.destroy_inode = simplefs_destroy_inode,
|
||||||
.put_super = simplefs_put_super,
|
.put_super = simplefs_put_super,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user