diff options
author | David Smith <dsmith@redhat.com> | 2009-06-02 11:21:24 -0500 |
---|---|---|
committer | David Smith <dsmith@redhat.com> | 2009-06-09 15:31:30 -0500 |
commit | 43229357282fd51eb1a3c7742932068873c27270 (patch) | |
tree | 232cb45f12e9072c26cea4f0e94bc7b3b5250856 | |
parent | b56f0c8b802fbdf93f40b4a233095ea970cfed2b (diff) | |
download | systemtap-steved-43229357282fd51eb1a3c7742932068873c27270.tar.gz systemtap-steved-43229357282fd51eb1a3c7742932068873c27270.tar.xz systemtap-steved-43229357282fd51eb1a3c7742932068873c27270.zip |
Fixed cut-and-paste error.
* runtime/task_finder.c (__stp_call_mmap_callbacks_for_task): Fixed
cut-and-paste error.
-rw-r--r-- | runtime/task_finder.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/task_finder.c b/runtime/task_finder.c index dab56170..672b21f1 100644 --- a/runtime/task_finder.c +++ b/runtime/task_finder.c @@ -1053,7 +1053,7 @@ __stp_call_mmap_callbacks_for_task(struct stap_task_finder_target *tgt, // This way they won't get deleted from // out under us. vma_cache_p->f_dentry = vma->vm_file->f_dentry; - dget(vma_cache_p->f_path); + dget(vma_cache_p->f_dentry); vma_cache_p->f_vfsmnt = vma->vm_file->f_vfsmnt; mntget(vma_cache_p->f_vfsmnt); #endif |