summaryrefslogtreecommitdiffstats
path: root/fs/autofs/dirhash.c
diff options
context:
space:
mode:
authorRalf Baechle <ralf@linux-mips.org>1998-08-25 09:12:35 +0000
committerRalf Baechle <ralf@linux-mips.org>1998-08-25 09:12:35 +0000
commitc7fc24dc4420057f103afe8fc64524ebc25c5d37 (patch)
tree3682407a599b8f9f03fc096298134cafba1c9b2f /fs/autofs/dirhash.c
parent1d793fade8b063fde3cf275bf1a5c2d381292cd9 (diff)
o Merge with Linux 2.1.116.
o New Newport console code. o New G364 console code.
Diffstat (limited to 'fs/autofs/dirhash.c')
-rw-r--r--fs/autofs/dirhash.c65
1 files changed, 61 insertions, 4 deletions
diff --git a/fs/autofs/dirhash.c b/fs/autofs/dirhash.c
index 7169bd075..bd9f33aab 100644
--- a/fs/autofs/dirhash.c
+++ b/fs/autofs/dirhash.c
@@ -37,15 +37,72 @@ void autofs_update_usage(struct autofs_dirhash *dh,
autofs_init_usage(dh,ent); /* Relink at queue tail */
}
-struct autofs_dir_ent *autofs_expire(struct autofs_dirhash *dh,
- unsigned long timeout)
+struct autofs_dir_ent *autofs_expire(struct super_block *sb,
+ struct autofs_sb_info *sbi)
{
+ struct autofs_dirhash *dh = &sbi->dirhash;
struct autofs_dir_ent *ent;
+ struct dentry *dentry;
+ unsigned long timeout = sbi->exp_timeout;
ent = dh->expiry_head.exp_next;
- if ( ent == &(dh->expiry_head) ) return NULL;
- return (jiffies - ent->last_usage >= timeout) ? ent : NULL;
+ if ( ent == &(dh->expiry_head) )
+ return NULL; /* No entries */
+
+ while ( jiffies - ent->last_usage >= timeout ) {
+ /* Move to end of list in case expiry isn't desirable */
+ autofs_update_usage(dh, ent);
+
+ /* Check to see that entry is expirable */
+ if ( ent->ino < AUTOFS_FIRST_DIR_INO )
+ return ent; /* Symlinks are always expirable */
+
+ /* Get the dentry for the autofs subdirectory */
+ dentry = lookup_dentry(ent->name, dget(sb->s_root), 0);
+
+ if ( IS_ERR(dentry) ) {
+ printk("autofs: no such dentry on expiry queue: %s\n",
+ ent->name);
+ autofs_delete_usage(ent);
+ continue;
+ }
+
+ if ( !dentry->d_inode ) {
+ dput(dentry);
+ printk("autofs: negative dentry on expiry queue: %s\n",
+ ent->name);
+ autofs_delete_usage(ent);
+ continue;
+ }
+
+ /* Make sure entry is mounted and unused; note that dentry will
+ point to the mounted-on-top root. */
+ if ( !S_ISDIR(dentry->d_inode->i_mode)
+ || dentry->d_covers == dentry ) {
+ dput(dentry);
+ DPRINTK(("autofs: not expirable (not a mounted directory): %s\n", ent->name));
+ continue;
+ }
+
+ /*
+ * Now, this is known to be a mount point; therefore the dentry
+ * will be held by the superblock. is_root_busy() will break if
+ * we hold a use count here, so we have to dput() it before calling
+ * is_root_busy(). However, since it is a mount point (already
+ * verified), dput() will be a nonblocking operation and the use
+ * count will not go to zero; therefore the call to is_root_busy()
+ * here is legal.
+ */
+ dput(dentry);
+
+ if ( !is_root_busy(dentry) ) {
+ DPRINTK(("autofs: signaling expire on %s\n", ent->name));
+ return ent; /* Expirable! */
+ }
+ DPRINTK(("autofs: didn't expire due to is_root_busy: %s\n", ent->name));
+ }
+ return NULL; /* No expirable entries */
}
void autofs_initialize_hash(struct autofs_dirhash *dh) {