Fix zfs_txg_timeout module parameter
authorBrian Behlendorf <behlendorf1@llnl.gov>
Thu, 11 Oct 2012 20:56:32 +0000 (13:56 -0700)
committerBrian Behlendorf <behlendorf1@llnl.gov>
Thu, 11 Oct 2012 22:07:09 +0000 (15:07 -0700)
commit87d98efe9ea7dd1e464f38fc5e39f0d08191d3be
tree4c771b9bbe2a865e21d37d0f77e4828c82685c49
parent7df05a4266fe8549cedb9a2d71bb8bff6ab11112
Fix zfs_txg_timeout module parameter

Allow the zfs_txg_timeout variable to be dynamically tuned at run
time.  By pulling it down out of the variable declaration it will
be evaluted each time through the loop.

The zfs_txg_timeout variable is now declared extern in a the common
sys/txg.h header rather than locally in dsl_scan.c.  This prevents
potential type mismatches if the global variable needs to be used
elsewhere.

Move the module_param() code in to the same source file where
zfs_txg_timeout is declared.  This is the most logical location.

Signed-off-by: Brian Behlendorf <behlendorf1@llnl.gov>
include/sys/txg.h
module/zfs/dsl_scan.c
module/zfs/txg.c