mirror of
https://github.com/FEX-Emu/linux.git
synced 2024-12-23 09:56:00 +00:00
cc668ab30b
Set up tracepoints to track read, write and commit, as well as pNFS reads and writes and commits to the data server. Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>
16 lines
370 B
C
16 lines
370 B
C
/*
|
|
* Copyright (c) 2013 Trond Myklebust <Trond.Myklebust@netapp.com>
|
|
*/
|
|
#include <linux/nfs_fs.h>
|
|
#include "nfs4_fs.h"
|
|
#include "internal.h"
|
|
|
|
#define CREATE_TRACE_POINTS
|
|
#include "nfs4trace.h"
|
|
|
|
#ifdef CONFIG_NFS_V4_1
|
|
EXPORT_TRACEPOINT_SYMBOL_GPL(nfs4_pnfs_read);
|
|
EXPORT_TRACEPOINT_SYMBOL_GPL(nfs4_pnfs_write);
|
|
EXPORT_TRACEPOINT_SYMBOL_GPL(nfs4_pnfs_commit_ds);
|
|
#endif
|