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 289707 Details for
Bug 425794
PCI allocation errors result in Xserver resetting the machine
[?]
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]
Fix for e820 rounding error
d-e820 (text/plain), 1.19 KB, created by
Richard Henderson
on 2007-12-15 21:19:57 UTC
(
hide
)
Description:
Fix for e820 rounding error
Filename:
MIME Type:
Creator:
Richard Henderson
Created:
2007-12-15 21:19:57 UTC
Size:
1.19 KB
patch
obsolete
>diff -rup BUILD/kernel-2.6.23/linux-2.6.23.x86_64/arch/x86_64/kernel/e820.c linux-2.6.23.x86_64-rth/arch/x86_64/kernel/e820.c >--- BUILD/kernel-2.6.23/linux-2.6.23.x86_64/arch/x86_64/kernel/e820.c 2007-10-09 13:31:38.000000000 -0700 >+++ linux-2.6.23.x86_64-rth/arch/x86_64/kernel/e820.c 2007-12-15 12:37:44.000000000 -0800 >@@ -363,7 +363,7 @@ void __init e820_print_map(char *who) > for (i = 0; i < e820.nr_map; i++) { > printk(KERN_INFO " %s: %016Lx - %016Lx ", who, > (unsigned long long) e820.map[i].addr, >- (unsigned long long) (e820.map[i].addr + e820.map[i].size)); >+ (unsigned long long) (e820.map[i].addr + e820.map[i].size) - 1); > switch (e820.map[i].type) { > case E820_RAM: printk("(usable)\n"); > break; >@@ -718,8 +718,8 @@ __init void e820_setup_gap(void) > while ((gapsize >> 4) > round) > round += round; > /* Fun with two's complement */ >- pci_mem_start = (gapstart + round) & -round; >+ pci_mem_start = (gapstart + round - 1) & -round; > >- printk(KERN_INFO "Allocating PCI resources starting at %lx (gap: %lx:%lx)\n", >- pci_mem_start, gapstart, gapsize); >+ printk(KERN_INFO "Allocating PCI resources starting at %lx (gap: %lx-%lx)\n", >+ pci_mem_start, gapstart, gapstart + gapsize - 1); > }
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 425794
: 289707 |
289708
|
289932
|
289933
|
289934