8d5d041590
Find new home for downstream RHEL tests. Upstream them. The set of tests used for fedora gating stays intact: The gating tests are only those having the tier1 tag set in their main.fmf file. The testplan plans/ci.fmf filters the others out from gating. The set of Fedora gating tests stays the same as it was before this change.
13 lines
194 B
Plaintext
Executable File
13 lines
194 B
Plaintext
Executable File
#!/usr/bin/stap
|
|
|
|
# http://sourceware.org/systemtap/examples/network/nfsdtop.stp
|
|
|
|
probe nfsd.proc.lookup {
|
|
printf("%s %s\n", client_ip, filename);
|
|
}
|
|
|
|
probe timer.ms(100000) {
|
|
exit ();
|
|
}
|
|
|