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.
20 lines
493 B
Plaintext
20 lines
493 B
Plaintext
probe nfs.aop.readpages !, nfs.aop.readpage {
|
|
log(name);
|
|
printf("dev=%d\n", dev);
|
|
printf("ino=%d\n", ino);
|
|
printf("nr_pages=%d\n", nr_pages);
|
|
printf("file=%d\n", file);
|
|
printf("rpages=%d\n", rpages);
|
|
printf("rsize=%d\n", rsize);
|
|
printf("argstr=%s\n", argstr);
|
|
printf("size=%d\n", size);
|
|
printf("units=%s\n", units);
|
|
}
|
|
|
|
probe nfs.aop.readpages.return !, nfs.aop.readpage.return {
|
|
log(name);
|
|
printf("retstr=%s\n", retstr);
|
|
printf("size=%d\n", size);
|
|
printf("units=%s\n", units);
|
|
}
|