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-10-14 14:17:28 -0700
commitc44d956ad25bba8e0c1a86d40e66fafce1a09563 (patch)
tree6f3e5dba69dbad776607aa3d474f4f1bccb04e1d
parentefd4901deadd9bc88149a2073fce4ec83f2de225 (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 558caf6b748a..9997f20d7a7d 100644
--- a/fs/xfs/xfs_bmap_util.c
+++ b/fs/xfs/xfs_bmap_util.c
@@ -828,7 +828,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;
@@ -1012,7 +1012,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)
@@ -1150,7 +1150,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)
@@ -1220,7 +1220,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 18b244875c58..1b007f1ec18b 100644
--- a/fs/xfs/xfs_file.c
+++ b/fs/xfs/xfs_file.c
@@ -1106,7 +1106,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 3622b2c1430d..613a34fbc8f0 100644
--- a/fs/xfs/xfs_trace.h
+++ b/fs/xfs/xfs_trace.h
@@ -815,11 +815,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);
@@ -1608,6 +1603,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),