|
@@ -33,6 +33,7 @@
|
|
#include <linux/vfs.h>
|
|
#include <linux/vfs.h>
|
|
#include <linux/namei.h>
|
|
#include <linux/namei.h>
|
|
#include <linux/namespace.h>
|
|
#include <linux/namespace.h>
|
|
|
|
+#include <linux/security.h>
|
|
|
|
|
|
#include <asm/system.h>
|
|
#include <asm/system.h>
|
|
#include <asm/uaccess.h>
|
|
#include <asm/uaccess.h>
|
|
@@ -109,6 +110,8 @@ struct dentry *nfs_get_root(struct super_block *sb, struct nfs_fh *mntfh)
|
|
return ERR_PTR(-ENOMEM);
|
|
return ERR_PTR(-ENOMEM);
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+ security_d_instantiate(mntroot, inode);
|
|
|
|
+
|
|
if (!mntroot->d_op)
|
|
if (!mntroot->d_op)
|
|
mntroot->d_op = server->nfs_client->rpc_ops->dentry_ops;
|
|
mntroot->d_op = server->nfs_client->rpc_ops->dentry_ops;
|
|
|
|
|
|
@@ -296,6 +299,8 @@ struct dentry *nfs4_get_root(struct super_block *sb, struct nfs_fh *mntfh)
|
|
return ERR_PTR(-ENOMEM);
|
|
return ERR_PTR(-ENOMEM);
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+ security_d_instantiate(mntroot, inode);
|
|
|
|
+
|
|
if (!mntroot->d_op)
|
|
if (!mntroot->d_op)
|
|
mntroot->d_op = server->nfs_client->rpc_ops->dentry_ops;
|
|
mntroot->d_op = server->nfs_client->rpc_ops->dentry_ops;
|
|
|
|
|