diff options
author | Dan Kimmel <dan.kimmel@delphix.com> | 2016-06-12 22:47:35 -0400 |
---|---|---|
committer | Brian Behlendorf <behlendorf1@llnl.gov> | 2016-09-13 09:59:09 -0700 |
commit | c4434877ae449a637d0f302eca80fcaad354874f (patch) | |
tree | 7c93c750bbb6c50dc3316331a4325fa739627f2a /include/sys/dmu.h | |
parent | c17bcf83da14f7f05641dfabb7160025a93641c1 (diff) |
Remove lint suppression from dmu.h and unnecessary dmu.h include in spa.h
Authored by: Dan Kimmel <dan.kimmel@delphix.com>
Reviewed by: Tom Caputi <tcaputi@datto.com>
Reviewed by: Brian Behlendorf <behlendorf1@llnl.gov>
Ported by: David Quigley <david.quigley@intel.com>
Issue #5078
Diffstat (limited to 'include/sys/dmu.h')
-rw-r--r-- | include/sys/dmu.h | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/include/sys/dmu.h b/include/sys/dmu.h index 83919a624..4efab7c72 100644 --- a/include/sys/dmu.h +++ b/include/sys/dmu.h @@ -562,12 +562,7 @@ typedef struct dmu_buf_user { * NOTE: This function should only be called once on a given dmu_buf_user_t. * To allow enforcement of this, dbu must already be zeroed on entry. */ -#ifdef __lint -/* Very ugly, but it beats issuing suppression directives in many Makefiles. */ -extern void -dmu_buf_init_user(dmu_buf_user_t *dbu, dmu_buf_evict_func_t *evict_func, - dmu_buf_t **clear_on_evict_dbufp); -#else /* __lint */ +/*ARGSUSED*/ static inline void dmu_buf_init_user(dmu_buf_user_t *dbu, dmu_buf_evict_func_t *evict_func, dmu_buf_t **clear_on_evict_dbufp) @@ -580,7 +575,6 @@ dmu_buf_init_user(dmu_buf_user_t *dbu, dmu_buf_evict_func_t *evict_func, dbu->dbu_clear_on_evict_dbufp = clear_on_evict_dbufp; #endif } -#endif /* __lint */ /* * Attach user data to a dbuf and mark it for normal (when the dbuf's |