Skip to content

Commit

Permalink
jfs: clean up a dangling comment
Browse files Browse the repository at this point in the history
viro cleaned up an hlist hack, but left a comment where it no longer
belongs.  Combine the old comment with his new one.

Signed-off-by: Dave Kleikamp <shaggy@linux.vnet.ibm.com>
  • Loading branch information
Dave Kleikamp committed Jan 9, 2009
1 parent 2150edc commit da9c138
Showing 1 changed file with 3 additions and 7 deletions.
10 changes: 3 additions & 7 deletions fs/jfs/jfs_imap.c
Original file line number Diff line number Diff line change
Expand Up @@ -56,12 +56,6 @@
#include "jfs_superblock.h"
#include "jfs_debug.h"

/*
* __mark_inode_dirty expects inodes to be hashed. Since we don't want
* special inodes in the fileset inode space, we make them appear hashed,
* but do not put on any lists.
*/

/*
* imap locks
*/
Expand Down Expand Up @@ -497,7 +491,9 @@ struct inode *diReadSpecial(struct super_block *sb, ino_t inum, int secondary)
release_metapage(mp);

/*
* that will look hashed, but won't be on any list; hlist_del()
* __mark_inode_dirty expects inodes to be hashed. Since we don't
* want special inodes in the fileset inode space, we make them
* appear hashed, but do not put on any lists. hlist_del()
* will work fine and require no locking.
*/
ip->i_hash.pprev = &ip->i_hash.next;
Expand Down

0 comments on commit da9c138

Please sign in to comment.