aboutsummaryrefslogtreecommitdiffstats
path: root/fs/xfs/xfs_log_priv.h
diff options
context:
space:
mode:
authorChristoph Hellwig <hch@lst.de>2015-06-22 09:44:47 +1000
committerDave Chinner <david@fromorbit.com>2015-06-22 09:44:47 +1000
commit5809d5e083a0e6c7121724635db2a1a6f9b90d52 (patch)
tree8573712332f347b0cb53cb54f8bf8299d9959e51 /fs/xfs/xfs_log_priv.h
parentxfs: return a void pointer from xfs_buf_offset (diff)
downloadlinux-dev-5809d5e083a0e6c7121724635db2a1a6f9b90d52.tar.xz
linux-dev-5809d5e083a0e6c7121724635db2a1a6f9b90d52.zip
xfs: use void pointers in log validation helpers
Compared to char pointers this saves us a lot of casting effort. Also add another local variable to make the code easier to read. Signed-off-by: Christoph Hellwig <hch@lst.de> Reviewed-by: Brian Foster <bfoster@redhat.com> Signed-off-by: Dave Chinner <david@fromorbit.com>
Diffstat (limited to 'fs/xfs/xfs_log_priv.h')
-rw-r--r--fs/xfs/xfs_log_priv.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/xfs/xfs_log_priv.h b/fs/xfs/xfs_log_priv.h
index db7cbdeb2b42..1c87c8abfbed 100644
--- a/fs/xfs/xfs_log_priv.h
+++ b/fs/xfs/xfs_log_priv.h
@@ -409,7 +409,7 @@ struct xlog {
/* The following field are used for debugging; need to hold icloglock */
#ifdef DEBUG
- char *l_iclog_bak[XLOG_MAX_ICLOGS];
+ void *l_iclog_bak[XLOG_MAX_ICLOGS];
#endif
};