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 156969 Details for
Bug 244152
ps truncates eip and esp to 32-bit values on 64-bit systems
[?]
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]
Proposed patch
procps-3.2.7-ps-eip64.patch (text/plain), 2.05 KB, created by
Tomas Smetana
on 2007-06-14 09:14:54 UTC
(
hide
)
Description:
Proposed patch
Filename:
MIME Type:
Creator:
Tomas Smetana
Created:
2007-06-14 09:14:54 UTC
Size:
2.05 KB
patch
obsolete
>--- procps-3.2.7/ps/ps.1.eip64 2007-06-14 11:08:35.000000000 +0200 >+++ procps-3.2.7/ps/ps.1 2007-06-14 11:03:28.000000000 +0200 >@@ -1156,6 +1156,14 @@ > or\ a\ decimal representation otherwise. > T} > >+rip RIP T{ >+64-bit instruction pointer. >+T} >+ >+rsp RSP T{ >+64-bit stack pointer. >+T} >+ > rss RSS T{ > resident set size, the non\-swapped physical memory that > a task has used (in\ kiloBytes). >--- procps-3.2.7/ps/output.c.eip64 2007-06-14 11:08:24.000000000 +0200 >+++ procps-3.2.7/ps/output.c 2007-06-14 10:58:21.000000000 +0200 >@@ -764,10 +764,18 @@ > return snprintf(outbuf, COLWID, "%08x", (unsigned)(pp->kstk_esp)); > } > >+static int pr_rsp(char *restrict const outbuf, const proc_t *restrict const pp){ >+ return snprintf(outbuf, COLWID, "%016lx", (unsigned long)(pp->kstk_esp)); >+} >+ > static int pr_eip(char *restrict const outbuf, const proc_t *restrict const pp){ > return snprintf(outbuf, COLWID, "%08x", (unsigned)(pp->kstk_eip)); > } > >+static int pr_rip(char *restrict const outbuf, const proc_t *restrict const pp){ >+ return snprintf(outbuf, COLWID, "%016lx", (unsigned long)(pp->kstk_eip)); >+} >+ > /* This function helps print old-style time formats */ > static int old_time_helper(char *dst, unsigned long long t, unsigned long long rel) { > if(!t) return snprintf(dst, COLWID, " -"); >@@ -1403,7 +1411,9 @@ > {"resident", "RES", pr_nop, sr_resident, 5,MEM, LNX, PO|RIGHT}, > {"rgid", "RGID", pr_rgid, sr_rgid, 5, 0, XXX, ET|RIGHT}, > {"rgroup", "RGROUP", pr_rgroup, sr_rgroup, 8, GRP, U98, ET|USER}, /* was 8 wide */ >+{"rip", "RIP", pr_rip, sr_kstk_eip, 16, 0, LNX, TO|RIGHT}, > {"rlink", "RLINK", pr_nop, sr_nop, 8, 0, BSD, AN|RIGHT}, >+{"rsp", "RSP", pr_rsp, sr_kstk_eip, 16, 0, LNX, TO|RIGHT}, > {"rss", "RSS", pr_rss, sr_rss, 5, 0, XXX, PO|RIGHT}, /* was 5 wide */ > {"rssize", "RSS", pr_rss, sr_vm_rss, 5, 0, DEC, PO|RIGHT}, /*rsz*/ > {"rsz", "RSZ", pr_rss, sr_vm_rss, 5, 0, BSD, PO|RIGHT}, /*rssize*/
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 244152
: 156969