Index: tapset/memory.stp =================================================================== RCS file: /cvs/systemtap/src/tapset/memory.stp,v retrieving revision 1.4 diff -U2 -u -r1.4 memory.stp --- tapset/memory.stp 7 Nov 2006 09:26:24 -0000 1.4 +++ tapset/memory.stp 21 Mar 2007 14:40:27 -0000 @@ -27,4 +27,10 @@ } +probe vm.pagefault.return = kernel.function( + %( kernel_v >= "2.6.13" %? "__handle_mm_fault" %: "handle_mm_fault" %) + ).return +{ +} + /* Return which node the given address belongs to in a NUMA system */ function addr_to_node:long(addr:long) /* pure */