patch-2.1.127 linux/fs/nfsd/export.c
Next file: linux/fs/nfsd/nfsfh.c
Previous file: linux/fs/nfsd/auth.c
Back to the patch index
Back to the overall index
- Lines: 48
- Date:
Tue Oct 27 15:15:35 1998
- Orig file:
v2.1.126/linux/fs/nfsd/export.c
- Orig date:
Fri Oct 23 22:01:22 1998
diff -u --recursive --new-file v2.1.126/linux/fs/nfsd/export.c linux/fs/nfsd/export.c
@@ -457,14 +457,17 @@
char *path, struct knfs_fh *f)
{
struct svc_export *exp;
- struct dentry *dentry;
+ struct dentry *dentry = NULL;
struct inode *inode;
struct svc_fh fh;
int err;
+ err = -EPERM;
if (path) {
- dentry = lookup_dentry(path, NULL, 0);
-
+ if (!(dentry = lookup_dentry(path, NULL, 0))) {
+ printk("nfsd: exp_rootfh path not found %s", path);
+ return -EPERM;
+ }
dev = dentry->d_inode->i_dev;
ino = dentry->d_inode->i_ino;
@@ -474,17 +477,21 @@
} else {
dprintk("nfsd: exp_rootfh(%s:%x/%ld)\n",
clp->cl_ident, dev, ino);
- exp = exp_get(clp, dev, ino);
- dentry = dget(exp->ex_dentry);
+ if ((exp = exp_get(clp, dev, ino)))
+ if (!(dentry = dget(exp->ex_dentry))) {
+ printk("exp_rootfh: Aieee, NULL dentry\n");
+ return -EPERM;
+ }
}
- err = -EPERM;
- if (!exp)
+ if (!exp) {
+ dprintk("nfsd: exp_rootfh export not found.\n");
goto out;
+ }
inode = dentry->d_inode;
if (!inode) {
printk("exp_rootfh: Aieee, NULL d_inode\n");
- return -EPERM;
+ goto out;
}
if (inode->i_dev != dev || inode->i_ino != ino) {
printk("exp_rootfh: Aieee, ino/dev mismatch\n");
FUNET's LINUX-ADM group, linux-adm@nic.funet.fi
TCL-scripts by Sam Shen, slshen@lbl.gov