serial: Remove duplicated macro definition of port type
[linux-2.6-microblaze.git] / fs / namespace.c
index 7cd6424..f30ed40 100644 (file)
@@ -684,9 +684,6 @@ bool __is_local_mountpoint(struct dentry *dentry)
        struct mount *mnt;
        bool is_covered = false;
 
-       if (!d_mountpoint(dentry))
-               goto out;
-
        down_read(&namespace_sem);
        lock_ns_list(ns);
        list_for_each_entry(mnt, &ns->list, mnt_list) {
@@ -698,7 +695,7 @@ bool __is_local_mountpoint(struct dentry *dentry)
        }
        unlock_ns_list(ns);
        up_read(&namespace_sem);
-out:
+
        return is_covered;
 }