]> nv-tegra.nvidia Code Review - linux-2.6.git/commitdiff
UML: remove unnecessary hostfs_getattr()
authorMiklos Szeredi <mszeredi@suse.cz>
Tue, 16 Oct 2007 08:26:49 +0000 (01:26 -0700)
committerLinus Torvalds <torvalds@woody.linux-foundation.org>
Tue, 16 Oct 2007 16:43:05 +0000 (09:43 -0700)
Currently hostfs_getattr() just defines the default behavior.

Signed-off-by: Miklos Szeredi <mszeredi@suse.cz>
Cc: Jeff Dike <jdike@addtoit.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
fs/hostfs/hostfs_kern.c

index 8a21289d774d9d8c8dacf4e98e10002d1ba72ec5..39b0cdcc94d0eb125ad51db7a1b430beba658de5 100644 (file)
@@ -872,13 +872,6 @@ int hostfs_setattr(struct dentry *dentry, struct iattr *attr)
        return inode_setattr(dentry->d_inode, attr);
 }
 
        return inode_setattr(dentry->d_inode, attr);
 }
 
-int hostfs_getattr(struct vfsmount *mnt, struct dentry *dentry,
-          struct kstat *stat)
-{
-       generic_fillattr(dentry->d_inode, stat);
-       return 0;
-}
-
 static const struct inode_operations hostfs_iops = {
        .create         = hostfs_create,
        .link           = hostfs_link,
 static const struct inode_operations hostfs_iops = {
        .create         = hostfs_create,
        .link           = hostfs_link,
@@ -890,7 +883,6 @@ static const struct inode_operations hostfs_iops = {
        .rename         = hostfs_rename,
        .permission     = hostfs_permission,
        .setattr        = hostfs_setattr,
        .rename         = hostfs_rename,
        .permission     = hostfs_permission,
        .setattr        = hostfs_setattr,
-       .getattr        = hostfs_getattr,
 };
 
 static const struct inode_operations hostfs_dir_iops = {
 };
 
 static const struct inode_operations hostfs_dir_iops = {
@@ -905,7 +897,6 @@ static const struct inode_operations hostfs_dir_iops = {
        .rename         = hostfs_rename,
        .permission     = hostfs_permission,
        .setattr        = hostfs_setattr,
        .rename         = hostfs_rename,
        .permission     = hostfs_permission,
        .setattr        = hostfs_setattr,
-       .getattr        = hostfs_getattr,
 };
 
 int hostfs_link_readpage(struct file *file, struct page *page)
 };
 
 int hostfs_link_readpage(struct file *file, struct page *page)