summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDarrick J. Wong <djwong@kernel.org>2022-07-14 11:16:23 -0700
committerDarrick J. Wong <djwong@kernel.org>2022-11-09 19:08:15 -0800
commit59f8bca3c5e494751aaded276dc0366dc4b87a82 (patch)
tree509a0cc509f5ea8c9a9873e2be2dacc53ff0a26c
parentd37fc0121d807afed60fa1412eec0a25b049896f (diff)
xfs: capture the offset and length in fallocate tracepoints
Change the class of the fallocate tracepoints to capture the offset and length of the requested operation. Signed-off-by: Darrick J. Wong <djwong@kernel.org>
-rw-r--r--fs/xfs/xfs_bmap_util.c8
-rw-r--r--fs/xfs/xfs_file.c2
-rw-r--r--fs/xfs/xfs_trace.h10
3 files changed, 10 insertions, 10 deletions
diff --git a/fs/xfs/xfs_bmap_util.c b/fs/xfs/xfs_bmap_util.c
index 8319fd960638..82e1a3c7d3d0 100644
--- a/fs/xfs/xfs_bmap_util.c
+++ b/fs/xfs/xfs_bmap_util.c
@@ -826,7 +826,7 @@ xfs_alloc_file_space(
xfs_bmbt_irec_t imaps[1], *imapp;
int error;
- trace_xfs_alloc_file_space(ip);
+ trace_xfs_alloc_file_space(ip, offset, len);
if (xfs_is_shutdown(mp))
return -EIO;
@@ -1010,7 +1010,7 @@ xfs_free_file_space(
xfs_fileoff_t endoffset_fsb;
int done = 0, error;
- trace_xfs_free_file_space(ip);
+ trace_xfs_free_file_space(ip, offset, len);
error = xfs_qm_dqattach(ip);
if (error)
@@ -1148,7 +1148,7 @@ xfs_collapse_file_space(
ASSERT(xfs_isilocked(ip, XFS_IOLOCK_EXCL));
ASSERT(xfs_isilocked(ip, XFS_MMAPLOCK_EXCL));
- trace_xfs_collapse_file_space(ip);
+ trace_xfs_collapse_file_space(ip, offset, len);
error = xfs_free_file_space(ip, offset, len);
if (error)
@@ -1218,7 +1218,7 @@ xfs_insert_file_space(
ASSERT(xfs_isilocked(ip, XFS_IOLOCK_EXCL));
ASSERT(xfs_isilocked(ip, XFS_MMAPLOCK_EXCL));
- trace_xfs_insert_file_space(ip);
+ trace_xfs_insert_file_space(ip, offset, len);
error = xfs_bmap_can_insert_extents(ip, stop_fsb, shift_fsb);
if (error)
diff --git a/fs/xfs/xfs_file.c b/fs/xfs/xfs_file.c
index a296dbd2c828..fad5affdffab 100644
--- a/fs/xfs/xfs_file.c
+++ b/fs/xfs/xfs_file.c
@@ -1096,7 +1096,7 @@ xfs_file_fallocate(
*/
unsigned int blksize = i_blocksize(inode);
- trace_xfs_zero_file_space(ip);
+ trace_xfs_zero_file_space(ip, offset, len);
/* Unshare around the region to zero, if needed. */
if (xfs_inode_needs_cow_around(ip)) {
diff --git a/fs/xfs/xfs_trace.h b/fs/xfs/xfs_trace.h
index 4fd50ba02adc..8ff446d9d57b 100644
--- a/fs/xfs/xfs_trace.h
+++ b/fs/xfs/xfs_trace.h
@@ -817,11 +817,6 @@ DEFINE_INODE_EVENT(xfs_getattr);
DEFINE_INODE_EVENT(xfs_setattr);
DEFINE_INODE_EVENT(xfs_readlink);
DEFINE_INODE_EVENT(xfs_inactive_symlink);
-DEFINE_INODE_EVENT(xfs_alloc_file_space);
-DEFINE_INODE_EVENT(xfs_free_file_space);
-DEFINE_INODE_EVENT(xfs_zero_file_space);
-DEFINE_INODE_EVENT(xfs_collapse_file_space);
-DEFINE_INODE_EVENT(xfs_insert_file_space);
DEFINE_INODE_EVENT(xfs_readdir);
#ifdef CONFIG_XFS_POSIX_ACL
DEFINE_INODE_EVENT(xfs_get_acl);
@@ -1610,6 +1605,11 @@ DEFINE_SIMPLE_IO_EVENT(xfs_zero_eof);
DEFINE_SIMPLE_IO_EVENT(xfs_end_io_direct_write);
DEFINE_SIMPLE_IO_EVENT(xfs_end_io_direct_write_unwritten);
DEFINE_SIMPLE_IO_EVENT(xfs_end_io_direct_write_append);
+DEFINE_SIMPLE_IO_EVENT(xfs_alloc_file_space);
+DEFINE_SIMPLE_IO_EVENT(xfs_free_file_space);
+DEFINE_SIMPLE_IO_EVENT(xfs_zero_file_space);
+DEFINE_SIMPLE_IO_EVENT(xfs_collapse_file_space);
+DEFINE_SIMPLE_IO_EVENT(xfs_insert_file_space);
DECLARE_EVENT_CLASS(xfs_itrunc_class,
TP_PROTO(struct xfs_inode *ip, xfs_fsize_t new_size),