Skip to content

Commit

Permalink
sysfs: make sysfs_drop_dentry() access inodes using ilookup()
Browse files Browse the repository at this point in the history
sysfs_drop_dentry() used to go through sd->s_dentry and
sd->s_parent->s_dentry to access the inodes.  This is incorrect
because inode can be cached without dentry.

This patch makes sysfs_drop_dentry() access inodes using ilookup() on
sd->s_ino.  This is both correct and simpler.

Signed-off-by: Tejun Heo <htejun@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
  • Loading branch information
htejun authored and gregkh committed Jul 11, 2007
1 parent 9d9307d commit d0bcb56
Showing 1 changed file with 28 additions and 35 deletions.
63 changes: 28 additions & 35 deletions fs/sysfs/inode.c
Original file line number Diff line number Diff line change
Expand Up @@ -219,29 +219,19 @@ void sysfs_instantiate(struct dentry *dentry, struct inode *inode)
*/
void sysfs_drop_dentry(struct sysfs_dirent *sd)
{
struct dentry *dentry = NULL, *parent = NULL;
struct inode *dir;
struct dentry *dentry = NULL;
struct timespec curtime;
struct inode *inode;

/* We're not holding a reference to ->s_dentry dentry but the
* field will stay valid as long as sysfs_lock is held.
*/
spin_lock(&sysfs_lock);
spin_lock(&dcache_lock);

/* drop dentry if it's there and dput() didn't kill it yet */
if (sd->s_dentry && sd->s_dentry->d_inode) {
/* get dentry if it's there and dput() didn't kill it yet */
dentry = dget_locked(sd->s_dentry);
parent = dentry->d_parent;
} else if (sd->s_parent->s_dentry->d_inode) {
/* We need to update the parent even if dentry for the
* victim itself doesn't exist.
*/
parent = dget_locked(sd->s_parent->s_dentry);
}

/* drop */
if (dentry) {
spin_lock(&dentry->d_lock);
__d_drop(dentry);
spin_unlock(&dentry->d_lock);
Expand All @@ -250,36 +240,39 @@ void sysfs_drop_dentry(struct sysfs_dirent *sd)
spin_unlock(&dcache_lock);
spin_unlock(&sysfs_lock);

/* nothing to do if the parent isn't in dcache */
if (!parent)
return;
dput(dentry);
/* XXX: unpin if directory, this will go away soon */
if (sd->s_type & SYSFS_DIR)
dput(dentry);

/* adjust nlink and update timestamp */
dir = parent->d_inode;
mutex_lock(&dir->i_mutex);

curtime = CURRENT_TIME;

dir->i_ctime = dir->i_mtime = curtime;
inode = ilookup(sysfs_sb, sd->s_ino);
if (inode) {
mutex_lock(&inode->i_mutex);

if (dentry) {
dentry->d_inode->i_ctime = curtime;
drop_nlink(dentry->d_inode);
if (sd->s_type & SYSFS_DIR) {
drop_nlink(dentry->d_inode);
drop_nlink(dir);
/* XXX: unpin if directory, this will go away soon */
dput(dentry);
}
inode->i_ctime = curtime;
drop_nlink(inode);
if (sd->s_type & SYSFS_DIR)
drop_nlink(inode);

mutex_unlock(&inode->i_mutex);
iput(inode);
}

mutex_unlock(&dir->i_mutex);
/* adjust nlink and udpate timestamp of the parent */
inode = ilookup(sysfs_sb, sd->s_parent->s_ino);
if (inode) {
mutex_lock(&inode->i_mutex);

/* bye bye */
if (dentry)
dput(dentry);
else
dput(parent);
inode->i_ctime = inode->i_mtime = curtime;
if (sd->s_type & SYSFS_DIR)
drop_nlink(inode);

mutex_unlock(&inode->i_mutex);
iput(inode);
}
}

int sysfs_hash_and_remove(struct dentry * dir, const char * name)
Expand Down

0 comments on commit d0bcb56

Please sign in to comment.