commit b5067b7b95922ba22040adc7d81f5e1a3cca6094
Author: Yiannis Pericleous <[EMAIL PROTECTED]>
Date:   Tue May 29 00:41:19 2007 -0400

    added KERN_WARNING to cleanup thread's print messages

diff --git a/fs/unionfs/odf.c b/fs/unionfs/odf.c
index c1a5e29..aa5261c 100644
--- a/fs/unionfs/odf.c
+++ b/fs/unionfs/odf.c
@@ -2051,13 +2051,15 @@ void __odf_cleanup(void *args)
        if (cleanup)
                err = odf_cleanup(cl->odf, cleanup, size);
        if (err < 0)
-               printk("unionfs cleanup thread: error %d\n", err);
+               printk(KERN_WARNING "unionfs cleanup thread: error %d\n", err);
        else {
                if (err == 0 && cl->success == 1) {
                        if (cleanup == ODF_CLEAN_BLOCKS)
-                               printk("unionfs: Failed to bring free odf data 
blocks below threshold\n");
+                               printk(KERN_WARNING
+                                      "unionfs: failed to bring free odf data 
blocks below threshold\n");
                        else if (cleanup == ODF_CLEAN_INODES)
-                               printk("unionfs: Failed to bring free odf 
inodes below threshold\n");
+                               printk(KERN_WARNING
+                                      "unionfs: failed to bring free odf 
inodes below threshold\n");
                }
                cl->success = err;
        }
_______________________________________________
unionfs-cvs mailing list: http://unionfs.filesystems.org/
[email protected]
http://www.fsl.cs.sunysb.edu/mailman/listinfo/unionfs-cvs

Reply via email to