diff -NurpP --minimal linux-2.6.36-vs2.3.0.36.35/fs/proc/generic.c linux-2.6.36-vs2.3.0.36.36/fs/proc/generic.c --- linux-2.6.36-vs2.3.0.36.35/fs/proc/generic.c 2010-10-21 13:09:36.000000000 +0200 +++ linux-2.6.36-vs2.3.0.36.36/fs/proc/generic.c 2010-10-21 21:43:28.000000000 +0200 @@ -425,8 +425,8 @@ struct dentry *proc_lookup_de(struct pro for (de = de->subdir; de ; de = de->next) { if (de->namelen != dentry->d_name.len) continue; - if (!vx_hide_check(0, de->vx_flags)) - continue; + if (!vx_hide_check(0, de->vx_flags)) + continue; if (!memcmp(dentry->d_name.name, de->name, de->namelen)) { unsigned int ino; @@ -435,8 +435,8 @@ struct dentry *proc_lookup_de(struct pro spin_unlock(&proc_subdir_lock); error = -EINVAL; inode = proc_get_inode(dir->i_sb, ino, de); - /* generic proc entries belong to the host */ - inode->i_tag = 0; + /* generic proc entries belong to the host */ + inode->i_tag = 0; goto out_unlock; } }