diff options
author | David Howells <dhowells@redhat.com> | 2021-10-21 08:42:18 +0100 |
---|---|---|
committer | David Howells <dhowells@redhat.com> | 2022-01-07 13:41:01 +0000 |
commit | ecf5a6ce15f90d1fe6bc326c720d21fc0e73fc88 (patch) | |
tree | 5f9c548fc869bf7640c5ef167e310020bb7157cd /fs | |
parent | a70f6526267e9f5fbf958a69c6112938b0b14bc4 (diff) | |
download | linux-ecf5a6ce15f90d1fe6bc326c720d21fc0e73fc88.tar.bz2 |
cachefiles: Add a couple of tracepoints for logging errors
Add two trace points to log errors, one for vfs operations like mkdir or
create, and one for I/O operations, like read, write or truncate.
Also add the beginnings of a struct that is going to represent a data file
and place a debugging ID in it for the tracepoints to record.
Signed-off-by: David Howells <dhowells@redhat.com>
Reviewed-by: Jeff Layton <jlayton@kernel.org>
cc: linux-cachefs@redhat.com
Link: https://lore.kernel.org/r/163819625632.215744.17907340966178411033.stgit@warthog.procyon.org.uk/ # v1
Link: https://lore.kernel.org/r/163906926297.143852.18267924605548658911.stgit@warthog.procyon.org.uk/ # v2
Link: https://lore.kernel.org/r/163967135390.1823006.2512120406360156424.stgit@warthog.procyon.org.uk/ # v3
Link: https://lore.kernel.org/r/164021534029.640689.1875723624947577095.stgit@warthog.procyon.org.uk/ # v4
Diffstat (limited to 'fs')
-rw-r--r-- | fs/cachefiles/internal.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/fs/cachefiles/internal.h b/fs/cachefiles/internal.h index 1f2fea902d3e..b51146a29aca 100644 --- a/fs/cachefiles/internal.h +++ b/fs/cachefiles/internal.h @@ -62,6 +62,7 @@ struct cachefiles_cache { char *tag; /* cache binding tag */ }; +#include <trace/events/cachefiles.h> /* * error_inject.c |