diff --git a/drivers/ufs/core/ufshcd.c b/drivers/ufs/core/ufshcd.c index c530a514e95e..02229e3c34b1 100644 --- a/drivers/ufs/core/ufshcd.c +++ b/drivers/ufs/core/ufshcd.c @@ -45,6 +45,8 @@ #undef CREATE_TRACE_POINTS #include +EXPORT_TRACEPOINT_SYMBOL_GPL(ufshcd_command); + #define UFSHCD_ENABLE_INTRS (UTP_TRANSFER_REQ_COMPL |\ UTP_TASK_REQ_COMPL |\ UFSHCD_ERROR_MASK) diff --git a/fs/f2fs/checkpoint.c b/fs/f2fs/checkpoint.c index 2f3af88ef0b4..1490eb4603bd 100644 --- a/fs/f2fs/checkpoint.c +++ b/fs/f2fs/checkpoint.c @@ -22,6 +22,8 @@ #include #include +EXPORT_TRACEPOINT_SYMBOL_GPL(f2fs_write_checkpoint); + #define DEFAULT_CHECKPOINT_IOPRIO (IOPRIO_PRIO_VALUE(IOPRIO_CLASS_RT, 3)) static struct kmem_cache *ino_entry_slab; diff --git a/fs/f2fs/file.c b/fs/f2fs/file.c index 07150c68e69b..4e93bd6f34c0 100644 --- a/fs/f2fs/file.c +++ b/fs/f2fs/file.c @@ -38,6 +38,9 @@ #undef CREATE_TRACE_POINTS #include +EXPORT_TRACEPOINT_SYMBOL_GPL(f2fs_sync_file_enter); +EXPORT_TRACEPOINT_SYMBOL_GPL(f2fs_sync_file_exit); + vm_fault_t f2fs_filemap_fault(struct vm_fault *vmf) { struct inode *inode = file_inode(vmf->vma->vm_file); diff --git a/fs/f2fs/gc.c b/fs/f2fs/gc.c index 8b5a55b72264..cdaf3e5208e1 100644 --- a/fs/f2fs/gc.c +++ b/fs/f2fs/gc.c @@ -23,6 +23,9 @@ #include "iostat.h" #include +EXPORT_TRACEPOINT_SYMBOL_GPL(f2fs_gc_begin); +EXPORT_TRACEPOINT_SYMBOL_GPL(f2fs_gc_end); + static struct kmem_cache *victim_entry_slab; static unsigned int count_bits(const unsigned long *addr,