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 148066 Details for
Bug 227365
diskdumpmsg fails with dumps from large memory 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]
diskdumpmsg.diff
diskdumpmsg.diff (text/plain), 1.81 KB, created by
Nobuhiro Tachino
on 2007-02-14 16:51:09 UTC
(
hide
)
Description:
diskdumpmsg.diff
Filename:
MIME Type:
Creator:
Nobuhiro Tachino
Created:
2007-02-14 16:51:09 UTC
Size:
1.81 KB
patch
obsolete
>Index: diskdumpmsg >=================================================================== >RCS file: /opt/cvsroot/diskdumputils/diskdumpmsg,v >retrieving revision 1.12 >diff -u -p -r1.12 diskdumpmsg >--- diskdumpmsg 5 Jul 2006 20:33:05 -0000 1.12 >+++ diskdumpmsg 13 Feb 2007 23:51:58 -0000 >@@ -674,9 +674,6 @@ class CompressedVmcore(Vmcore): > > ofile = file(filename, "w") > >- self.fd.seek(self.pd_offset) >- page_desc_raw = self.fd.read(pd_size * self.header.max_mapnr) >- > # read each pages and write it to the temporary file. If compressed, > # write uncompressed data. > >@@ -692,7 +689,10 @@ class CompressedVmcore(Vmcore): > ofile.seek(self.blocksize, 1) > continue > >- page_desc = PageDesc(page_desc_raw[idx * pd_size : (idx + 1) * pd_size ]) >+ self.fd.seek(self.pd_offset + idx * pd_size) >+ page_desc_raw = self.fd.read(pd_size) >+ >+ page_desc = PageDesc(page_desc_raw) > self.fd.seek(page_desc.offset) > page_data = self.fd.read(page_desc.size) > >Index: diskdumputils.spec >=================================================================== >RCS file: /opt/cvsroot/diskdumputils/diskdumputils.spec,v >retrieving revision 1.238 >diff -u -p -r1.238 diskdumputils.spec >--- diskdumputils.spec 2 Feb 2007 19:36:55 -0000 1.238 >+++ diskdumputils.spec 13 Feb 2007 23:51:58 -0000 >@@ -1,6 +1,6 @@ > Summary: diskdump utilities > Name: diskdumputils >-Version: 1.3.26 >+Version: 1.3.27 > Release: 0 > Source0: %{name}-%{version}.tar.gz > License: GPL >@@ -71,6 +71,8 @@ fi > /etc/diskdump/mail_template.us > > %changelog >+* Tue Feb 13 2007 Nobuhiro Tachino (1.3.27) >+- diskdumpmsg fails on large memory systems > * Fri Feb 02 2007 Nobuhiro Tachino (1.3.26) > - added aacraid to supported adapter list in README > * Thu Dec 07 2006 Akira Imamura (1.3.25)
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 227365
: 148066