patch-1.3.28 linux/fs/sysv/namei.c
Next file: linux/fs/umsdos/dir.c
Previous file: linux/fs/sysv/inode.c
Back to the patch index
Back to the overall index
- Lines: 31
- Date:
Mon Sep 18 08:54:11 1995
- Orig file:
v1.3.27/linux/fs/sysv/namei.c
- Orig date:
Mon Jan 23 10:38:30 1995
diff -u --recursive --new-file v1.3.27/linux/fs/sysv/namei.c linux/fs/sysv/namei.c
@@ -279,7 +279,7 @@
else if (S_ISFIFO(inode->i_mode))
init_fifo(inode);
if (S_ISBLK(mode) || S_ISCHR(mode))
- inode->i_rdev = rdev;
+ inode->i_rdev = to_kdev_t(rdev);
inode->i_dirt = 1;
error = sysv_add_entry(dir, name, len, &bh, &de);
if (error) {
@@ -418,7 +418,8 @@
return 1;
bad_dir:
brelse(bh);
- printk("Bad directory on device %04x\n",inode->i_dev);
+ printk("Bad directory on device %s\n",
+ kdevname(inode->i_dev));
return 1;
}
@@ -512,8 +513,9 @@
goto end_unlink;
}
if (!inode->i_nlink) {
- printk("Deleting nonexistent file (%04x:%lu), %d\n",
- inode->i_dev,inode->i_ino,inode->i_nlink);
+ printk("Deleting nonexistent file (%s:%lu), %d\n",
+ kdevname(inode->i_dev),
+ inode->i_ino, inode->i_nlink);
inode->i_nlink=1;
}
de->inode = 0;
FUNET's LINUX-ADM group, linux-adm@nic.funet.fi
TCL-scripts by Sam Shen, slshen@lbl.gov
with Sam's (original) version of this