The patch titled
pnpacpi: print resource shortage message only once (more)
has been added to the -mm tree. Its filename is
pnpacpi-print-resource-shortage-message-only-once-more.patch
Before you just go and hit "reply", please:
a) Consider who else should be cc'ed
b) Prefer to cc a suitable mailing list as well
c) Ideally: find the original patch on the mailing list and do a
reply-to-all to that, adding suitable additional cc's
*** Remember to use Documentation/SubmitChecklist when testing your code ***
See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find
out what to do about this
The current -mm tree may be found at http://userweb.kernel.org/~akpm/mmotm/
------------------------------------------------------
Subject: pnpacpi: print resource shortage message only once (more)
From: Len Brown <[EMAIL PROTECTED]>
Wups, previous patch was ineffective in 2 cases.
http://bugzilla.kernel.org/show_bug.cgi?id=9535
Signed-off-by: Len Brown <[EMAIL PROTECTED]>
Reported-by: "Hartkopp, Oliver (K-EFE/E)" <[EMAIL PROTECTED]>
Signed-off-by: Andrew Morton <[EMAIL PROTECTED]>
---
drivers/pnp/pnpacpi/rsparser.c | 2 ++
1 file changed, 2 insertions(+)
diff -puN
drivers/pnp/pnpacpi/rsparser.c~pnpacpi-print-resource-shortage-message-only-once-more
drivers/pnp/pnpacpi/rsparser.c
---
a/drivers/pnp/pnpacpi/rsparser.c~pnpacpi-print-resource-shortage-message-only-once-more
+++ a/drivers/pnp/pnpacpi/rsparser.c
@@ -210,6 +210,7 @@ static void pnpacpi_parse_allocated_iore
} else {
printk(KERN_ERR "pnpacpi: exceeded the max number of IO "
"resources: %d \n", PNP_MAX_PORT);
+ warned = 1;
}
}
@@ -236,6 +237,7 @@ static void pnpacpi_parse_allocated_memr
} else {
printk(KERN_ERR "pnpacpi: exceeded the max number of mem "
"resources: %d\n", PNP_MAX_MEM);
+ warned = 1;
}
}
_
Patches currently in -mm which might be from [EMAIL PROTECTED] are
pnpacpi-print-resource-shortage-message-only-once-more.patch
git-acpi.patch
git-libata-all.patch
git-x86.patch
-
To unsubscribe from this list: send the line "unsubscribe mm-commits" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at http://vger.kernel.org/majordomo-info.html