blob: 214855fbd9b5443b9ba266dedfb570cda0440530 (
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
26
|
// Copyright (C) 2005, 2006 IBM Corp.
//
// This file is part of systemtap, and is free software. You can
// redistribute it and/or modify it under the terms of the GNU General
// Public License (GPL); either version 2, or (at your option) any
// later version.
function log_pagefault_tracedata(var_addr:long, var_rwflag:long)
%{
_lket_trace(_GROUP_PAGEFAULT, _HOOKID_PAGEFAULT, "%8b%1b",
THIS->var_addr, (_FMT_)((THIS->var_rwflag)?1:0));
%}
/* Record the page fault event */
probe addevent.pagefault
+= _addevent.pagefault
{
update_record()
}
probe _addevent.pagefault
= vm.pagefault
{
log_pagefault_tracedata($address, $write_access)
}
|