|
@@ -134,6 +134,12 @@ static long __init lmb_add_region(struct lmb_region *rgn, unsigned long base,
|
|
|
unsigned long coalesced = 0;
|
|
|
long adjacent, i;
|
|
|
|
|
|
+ if ((rgn->cnt == 1) && (rgn->region[0].size == 0)) {
|
|
|
+ rgn->region[0].base = base;
|
|
|
+ rgn->region[0].size = size;
|
|
|
+ return 0;
|
|
|
+ }
|
|
|
+
|
|
|
/* First try and coalesce this LMB with another. */
|
|
|
for (i=0; i < rgn->cnt; i++) {
|
|
|
unsigned long rgnbase = rgn->region[i].base;
|