* [PATCH] memblks compile fixes
@ 2004-02-05 20:25 Jesse Barnes
2004-02-05 23:15 ` Andrew Morton
0 siblings, 1 reply; 2+ messages in thread
From: Jesse Barnes @ 2004-02-05 20:25 UTC (permalink / raw)
To: torvalds, akpm, linux-kernel, linux-ia64
Looks like Jes forgot missed some conversions in his NR_MEMBLKS removal
patch. Here's are the fixes to get ia64 going again.
Thanks,
Jesse
=== arch/ia64/kernel/acpi.c 1.60 vs edited ==--- 1.60/arch/ia64/kernel/acpi.c Tue Feb 3 21:35:17 2004
+++ edited/arch/ia64/kernel/acpi.c Thu Feb 5 11:46:50 2004
@@ -395,7 +395,7 @@
size = ma->length_hi;
size = (size << 32) | ma->length_lo;
- if (num_memblks >= NR_MEMBLKS) {
+ if (num_node_memblks >= NR_NODE_MEMBLKS) {
printk(KERN_ERR "Too many mem chunks in SRAT. Ignoring %ld MBytes at %lx\n",
size/(1024*1024), paddr);
return;
=== arch/ia64/sn/kernel/setup.c 1.30 vs edited ==--- 1.30/arch/ia64/sn/kernel/setup.c Tue Feb 3 21:39:58 2004
+++ edited/arch/ia64/sn/kernel/setup.c Thu Feb 5 11:46:31 2004
@@ -136,7 +136,7 @@
int nid;
nid = pxm_to_nid_map[pxm];
- for (i = 0; i < num_memblks; i++) {
+ for (i = 0; i < num_node_memblks; i++) {
if (node_memblk[i].nid = nid) {
return NASID_GET(node_memblk[i].start_paddr);
}
^ permalink raw reply [flat|nested] 2+ messages in thread* Re: [PATCH] memblks compile fixes
2004-02-05 20:25 [PATCH] memblks compile fixes Jesse Barnes
@ 2004-02-05 23:15 ` Andrew Morton
0 siblings, 0 replies; 2+ messages in thread
From: Andrew Morton @ 2004-02-05 23:15 UTC (permalink / raw)
To: Jesse Barnes; +Cc: torvalds, linux-kernel, linux-ia64, Brown, Len
jbarnes@sgi.com (Jesse Barnes) wrote:
>
> Looks like Jes forgot missed some conversions in his NR_MEMBLKS removal
> patch. Here's are the fixes to get ia64 going again.
It seems that Len has fixed one of these in the ACPI tree.
Len, were you planning on a merge soon? (You should...)
>
> === arch/ia64/kernel/acpi.c 1.60 vs edited ==> --- 1.60/arch/ia64/kernel/acpi.c Tue Feb 3 21:35:17 2004
> +++ edited/arch/ia64/kernel/acpi.c Thu Feb 5 11:46:50 2004
> @@ -395,7 +395,7 @@
> size = ma->length_hi;
> size = (size << 32) | ma->length_lo;
>
> - if (num_memblks >= NR_MEMBLKS) {
> + if (num_node_memblks >= NR_NODE_MEMBLKS) {
> printk(KERN_ERR "Too many mem chunks in SRAT. Ignoring %ld MBytes at %lx\n",
> size/(1024*1024), paddr);
> return;
> === arch/ia64/sn/kernel/setup.c 1.30 vs edited ==> --- 1.30/arch/ia64/sn/kernel/setup.c Tue Feb 3 21:39:58 2004
> +++ edited/arch/ia64/sn/kernel/setup.c Thu Feb 5 11:46:31 2004
> @@ -136,7 +136,7 @@
> int nid;
>
> nid = pxm_to_nid_map[pxm];
> - for (i = 0; i < num_memblks; i++) {
> + for (i = 0; i < num_node_memblks; i++) {
> if (node_memblk[i].nid = nid) {
> return NASID_GET(node_memblk[i].start_paddr);
> }
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2004-02-05 23:15 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2004-02-05 20:25 [PATCH] memblks compile fixes Jesse Barnes
2004-02-05 23:15 ` Andrew Morton
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox