[Ocfs2-commits] mfasheh commits r2109 - trunk/fs/ocfs2

svn-commits at oss.oracle.com svn-commits at oss.oracle.com
Mon Apr 4 13:11:01 CDT 2005


Author: mfasheh
Signed-off-by: manish
Date: 2005-04-04 13:10:59 -0500 (Mon, 04 Apr 2005)
New Revision: 2109

Modified:
   trunk/fs/ocfs2/mmap.c
Log:
* Turn a printk into a debug printk, we don't need this to spew
  anymore.

Signed-off-by: manish



Modified: trunk/fs/ocfs2/mmap.c
===================================================================
--- trunk/fs/ocfs2/mmap.c	2005-04-04 07:47:54 UTC (rev 2108)
+++ trunk/fs/ocfs2/mmap.c	2005-04-04 18:10:59 UTC (rev 2109)
@@ -126,8 +126,8 @@
 	/* We don't want to support shared writable mappings yet. */
 	if (((vma->vm_flags & VM_SHARED) || (vma->vm_flags & VM_MAYSHARE))
 	    && ((vma->vm_flags & VM_WRITE) || (vma->vm_flags & VM_MAYWRITE))) {
-		printk("ocfs2: (%u) disallow shared writable %lx\n",
-		       current->pid, vma->vm_flags);
+		LOG_TRACE_ARGS("disallow shared writable mmaps %lx\n",
+			       vma->vm_flags);
 		/* This is -EINVAL because generic_file_readonly_mmap
 		 * returns it in a similar situation. */
 		return -EINVAL;



More information about the Ocfs2-commits mailing list