diff options
author | Brian Behlendorf <[email protected]> | 2017-01-13 15:33:14 -0800 |
---|---|---|
committer | GitHub <[email protected]> | 2017-01-13 15:33:14 -0800 |
commit | 5043684ae51195fc8b7ce7ff15241f17fe23d993 (patch) | |
tree | fc76db68222c7fe07d9b52ef5bdf713459da58e9 | |
parent | 9775e98844c393229183ebbbd75a877cd8a3a293 (diff) |
OpenZFS 7603 - xuio_stat_wbuf_* should be declared (void)
Porting Notes:
- include/sys/dmu.h prototypes were already updated in 0bc8fd7
Authored by: Prashanth Sreenivasa <[email protected]>
Reviewed by: Matthew Ahrens <[email protected]>
Reviewed by: Paul Dagnelie <[email protected]>
Reviewed by: Robert Mustacchi <[email protected]>
Reviewed-by: Giuseppe Di Natale <[email protected]>
Approved by: Richard Lowe <[email protected]>
Ported-by: Brian Behlendorf <[email protected]>
OpenZFS-issue: https://www.illumos.org/issues/7603
OpenZFS-commit: https://github.com/openzfs/openzfs/commit/99aa8b5
Closes #5586
-rw-r--r-- | module/zfs/dmu.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/module/zfs/dmu.c b/module/zfs/dmu.c index 82bcedf0d..fec02eb8b 100644 --- a/module/zfs/dmu.c +++ b/module/zfs/dmu.c @@ -1143,13 +1143,13 @@ xuio_stat_fini(void) } void -xuio_stat_wbuf_copied() +xuio_stat_wbuf_copied(void) { XUIOSTAT_BUMP(xuiostat_wbuf_copied); } void -xuio_stat_wbuf_nocopy() +xuio_stat_wbuf_nocopy(void) { XUIOSTAT_BUMP(xuiostat_wbuf_nocopy); } |