From 5043684ae51195fc8b7ce7ff15241f17fe23d993 Mon Sep 17 00:00:00 2001 From: Brian Behlendorf Date: Fri, 13 Jan 2017 15:33:14 -0800 Subject: 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 Reviewed by: Matthew Ahrens Reviewed by: Paul Dagnelie Reviewed by: Robert Mustacchi Reviewed-by: Giuseppe Di Natale Approved by: Richard Lowe Ported-by: Brian Behlendorf OpenZFS-issue: https://www.illumos.org/issues/7603 OpenZFS-commit: https://github.com/openzfs/openzfs/commit/99aa8b5 Closes #5586 --- module/zfs/dmu.c | 4 ++-- 1 file 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); } -- cgit v1.2.3