Changes by: antona
Update of /cvsroot/linux-ntfs/ntfs-driver-tng/linux/fs/ntfs
In directory usw-pr-cvs1:/tmp/cvs-serv17003/linux/fs/ntfs
Modified Files:
aops.c inode.c
Log Message:
Remove a few debug msgs.
Index: aops.c
===================================================================
RCS file: /cvsroot/linux-ntfs/ntfs-driver-tng/linux/fs/ntfs/aops.c,v
retrieving revision 1.14
retrieving revision 1.15
diff -U2 -r1.14 -r1.15
--- aops.c 2001/07/28 17:35:55 1.14
+++ aops.c 2001/07/29 02:50:05 1.15
@@ -88,5 +88,4 @@
attr_search_context ctx;
- ntfs_debug("Entering.\n");
/* Get hold of the run list of the unnamed data attribute. */
/*
@@ -221,5 +220,4 @@
attr_search_context ctx;
- ntfs_debug("Entering.\n");
/* The page must be locked. */
if (!PageLocked(page))
Index: inode.c
===================================================================
RCS file: /cvsroot/linux-ntfs/ntfs-driver-tng/linux/fs/ntfs/inode.c,v
retrieving revision 1.14
retrieving revision 1.15
diff -U2 -r1.14 -r1.15
--- inode.c 2001/07/29 02:07:16 1.14
+++ inode.c 2001/07/29 02:50:05 1.15
@@ -471,5 +471,5 @@
void ntfs_dirty_inode(struct inode *vfs_ino)
{
- ntfs_debug("Entering.\n");
+ ntfs_debug("Entering for i_ino 0x%lx.\n", vfs_ino->i_ino);
NInoSetDirty(NTFS_I(vfs_ino));
return;
@@ -478,5 +478,5 @@
int commit_ntfs_inode(struct inode *vfs_ino)
{
- ntfs_debug("Entering.\n");
+ ntfs_debug("Entering for i_ino 0x%lx.\n", vfs_ino->i_ino);
NInoClearDirty(NTFS_I(vfs_ino));
return 0;
@@ -498,5 +498,5 @@
int err;
- ntfs_debug("Entering.\n");
+ ntfs_debug("Entering for i_ino 0x%lx.\n", vfs_ino->i_ino);
if (NInoDirty(ntfs_ino)) {
err = commit_ntfs_inode(vfs_ino);
|