aboutsummaryrefslogtreecommitdiffstats
path: root/module/zfs/dsl_synctask.c
diff options
context:
space:
mode:
authorнаб <[email protected]>2021-12-12 16:06:44 +0100
committerBrian Behlendorf <[email protected]>2021-12-23 09:42:47 -0800
commit14e4e3cb9f5f232c92b579a12f4cb0a427ed54bf (patch)
treeabe4c4a23c198ba8a84a7cec96dd1dc7370101ee /module/zfs/dsl_synctask.c
parent868998220e64d3249744e7df141d07c6506548eb (diff)
module: zfs: fix unused, remove argsused
Reviewed-by: Brian Behlendorf <[email protected]> Signed-off-by: Ahelenia Ziemiańska <[email protected]> Closes #12844
Diffstat (limited to 'module/zfs/dsl_synctask.c')
-rw-r--r--module/zfs/dsl_synctask.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/module/zfs/dsl_synctask.c b/module/zfs/dsl_synctask.c
index 148e8fff2..9fc9d4011 100644
--- a/module/zfs/dsl_synctask.c
+++ b/module/zfs/dsl_synctask.c
@@ -32,10 +32,10 @@
#define DST_AVG_BLKSHIFT 14
-/* ARGSUSED */
static int
dsl_null_checkfunc(void *arg, dmu_tx_t *tx)
{
+ (void) arg, (void) tx;
return (0);
}