blob: 904e146dbb30208d612fa448fc4a4feae0f0bff2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
/*
* To run:
* stap -g -I../tapset ext3_acl.stp
*/
probe module("ext3").function("ext3_get_acl")
{
printf(" ext3_get_acl: inode %p\n", $inode);
}
probe module("ext3").function("ext3_get_acl").return
{
if ($return)
printf(" ext3_get_acl: %s\n", acl_dump($return));
}
probe module("ext3").function("ext3_check_acl")
{
printf("ext3_check_acl: %s mask 0x%x\n",
inode_uid($inode), $mask);
}
probe module("ext3").function("ext3_check_acl").return
{
printf("ext3_check_acl: %d\n", $return);
}
probe begin { log("starting ext3_acl probe") }
probe end { log("ending ext3_acl probe") }
|