Suppress large kmem_alloc() warning.
authorBrian Behlendorf <behlendorf1@llnl.gov>
Mon, 27 Sep 2010 22:04:24 +0000 (15:04 -0700)
committerBrian Behlendorf <behlendorf1@llnl.gov>
Tue, 12 Oct 2010 21:54:59 +0000 (14:54 -0700)
commit398f129ca36b211b19b98ca16aff1d7e91ee2949
tree673a488b2fb5897a5c6254bd5f5383ed818b76ea
parent5c1bad0013204d70c5b60713af977bdaa5df1302
Suppress large kmem_alloc() warning.

Observed during failure mode testing, dsl_scan_setup_sync() allocates
73920 bytes.  This is way over the limit of what is wise to do with a
kmem_alloc() and it should probably be moved to a slab.  For now I'm
just flagging it with KM_NODEBUG to quiet the error until this can be
revisited.
module/zfs/dsl_scan.c