summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStephen Rothwell <sfr@canb.auug.org.au>2010-05-18 16:36:22 +1000
committerStephen Rothwell <sfr@canb.auug.org.au>2010-05-18 16:38:45 +1000
commita9e268020f293fb6462653cb832c0870f248857b (patch)
tree7d6c574464ec9d56a0f4bc8d0e023b2cd2c23880
parente4d97cf1c952e5f855297ce6c1466bafd9639861 (diff)
sysfs: fix for S_BIAS going away
Not a real fix, but it lets the code build. Signed-off-by: Stephen Rothwell <sfr@canb.auug.org.au>
-rw-r--r--fs/sysfs/mount.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/sysfs/mount.c b/fs/sysfs/mount.c
index 1afa32ba242c..49258e1537a2 100644
--- a/fs/sysfs/mount.c
+++ b/fs/sysfs/mount.c
@@ -157,8 +157,8 @@ void sysfs_exit_ns(enum kobj_ns_type type, const void *ns)
list_for_each_entry(sb, &sysfs_fs_type.fs_supers, s_instances) {
struct sysfs_super_info *info = sysfs_info(sb);
/* Ignore superblocks that are in the process of unmounting */
- if (sb->s_count <= S_BIAS)
- continue;
+// if (sb->s_count <= S_BIAS)
+// continue;
/* Ignore superblocks with the wrong ns */
if (info->ns[type] != ns)
continue;