Login
[x]
Log in using an account from:
Fedora Account System
Red Hat Associate
Red Hat Customer
Or login using a Red Hat Bugzilla account
Forgot Password
Login:
Hide Forgot
Create an Account
Red Hat Bugzilla – Attachment 294150 Details for
Bug 423521
memory leak on size-8192 buckets with NFSV4
[?]
New
Simple Search
Advanced Search
My Links
Browse
Requests
Reports
Current State
Search
Tabular reports
Graphical reports
Duplicates
Other Reports
User Changes
Plotly Reports
Bug Status
Bug Severity
Non-Defaults
|
Product Dashboard
Help
Page Help!
Bug Writing Guidelines
What's new
Browser Support Policy
5.0.4.rh83 Release notes
FAQ
Guides index
User guide
Web Services
Contact
Legal
This site requires JavaScript to be enabled to function correctly, please enable it.
[patch]
stap script for looking at size 8192 kmallocs and their corresponding kfrees
kmalloc.stp (text/plain), 414 bytes, created by
Jeff Layton
on 2008-02-06 21:12:06 UTC
(
hide
)
Description:
stap script for looking at size 8192 kmallocs and their corresponding kfrees
Filename:
MIME Type:
Creator:
Jeff Layton
Created:
2008-02-06 21:12:06 UTC
Size:
414 bytes
patch
obsolete
>global kmalloc >global kmsize > >probe kernel.function("__kmalloc") >{ > if ($size > 4096 && $size < 8192) { > kmsize = $size; > } >} > >probe kernel.function("__kmalloc").return >{ > if (kmsize) { > printf("size = %d, addr = %p\n", kmsize, $return); > print_backtrace(); > kmalloc[$return] = kmsize; > } > kmsize = 0; >} > >probe kernel.function("kfree") >{ > if (kmalloc[$objp] != 0) { > printf("kfree: objp = %p\n", $objp); > } >}
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 423521
: 294150 |
294151
|
294563
|
295296
|
302874