Changes by: antona
Update of /cvsroot/linux-ntfs/ntfs-driver-tng/linux/include/linux
In directory usw-pr-cvs1:/tmp/cvs-serv7469/linux/include/linux
Modified Files:
ntfs_fs.h
Log Message:
Mounts should now work. Note if the mount fails, you will probably have to
reboot before you can try again or bad things might happen...
Umount fails with busy inodes at the moment...
Index: ntfs_fs.h
===================================================================
RCS file: /cvsroot/linux-ntfs/ntfs-driver-tng/linux/include/linux/ntfs_fs.h,v
retrieving revision 1.18
retrieving revision 1.19
diff -U2 -r1.18 -r1.19
--- ntfs_fs.h 2001/07/28 16:57:40 1.18
+++ ntfs_fs.h 2001/07/29 02:07:16 1.19
@@ -158,9 +158,9 @@
#ifdef DEBUG
#define ntfs_debug(f, a...) \
- { \
+ do { \
printk(KERN_DEBUG "NTFS-fs DEBUG (%s, %d): %s: ", \
__FILE__, __LINE__, __FUNCTION__); \
printk(f, ##a); \
- }
+ } while (0)
#else /* !DEBUG */
#define ntfs_debug(f, a...) do {} while (0)
|