Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=27d940352840bb7a55c351b5b5d6e042fcaf8d47
Commit:     27d940352840bb7a55c351b5b5d6e042fcaf8d47
Parent:     fecf97882a8f1e9b52627c30322232c18060aa2c
Author:     Andrew Vasquez <[EMAIL PROTECTED]>
AuthorDate: Mon Mar 12 10:41:30 2007 -0700
Committer:  James Bottomley <[EMAIL PROTECTED]>
CommitDate: Tue Mar 20 10:51:20 2007 -0500

    [SCSI] qla2xxx: Allow the extended-error-logging flag to be dynamic.
    
    The module parameter, ql2xextended_error_logging, can now be
    set dynamically by writing to the following sysfs entry:
    
        /sys/module/qla2xxx/parameters/ql2xextended_error_logging
    
    This alleviates the need for the driver to be unloaded and
    reloaded in order to enable logging.
    
    Signed-off-by: Andrew Vasquez <[EMAIL PROTECTED]>
    Signed-off-by: James Bottomley <[EMAIL PROTECTED]>
---
 drivers/scsi/qla2xxx/qla_os.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/drivers/scsi/qla2xxx/qla_os.c b/drivers/scsi/qla2xxx/qla_os.c
index f67ef38..b6c96a8 100644
--- a/drivers/scsi/qla2xxx/qla_os.c
+++ b/drivers/scsi/qla2xxx/qla_os.c
@@ -62,7 +62,7 @@ MODULE_PARM_DESC(ql2xallocfwdump,
                "vary by ISP type.  Default is 1 - allocate memory.");
 
 int ql2xextended_error_logging;
-module_param(ql2xextended_error_logging, int, S_IRUGO|S_IRUSR);
+module_param(ql2xextended_error_logging, int, S_IRUGO|S_IWUSR);
 MODULE_PARM_DESC(ql2xextended_error_logging,
                "Option to enable extended error logging, "
                "Default is 0 - no logging. 1 - log errors.");
-
To unsubscribe from this list: send the line "unsubscribe git-commits-head" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to