aboutsummaryrefslogtreecommitdiffstats
path: root/fs/sysfs/dir.c
diff options
context:
space:
mode:
authorEric Sandeen <sandeen@sandeen.net>2007-06-11 01:02:45 -0400
committerGreg Kroah-Hartman <gregkh@suse.de>2007-06-12 19:08:46 -0400
commitdc351252b33f8fede396d6173dba117bcb933607 (patch)
tree282d57855f66119f930eb629ab483bffcc5b6c21 /fs/sysfs/dir.c
parent99f9f3d49cbc7d944476f6fde53a77ec789ab2aa (diff)
sysfs: store sysfs inode nrs in s_ino to avoid readdir oopses
Backport of ftp://ftp.kernel.org/pub/linux/kernel/people/akpm/patches/2.6/2.6.22-rc1/2.6.22-rc1-mm1/broken-out/gregkh-driver-sysfs-allocate-inode-number-using-ida.patch For regular files in sysfs, sysfs_readdir wants to traverse sysfs_dirent->s_dentry->d_inode->i_ino to get to the inode number. But, the dentry can be reclaimed under memory pressure, and there is no synchronization with readdir. This patch follows Tejun's scheme of allocating and storing an inode number in the new s_ino member of a sysfs_dirent, when dirents are created, and retrieving it from there for readdir, so that the pointer chain doesn't have to be traversed. Tejun's upstream patch uses a new-ish "ida" allocator which brings along some extra complexity; this -stable patch has a brain-dead incrementing counter which does not guarantee uniqueness, but because sysfs doesn't hash inodes as iunique expects, uniqueness wasn't guaranteed today anyway. Signed-off-by: Eric Sandeen <sandeen@redhat.com> Signed-off-by: Tejun Heo <htejun@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'fs/sysfs/dir.c')
-rw-r--r--fs/sysfs/dir.c16
1 files changed, 11 insertions, 5 deletions
diff --git a/fs/sysfs/dir.c b/fs/sysfs/dir.c
index 85a668680f82..17a819151b91 100644
--- a/fs/sysfs/dir.c
+++ b/fs/sysfs/dir.c
@@ -30,6 +30,14 @@ static struct dentry_operations sysfs_dentry_ops = {
30 .d_iput = sysfs_d_iput, 30 .d_iput = sysfs_d_iput,
31}; 31};
32 32
33static unsigned int sysfs_inode_counter;
34ino_t sysfs_get_inum(void)
35{
36 if (unlikely(sysfs_inode_counter < 3))
37 sysfs_inode_counter = 3;
38 return sysfs_inode_counter++;
39}
40
33/* 41/*
34 * Allocates a new sysfs_dirent and links it to the parent sysfs_dirent 42 * Allocates a new sysfs_dirent and links it to the parent sysfs_dirent
35 */ 43 */
@@ -41,6 +49,7 @@ static struct sysfs_dirent * __sysfs_new_dirent(void * element)
41 if (!sd) 49 if (!sd)
42 return NULL; 50 return NULL;
43 51
52 sd->s_ino = sysfs_get_inum();
44 atomic_set(&sd->s_count, 1); 53 atomic_set(&sd->s_count, 1);
45 atomic_set(&sd->s_event, 1); 54 atomic_set(&sd->s_event, 1);
46 INIT_LIST_HEAD(&sd->s_children); 55 INIT_LIST_HEAD(&sd->s_children);
@@ -509,7 +518,7 @@ static int sysfs_readdir(struct file * filp, void * dirent, filldir_t filldir)
509 518
510 switch (i) { 519 switch (i) {
511 case 0: 520 case 0:
512 ino = dentry->d_inode->i_ino; 521 ino = parent_sd->s_ino;
513 if (filldir(dirent, ".", 1, i, ino, DT_DIR) < 0) 522 if (filldir(dirent, ".", 1, i, ino, DT_DIR) < 0)
514 break; 523 break;
515 filp->f_pos++; 524 filp->f_pos++;
@@ -538,10 +547,7 @@ static int sysfs_readdir(struct file * filp, void * dirent, filldir_t filldir)
538 547
539 name = sysfs_get_name(next); 548 name = sysfs_get_name(next);
540 len = strlen(name); 549 len = strlen(name);
541 if (next->s_dentry) 550 ino = next->s_ino;
542 ino = next->s_dentry->d_inode->i_ino;
543 else
544 ino = iunique(sysfs_sb, 2);
545 551
546 if (filldir(dirent, name, len, filp->f_pos, ino, 552 if (filldir(dirent, name, len, filp->f_pos, ino,
547 dt_type(next)) < 0) 553 dt_type(next)) < 0)