Changes by: antona
Update of /cvsroot/linux-ntfs/ntfs-driver-tng/linux/fs/ntfs
In directory usw-pr-cvs1:/tmp/cvs-serv7750/linux/fs/ntfs
Modified Files:
debug.c
Log Message:
Replace bdevname() with sb->s_id.
Index: debug.c
===================================================================
RCS file: /cvsroot/linux-ntfs/ntfs-driver-tng/linux/fs/ntfs/debug.c,v
retrieving revision 1.19
retrieving revision 1.20
diff -U2 -r1.19 -r1.20
--- debug.c 3 Feb 2002 19:31:17 -0000 1.19
+++ debug.c 13 Feb 2002 03:54:13 -0000 1.20
@@ -62,6 +62,5 @@
if (sb)
printk(KERN_ERR "NTFS-fs warning (device %s): %s(): %s\n",
- bdevname(sb->s_dev), flen ? function : "",
- err_buf);
+ sb->s_id, flen ? function : "", err_buf);
else
printk(KERN_ERR "NTFS-fs warning: %s(): %s\n",
@@ -103,6 +102,5 @@
if (sb)
printk(KERN_ERR "NTFS-fs error (device %s): %s(): %s\n",
- bdevname(sb->s_dev), flen ? function : "",
- err_buf);
+ sb->s_id, flen ? function : "", err_buf);
else
printk(KERN_ERR "NTFS-fs error: %s(): %s\n",
|