]> pilppa.org Git - linux-2.6-omap-h63xx.git/blobdiff - fs/sysfs/dir.c
sysfs: Rewrite sysfs_drop_dentry.
[linux-2.6-omap-h63xx.git] / fs / sysfs / dir.c
index aee966c44aacd1a0c7c89847cca9d0966595f62b..1af963e66e3cc8232258d8fca21671963168717e 100644 (file)
@@ -11,7 +11,7 @@
 #include <linux/namei.h>
 #include <linux/idr.h>
 #include <linux/completion.h>
-#include <asm/semaphore.h>
+#include <linux/mutex.h>
 #include "sysfs.h"
 
 DEFINE_MUTEX(sysfs_mutex);
@@ -30,13 +30,23 @@ static DEFINE_IDA(sysfs_ino_ida);
  *     Locking:
  *     mutex_lock(sysfs_mutex)
  */
-void sysfs_link_sibling(struct sysfs_dirent *sd)
+static void sysfs_link_sibling(struct sysfs_dirent *sd)
 {
        struct sysfs_dirent *parent_sd = sd->s_parent;
+       struct sysfs_dirent **pos;
 
        BUG_ON(sd->s_sibling);
-       sd->s_sibling = parent_sd->s_children;
-       parent_sd->s_children = sd;
+
+       /* Store directory entries in order by ino.  This allows
+        * readdir to properly restart without having to add a
+        * cursor into the s_children list.
+        */
+       for (pos = &parent_sd->s_children; *pos; pos = &(*pos)->s_sibling) {
+               if (sd->s_ino < (*pos)->s_ino)
+                       break;
+       }
+       sd->s_sibling = *pos;
+       *pos = sd;
 }
 
 /**
@@ -49,7 +59,7 @@ void sysfs_link_sibling(struct sysfs_dirent *sd)
  *     Locking:
  *     mutex_lock(sysfs_mutex)
  */
-void sysfs_unlink_sibling(struct sysfs_dirent *sd)
+static void sysfs_unlink_sibling(struct sysfs_dirent *sd)
 {
        struct sysfs_dirent **pos;
 
@@ -130,8 +140,10 @@ struct dentry *sysfs_get_dentry(struct sysfs_dirent *sd)
 
                /* look it up */
                parent_dentry = dentry;
+               mutex_lock(&parent_dentry->d_inode->i_mutex);
                dentry = lookup_one_len_kern(cur->s_name, parent_dentry,
                                             strlen(cur->s_name));
+               mutex_unlock(&parent_dentry->d_inode->i_mutex);
                dput(parent_dentry);
 
                if (IS_ERR(dentry)) {
@@ -361,20 +373,20 @@ static struct dentry_operations sysfs_dentry_ops = {
 struct sysfs_dirent *sysfs_new_dirent(const char *name, umode_t mode, int type)
 {
        char *dup_name = NULL;
-       struct sysfs_dirent *sd = NULL;
+       struct sysfs_dirent *sd;
 
        if (type & SYSFS_COPY_NAME) {
                name = dup_name = kstrdup(name, GFP_KERNEL);
                if (!name)
-                       goto err_out;
+                       return NULL;
        }
 
        sd = kmem_cache_zalloc(sysfs_dir_cachep, GFP_KERNEL);
        if (!sd)
-               goto err_out;
+               goto err_out1;
 
        if (sysfs_alloc_ino(&sd->s_ino))
-               goto err_out;
+               goto err_out2;
 
        atomic_set(&sd->s_count, 1);
        atomic_set(&sd->s_active, 0);
@@ -386,9 +398,10 @@ struct sysfs_dirent *sysfs_new_dirent(const char *name, umode_t mode, int type)
 
        return sd;
 
- err_out:
-       kfree(dup_name);
+ err_out2:
        kmem_cache_free(sysfs_dir_cachep, sd);
+ err_out1:
+       kfree(dup_name);
        return NULL;
 }
 
@@ -490,15 +503,26 @@ void sysfs_addrm_start(struct sysfs_addrm_cxt *acxt,
  *
  *     LOCKING:
  *     Determined by sysfs_addrm_start().
+ *
+ *     RETURNS:
+ *     0 on success, -EEXIST if entry with the given name already
+ *     exists.
  */
-void sysfs_add_one(struct sysfs_addrm_cxt *acxt, struct sysfs_dirent *sd)
+int sysfs_add_one(struct sysfs_addrm_cxt *acxt, struct sysfs_dirent *sd)
 {
+       if (sysfs_find_dirent(acxt->parent_sd, sd->s_name))
+               return -EEXIST;
+
        sd->s_parent = sysfs_get(acxt->parent_sd);
 
        if (sysfs_type(sd) == SYSFS_DIR && acxt->parent_inode)
                inc_nlink(acxt->parent_inode);
 
        acxt->cnt++;
+
+       sysfs_link_sibling(sd);
+
+       return 0;
 }
 
 /**
@@ -520,7 +544,9 @@ void sysfs_add_one(struct sysfs_addrm_cxt *acxt, struct sysfs_dirent *sd)
  */
 void sysfs_remove_one(struct sysfs_addrm_cxt *acxt, struct sysfs_dirent *sd)
 {
-       BUG_ON(sd->s_sibling || (sd->s_flags & SYSFS_FLAG_REMOVED));
+       BUG_ON(sd->s_flags & SYSFS_FLAG_REMOVED);
+
+       sysfs_unlink_sibling(sd);
 
        sd->s_flags |= SYSFS_FLAG_REMOVED;
        sd->s_sibling = acxt->removed;
@@ -539,53 +565,49 @@ void sysfs_remove_one(struct sysfs_addrm_cxt *acxt, struct sysfs_dirent *sd)
  *     Drop dentry for @sd.  @sd must have been unlinked from its
  *     parent on entry to this function such that it can't be looked
  *     up anymore.
- *
- *     @sd->s_dentry which is protected with sysfs_assoc_lock points
- *     to the currently associated dentry but we're not holding a
- *     reference to it and racing with dput().  Grab dcache_lock and
- *     verify dentry before dropping it.  If @sd->s_dentry is NULL or
- *     dput() beats us, no need to bother.
  */
 static void sysfs_drop_dentry(struct sysfs_dirent *sd)
 {
-       struct dentry *dentry = NULL;
        struct inode *inode;
+       struct dentry *dentry;
 
-       /* We're not holding a reference to ->s_dentry dentry but the
-        * field will stay valid as long as sysfs_assoc_lock is held.
+       inode = ilookup(sysfs_sb, sd->s_ino);
+       if (!inode)
+               return;
+
+       /* Drop any existing dentries associated with sd.
+        *
+        * For the dentry to be properly freed we need to grab a
+        * reference to the dentry under the dcache lock,  unhash it,
+        * and then put it.  The playing with the dentry count allows
+        * dput to immediately free the dentry  if it is not in use.
         */
-       spin_lock(&sysfs_assoc_lock);
+repeat:
        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) {
-               dentry = dget_locked(sd->s_dentry);
+       list_for_each_entry(dentry, &inode->i_dentry, d_alias) {
+               if (d_unhashed(dentry))
+                       continue;
+               dget_locked(dentry);
                spin_lock(&dentry->d_lock);
                __d_drop(dentry);
                spin_unlock(&dentry->d_lock);
+               spin_unlock(&dcache_lock);
+               dput(dentry);
+               goto repeat;
        }
-
        spin_unlock(&dcache_lock);
-       spin_unlock(&sysfs_assoc_lock);
-
-       /* dentries for shadowed inodes are pinned, unpin */
-       if (dentry && sysfs_is_shadowed_inode(dentry->d_inode))
-               dput(dentry);
-       dput(dentry);
 
        /* adjust nlink and update timestamp */
-       inode = ilookup(sysfs_sb, sd->s_ino);
-       if (inode) {
-               mutex_lock(&inode->i_mutex);
+       mutex_lock(&inode->i_mutex);
 
-               inode->i_ctime = CURRENT_TIME;
+       inode->i_ctime = CURRENT_TIME;
+       drop_nlink(inode);
+       if (sysfs_type(sd) == SYSFS_DIR)
                drop_nlink(inode);
-               if (sysfs_type(sd) == SYSFS_DIR)
-                       drop_nlink(inode);
 
-               mutex_unlock(&inode->i_mutex);
-               iput(inode);
-       }
+       mutex_unlock(&inode->i_mutex);
+
+       iput(inode);
 }
 
 /**
@@ -598,11 +620,8 @@ static void sysfs_drop_dentry(struct sysfs_dirent *sd)
  *
  *     LOCKING:
  *     All mutexes acquired by sysfs_addrm_start() are released.
- *
- *     RETURNS:
- *     Number of added/removed sysfs_dirents since sysfs_addrm_start().
  */
-int sysfs_addrm_finish(struct sysfs_addrm_cxt *acxt)
+void sysfs_addrm_finish(struct sysfs_addrm_cxt *acxt)
 {
        /* release resources acquired by sysfs_addrm_start() */
        mutex_unlock(&sysfs_mutex);
@@ -628,8 +647,6 @@ int sysfs_addrm_finish(struct sysfs_addrm_cxt *acxt)
                sysfs_deactivate(sd);
                sysfs_put(sd);
        }
-
-       return acxt->cnt;
 }
 
 /**
@@ -651,7 +668,7 @@ struct sysfs_dirent *sysfs_find_dirent(struct sysfs_dirent *parent_sd,
        struct sysfs_dirent *sd;
 
        for (sd = parent_sd->s_children; sd; sd = sd->s_sibling)
-               if (sysfs_type(sd) && !strcmp(sd->s_name, name))
+               if (!strcmp(sd->s_name, name))
                        return sd;
        return NULL;
 }
@@ -689,6 +706,7 @@ static int create_dir(struct kobject *kobj, struct sysfs_dirent *parent_sd,
        umode_t mode = S_IFDIR| S_IRWXU | S_IRUGO | S_IXUGO;
        struct sysfs_addrm_cxt acxt;
        struct sysfs_dirent *sd;
+       int rc;
 
        /* allocate */
        sd = sysfs_new_dirent(name, mode, SYSFS_DIR);
@@ -698,17 +716,15 @@ static int create_dir(struct kobject *kobj, struct sysfs_dirent *parent_sd,
 
        /* link in */
        sysfs_addrm_start(&acxt, parent_sd);
-       if (!sysfs_find_dirent(parent_sd, name)) {
-               sysfs_add_one(&acxt, sd);
-               sysfs_link_sibling(sd);
-       }
-       if (sysfs_addrm_finish(&acxt)) {
+       rc = sysfs_add_one(&acxt, sd);
+       sysfs_addrm_finish(&acxt);
+
+       if (rc == 0)
                *p_sd = sd;
-               return 0;
-       }
+       else
+               sysfs_put(sd);
 
-       sysfs_put(sd);
-       return -EEXIST;
+       return rc;
 }
 
 int sysfs_create_subdir(struct kobject *kobj, const char *name,
@@ -720,24 +736,18 @@ int sysfs_create_subdir(struct kobject *kobj, const char *name,
 /**
  *     sysfs_create_dir - create a directory for an object.
  *     @kobj:          object we're creating directory for. 
- *     @shadow_parent: parent object.
  */
-int sysfs_create_dir(struct kobject *kobj,
-                    struct sysfs_dirent *shadow_parent_sd)
+int sysfs_create_dir(struct kobject * kobj)
 {
        struct sysfs_dirent *parent_sd, *sd;
        int error = 0;
 
        BUG_ON(!kobj);
 
-       if (shadow_parent_sd)
-               parent_sd = shadow_parent_sd;
-       else if (kobj->parent)
+       if (kobj->parent)
                parent_sd = kobj->parent->sd;
-       else if (sysfs_mount && sysfs_mount->mnt_sb)
-               parent_sd = sysfs_mount->mnt_sb->s_root->d_fsdata;
        else
-               return -EFAULT;
+               parent_sd = &sysfs_root;
 
        error = create_dir(kobj, parent_sd, kobject_name(kobj), &sd);
        if (!error)
@@ -745,76 +755,35 @@ int sysfs_create_dir(struct kobject *kobj,
        return error;
 }
 
-static int sysfs_count_nlink(struct sysfs_dirent *sd)
-{
-       struct sysfs_dirent *child;
-       int nr = 0;
-
-       for (child = sd->s_children; child; child = child->s_sibling)
-               if (sysfs_type(child) == SYSFS_DIR)
-                       nr++;
-       return nr + 2;
-}
-
 static struct dentry * sysfs_lookup(struct inode *dir, struct dentry *dentry,
                                struct nameidata *nd)
 {
-       struct sysfs_dirent * parent_sd = dentry->d_parent->d_fsdata;
-       struct sysfs_dirent * sd;
-       struct bin_attribute *bin_attr;
+       struct dentry *ret = NULL;
+       struct sysfs_dirent *parent_sd = dentry->d_parent->d_fsdata;
+       struct sysfs_dirent *sd;
        struct inode *inode;
-       int found = 0;
 
-       for (sd = parent_sd->s_children; sd; sd = sd->s_sibling) {
-               if (sysfs_type(sd) &&
-                   !strcmp(sd->s_name, dentry->d_name.name)) {
-                       found = 1;
-                       break;
-               }
-       }
+       mutex_lock(&sysfs_mutex);
+
+       sd = sysfs_find_dirent(parent_sd, dentry->d_name.name);
 
        /* no such entry */
-       if (!found)
-               return NULL;
+       if (!sd)
+               goto out_unlock;
 
        /* attach dentry and inode */
        inode = sysfs_get_inode(sd);
-       if (!inode)
-               return ERR_PTR(-ENOMEM);
-
-       mutex_lock(&sysfs_mutex);
-
-       if (inode->i_state & I_NEW) {
-               /* initialize inode according to type */
-               switch (sysfs_type(sd)) {
-               case SYSFS_DIR:
-                       inode->i_op = &sysfs_dir_inode_operations;
-                       inode->i_fop = &sysfs_dir_operations;
-                       inode->i_nlink = sysfs_count_nlink(sd);
-                       break;
-               case SYSFS_KOBJ_ATTR:
-                       inode->i_size = PAGE_SIZE;
-                       inode->i_fop = &sysfs_file_operations;
-                       break;
-               case SYSFS_KOBJ_BIN_ATTR:
-                       bin_attr = sd->s_elem.bin_attr.bin_attr;
-                       inode->i_size = bin_attr->size;
-                       inode->i_fop = &bin_fops;
-                       break;
-               case SYSFS_KOBJ_LINK:
-                       inode->i_op = &sysfs_symlink_inode_operations;
-                       break;
-               default:
-                       BUG();
-               }
+       if (!inode) {
+               ret = ERR_PTR(-ENOMEM);
+               goto out_unlock;
        }
 
-       sysfs_instantiate(dentry, inode);
+       d_instantiate(dentry, inode);
        sysfs_attach_dentry(sd, dentry);
 
+ out_unlock:
        mutex_unlock(&sysfs_mutex);
-
-       return NULL;
+       return ret;
 }
 
 const struct inode_operations sysfs_dir_inode_operations = {
@@ -827,7 +796,6 @@ static void remove_dir(struct sysfs_dirent *sd)
        struct sysfs_addrm_cxt acxt;
 
        sysfs_addrm_start(&acxt, sd->s_parent);
-       sysfs_unlink_sibling(sd);
        sysfs_remove_one(&acxt, sd);
        sysfs_addrm_finish(&acxt);
 }
@@ -852,11 +820,9 @@ static void __sysfs_remove_dir(struct sysfs_dirent *dir_sd)
        while (*pos) {
                struct sysfs_dirent *sd = *pos;
 
-               if (sysfs_type(sd) && sysfs_type(sd) != SYSFS_DIR) {
-                       *pos = sd->s_sibling;
-                       sd->s_sibling = NULL;
+               if (sysfs_type(sd) != SYSFS_DIR)
                        sysfs_remove_one(&acxt, sd);
-               else
+               else
                        pos = &(*pos)->s_sibling;
        }
        sysfs_addrm_finish(&acxt);
@@ -884,45 +850,35 @@ void sysfs_remove_dir(struct kobject * kobj)
        __sysfs_remove_dir(sd);
 }
 
-int sysfs_rename_dir(struct kobject *kobj, struct sysfs_dirent *new_parent_sd,
-                    const char *new_name)
+int sysfs_rename_dir(struct kobject * kobj, const char *new_name)
 {
-       struct sysfs_dirent *sd = kobj->sd;
-       struct dentry *new_parent = NULL;
+       struct sysfs_dirent *sd;
+       struct dentry *parent = NULL;
        struct dentry *old_dentry = NULL, *new_dentry = NULL;
        const char *dup_name = NULL;
        int error;
 
-       /* get dentries */
+       /* get the original dentry */
+       sd = kobj->sd;
        old_dentry = sysfs_get_dentry(sd);
        if (IS_ERR(old_dentry)) {
                error = PTR_ERR(old_dentry);
                goto out_dput;
        }
 
-       new_parent = sysfs_get_dentry(new_parent_sd);
-       if (IS_ERR(new_parent)) {
-               error = PTR_ERR(new_parent);
-               goto out_dput;
-       }
+       parent = old_dentry->d_parent;
 
-       /* lock new_parent and get dentry for new name */
-       mutex_lock(&new_parent->d_inode->i_mutex);
+       /* lock parent and get dentry for new name */
+       mutex_lock(&parent->d_inode->i_mutex);
 
-       new_dentry = lookup_one_len(new_name, new_parent, strlen(new_name));
+       new_dentry = lookup_one_len(new_name, parent, strlen(new_name));
        if (IS_ERR(new_dentry)) {
                error = PTR_ERR(new_dentry);
                goto out_unlock;
        }
 
-       /* By allowing two different directories with the same
-        * d_parent we allow this routine to move between different
-        * shadows of the same directory
-        */
        error = -EINVAL;
-       if (old_dentry->d_parent->d_inode != new_parent->d_inode ||
-           new_dentry->d_parent->d_inode != new_parent->d_inode ||
-           old_dentry == new_dentry)
+       if (old_dentry == new_dentry)
                goto out_unlock;
 
        error = -EEXIST;
@@ -939,33 +895,24 @@ int sysfs_rename_dir(struct kobject *kobj, struct sysfs_dirent *new_parent_sd,
        if (error)
                goto out_drop;
 
+       mutex_lock(&sysfs_mutex);
        dup_name = sd->s_name;
        sd->s_name = new_name;
+       mutex_unlock(&sysfs_mutex);
 
-       /* move under the new parent */
+       /* rename */
        d_add(new_dentry, NULL);
        d_move(sd->s_dentry, new_dentry);
 
-       mutex_lock(&sysfs_mutex);
-
-       sysfs_unlink_sibling(sd);
-       sysfs_get(new_parent_sd);
-       sysfs_put(sd->s_parent);
-       sd->s_parent = new_parent_sd;
-       sysfs_link_sibling(sd);
-
-       mutex_unlock(&sysfs_mutex);
-
        error = 0;
        goto out_unlock;
 
  out_drop:
        d_drop(new_dentry);
  out_unlock:
-       mutex_unlock(&new_parent->d_inode->i_mutex);
+       mutex_unlock(&parent->d_inode->i_mutex);
  out_dput:
        kfree(dup_name);
-       dput(new_parent);
        dput(old_dentry);
        dput(new_dentry);
        return error;
@@ -1007,7 +954,7 @@ again:
                goto again;
        }
 
-       new_dentry = lookup_one_len(kobj->name, new_parent, strlen(kobj->name));
+       new_dentry = lookup_one_len(kobject_name(kobj), new_parent, strlen(kobject_name(kobj)));
        if (IS_ERR(new_dentry)) {
                error = PTR_ERR(new_dentry);
                goto out_unlock;
@@ -1038,37 +985,6 @@ again:
        return error;
 }
 
-static int sysfs_dir_open(struct inode *inode, struct file *file)
-{
-       struct dentry * dentry = file->f_path.dentry;
-       struct sysfs_dirent * parent_sd = dentry->d_fsdata;
-       struct sysfs_dirent * sd;
-
-       sd = sysfs_new_dirent("_DIR_", 0, 0);
-       if (sd) {
-               mutex_lock(&sysfs_mutex);
-               sd->s_parent = sysfs_get(parent_sd);
-               sysfs_link_sibling(sd);
-               mutex_unlock(&sysfs_mutex);
-       }
-
-       file->private_data = sd;
-       return sd ? 0 : -ENOMEM;
-}
-
-static int sysfs_dir_close(struct inode *inode, struct file *file)
-{
-       struct sysfs_dirent * cursor = file->private_data;
-
-       mutex_lock(&sysfs_mutex);
-       sysfs_unlink_sibling(cursor);
-       mutex_unlock(&sysfs_mutex);
-
-       release_sysfs_dirent(cursor);
-
-       return 0;
-}
-
 /* Relationship between s_mode and the DT_xxx types */
 static inline unsigned char dt_type(struct sysfs_dirent *sd)
 {
@@ -1079,232 +995,51 @@ static int sysfs_readdir(struct file * filp, void * dirent, filldir_t filldir)
 {
        struct dentry *dentry = filp->f_path.dentry;
        struct sysfs_dirent * parent_sd = dentry->d_fsdata;
-       struct sysfs_dirent *cursor = filp->private_data;
-       struct sysfs_dirent **pos;
+       struct sysfs_dirent *pos;
        ino_t ino;
-       int i = filp->f_pos;
 
-       switch (i) {
-               case 0:
-                       ino = parent_sd->s_ino;
-                       if (filldir(dirent, ".", 1, i, ino, DT_DIR) < 0)
-                               break;
+       if (filp->f_pos == 0) {
+               ino = parent_sd->s_ino;
+               if (filldir(dirent, ".", 1, filp->f_pos, ino, DT_DIR) == 0)
                        filp->f_pos++;
-                       i++;
-                       /* fallthrough */
-               case 1:
-                       if (parent_sd->s_parent)
-                               ino = parent_sd->s_parent->s_ino;
-                       else
-                               ino = parent_sd->s_ino;
-                       if (filldir(dirent, "..", 2, i, ino, DT_DIR) < 0)
-                               break;
+       }
+       if (filp->f_pos == 1) {
+               if (parent_sd->s_parent)
+                       ino = parent_sd->s_parent->s_ino;
+               else
+                       ino = parent_sd->s_ino;
+               if (filldir(dirent, "..", 2, filp->f_pos, ino, DT_DIR) == 0)
                        filp->f_pos++;
-                       i++;
-                       /* fallthrough */
-               default:
-                       mutex_lock(&sysfs_mutex);
-
-                       pos = &parent_sd->s_children;
-                       while (*pos != cursor)
-                               pos = &(*pos)->s_sibling;
-
-                       /* unlink cursor */
-                       *pos = cursor->s_sibling;
-
-                       if (filp->f_pos == 2)
-                               pos = &parent_sd->s_children;
-
-                       for ( ; *pos; pos = &(*pos)->s_sibling) {
-                               struct sysfs_dirent *next = *pos;
-                               const char * name;
-                               int len;
-
-                               if (!sysfs_type(next))
-                                       continue;
-
-                               name = next->s_name;
-                               len = strlen(name);
-                               ino = next->s_ino;
-
-                               if (filldir(dirent, name, len, filp->f_pos, ino,
-                                                dt_type(next)) < 0)
-                                       break;
+       }
+       if ((filp->f_pos > 1) && (filp->f_pos < INT_MAX)) {
+               mutex_lock(&sysfs_mutex);
 
-                               filp->f_pos++;
-                       }
+               /* Skip the dentries we have already reported */
+               pos = parent_sd->s_children;
+               while (pos && (filp->f_pos > pos->s_ino))
+                       pos = pos->s_sibling;
 
-                       /* put cursor back in */
-                       cursor->s_sibling = *pos;
-                       *pos = cursor;
+               for ( ; pos; pos = pos->s_sibling) {
+                       const char * name;
+                       int len;
 
-                       mutex_unlock(&sysfs_mutex);
-       }
-       return 0;
-}
+                       name = pos->s_name;
+                       len = strlen(name);
+                       filp->f_pos = ino = pos->s_ino;
 
-static loff_t sysfs_dir_lseek(struct file * file, loff_t offset, int origin)
-{
-       struct dentry * dentry = file->f_path.dentry;
-
-       switch (origin) {
-               case 1:
-                       offset += file->f_pos;
-               case 0:
-                       if (offset >= 0)
+                       if (filldir(dirent, name, len, filp->f_pos, ino,
+                                        dt_type(pos)) < 0)
                                break;
-               default:
-                       return -EINVAL;
-       }
-       if (offset != file->f_pos) {
-               mutex_lock(&sysfs_mutex);
-
-               file->f_pos = offset;
-               if (file->f_pos >= 2) {
-                       struct sysfs_dirent *sd = dentry->d_fsdata;
-                       struct sysfs_dirent *cursor = file->private_data;
-                       struct sysfs_dirent **pos;
-                       loff_t n = file->f_pos - 2;
-
-                       sysfs_unlink_sibling(cursor);
-
-                       pos = &sd->s_children;
-                       while (n && *pos) {
-                               struct sysfs_dirent *next = *pos;
-                               if (sysfs_type(next))
-                                       n--;
-                               pos = &(*pos)->s_sibling;
-                       }
-
-                       cursor->s_sibling = *pos;
-                       *pos = cursor;
                }
-
+               if (!pos)
+                       filp->f_pos = INT_MAX;
                mutex_unlock(&sysfs_mutex);
        }
-
-       return offset;
-}
-
-
-/**
- *     sysfs_make_shadowed_dir - Setup so a directory can be shadowed
- *     @kobj:  object we're creating shadow of.
- */
-
-int sysfs_make_shadowed_dir(struct kobject *kobj,
-       void * (*follow_link)(struct dentry *, struct nameidata *))
-{
-       struct dentry *dentry;
-       struct inode *inode;
-       struct inode_operations *i_op;
-
-       /* get dentry for @kobj->sd, dentry of a shadowed dir is pinned */
-       dentry = sysfs_get_dentry(kobj->sd);
-       if (IS_ERR(dentry))
-               return PTR_ERR(dentry);
-
-       inode = dentry->d_inode;
-       if (inode->i_op != &sysfs_dir_inode_operations) {
-               dput(dentry);
-               return -EINVAL;
-       }
-
-       i_op = kmalloc(sizeof(*i_op), GFP_KERNEL);
-       if (!i_op)
-               return -ENOMEM;
-
-       memcpy(i_op, &sysfs_dir_inode_operations, sizeof(*i_op));
-       i_op->follow_link = follow_link;
-
-       /* Locking of inode->i_op?
-        * Since setting i_op is a single word write and they
-        * are atomic we should be ok here.
-        */
-       inode->i_op = i_op;
        return 0;
 }
 
-/**
- *     sysfs_create_shadow_dir - create a shadow directory for an object.
- *     @kobj:  object we're creating directory for.
- *
- *     sysfs_make_shadowed_dir must already have been called on this
- *     directory.
- */
-
-struct sysfs_dirent *sysfs_create_shadow_dir(struct kobject *kobj)
-{
-       struct sysfs_dirent *parent_sd = kobj->sd->s_parent;
-       struct dentry *dir, *parent, *shadow;
-       struct inode *inode;
-       struct sysfs_dirent *sd;
-       struct sysfs_addrm_cxt acxt;
-
-       dir = sysfs_get_dentry(kobj->sd);
-       if (IS_ERR(dir)) {
-               sd = (void *)dir;
-               goto out;
-       }
-       parent = dir->d_parent;
-
-       inode = dir->d_inode;
-       sd = ERR_PTR(-EINVAL);
-       if (!sysfs_is_shadowed_inode(inode))
-               goto out_dput;
-
-       shadow = d_alloc(parent, &dir->d_name);
-       if (!shadow)
-               goto nomem;
-
-       sd = sysfs_new_dirent("_SHADOW_", inode->i_mode, SYSFS_DIR);
-       if (!sd)
-               goto nomem;
-       sd->s_elem.dir.kobj = kobj;
-
-       sysfs_addrm_start(&acxt, parent_sd);
-
-       /* add but don't link into children list */
-       sysfs_add_one(&acxt, sd);
-
-       /* attach and instantiate dentry */
-       sysfs_attach_dentry(sd, shadow);
-       d_instantiate(shadow, igrab(inode));
-       inc_nlink(inode);       /* tj: synchronization? */
-
-       sysfs_addrm_finish(&acxt);
-
-       dget(shadow);           /* Extra count - pin the dentry in core */
-
-       goto out_dput;
-
- nomem:
-       dput(shadow);
-       sd = ERR_PTR(-ENOMEM);
- out_dput:
-       dput(dir);
- out:
-       return sd;
-}
-
-/**
- *     sysfs_remove_shadow_dir - remove an object's directory.
- *     @shadow_sd: sysfs_dirent of shadow directory
- *
- *     The only thing special about this is that we remove any files in
- *     the directory before we remove the directory, and we've inlined
- *     what used to be sysfs_rmdir() below, instead of calling separately.
- */
-
-void sysfs_remove_shadow_dir(struct sysfs_dirent *shadow_sd)
-{
-       __sysfs_remove_dir(shadow_sd);
-}
 
 const struct file_operations sysfs_dir_operations = {
-       .open           = sysfs_dir_open,
-       .release        = sysfs_dir_close,
-       .llseek         = sysfs_dir_lseek,
        .read           = generic_read_dir,
        .readdir        = sysfs_readdir,
 };