is '.' or '..'.  This new path resolvation is now done on mount as
        well as unmount.  This enables relative paths to work on unmount.
 
+       * Allow module params to be changed through sysfs
+
 2004-11-14  Miklos Szeredi <miklos@szeredi.hu>
 
        * Released 2.1-pre1
 
 static int user_mmap;
 #ifdef KERNEL_2_6
 #include <linux/moduleparam.h>
-module_param(user_mmap, int, 0);
+module_param(user_mmap, int, 0644);
 #else
 MODULE_PARM(user_mmap, "i");
 #endif
 
 
 #ifdef KERNEL_2_6
 #include <linux/moduleparam.h>
-module_param(user_allow_other, int, 0);
+module_param(user_allow_other, int, 0644);
 #else
 MODULE_PARM(user_allow_other, "i");
 #endif