Displaying 2 results from an estimated 2 matches for "rfs3call".
2008 Nov 17
0
Overhead evaluation of my nfsv3client probe implementation
...05%
For operations like read the max ratio goes up to 10%
For operations like write, the max ratio is even more than 40%
(Detail of the result in attachment)
To make improvement, I have following approaches. I would like to hear
your feedback to them.
1. add an argument to rfscall() and rfs3call(), pass XID as an parameter
pro: little performance overhead
con: change all the code that calls rfs3call() and rfscall(), even
they are not related to nfs3 client
2. insert XID into some argument of rfscall() and rfs3call()
pro: little performance overhead
con: change all t...
2008 Oct 30
7
Is there any way to check if DTrace is running or a DTrace probe is enabled?
Hi,
I am adding DTrace probes within NFS v3 client. In my current
implementation, I use some tsd_*() functions and kmem_zalloc() function.
These functions might be heavy and affect the performance. I want to
call this function only when DTrace is running or the DTrace probes are
enable. So is there a way to check DTrace is running or DTrace probe is
enabled?
Regards,
Danhua