patch-2.1.52 linux/fs/proc/openpromfs.c
Next file: linux/fs/romfs/inode.c
Previous file: linux/fs/proc/array.c
Back to the patch index
Back to the overall index
- Lines: 30
- Date:
Mon Aug 18 20:17:14 1997
- Orig file:
v2.1.51/linux/fs/proc/openpromfs.c
- Orig date:
Mon Aug 18 18:19:46 1997
diff -u --recursive --new-file v2.1.51/linux/fs/proc/openpromfs.c linux/fs/proc/openpromfs.c
@@ -840,26 +840,19 @@
if (!dir)
return -ENOENT;
- if (dentry->d_name.len > 256) {
- iput (dir);
+ if (dentry->d_name.len > 256)
return -EINVAL;
- }
- if (aliases_nodes == ALIASES_NNODES) {
- iput (dir);
+ if (aliases_nodes == ALIASES_NNODES)
return -EIO;
- }
p = kmalloc (dentry->d_name.len + 1, GFP_KERNEL);
- if (!p) {
- iput (dir);
+ if (!p)
return -ENOMEM;
- }
strncpy (p, dentry->d_name.name, dentry->d_name.len);
p [dentry->d_name.len] = 0;
alias_names [aliases_nodes++] = p;
inode = proc_get_inode (dir->i_sb,
NODEP2INO(NODE(dir->i_ino).first_prop)
+ aliases_nodes, 0);
- iput (dir);
if (!inode)
return -EINVAL;
inode->i_mode = S_IFREG | S_IRUGO | S_IWUSR;
FUNET's LINUX-ADM group, linux-adm@nic.funet.fi
TCL-scripts by Sam Shen, slshen@lbl.gov