login
Header Space

 
 

Fix for __you_cannot_kmalloc_that_much failure with gcc 3.2

Score:
Previous message: [thread] [date] [author]
Next message: [thread] [date] [author]
To: Andrew Morton <akpm@...>
Cc: Dave Airlie <airlied@...>, Christoph Lameter <clameter@...>, <kamalesh@...>, <linux-kernel@...>, <bunk@...>, <apw@...>, <balbir@...>
Date: Tuesday, January 8, 2008 - 8:34 am

On Tue, 8 Jan 2008 10:56:09 +0100, Jean Delvare wrote:

And here you go, this is a unified patch fixing both bugs. The dmi-id
part is unchanged. Testers and reviewers are welcome.

* * * * *

gcc 3.2 has a hard time coping with the code in dmi_id_init():

drivers/built-in.o(.init.text+0x789e): In function `dmi_id_init':
: undefined reference to `__you_cannot_kmalloc_that_much'
make: *** [.tmp_vmlinux1] Error 1

Moving half of the code to a separate function seems to help. This is
a no-op for gcc 4.1 which will successfully inline the code anyway.

Tested-by: Kamalesh Babulal <kamalesh@linux.vnet.ibm.com>

A similar problem has been reported in snd_mixer_oss_build_input(),
fix it as well.

Signed-off-by: Jean Delvare <khali@linux-fr.org>
Cc: Dave Airlie <airlied@linux.ie>
---
 drivers/firmware/dmi-id.c  |   17 +++++--
 sound/core/oss/mixer_oss.c |  101 +++++++++++++++++++++++++++-----------------
 2 files changed, 75 insertions(+), 43 deletions(-)

--- linux-2.6.24-rc7.orig/drivers/firmware/dmi-id.c	2008-01-08 12:57:48.000000000 +0100
+++ linux-2.6.24-rc7/drivers/firmware/dmi-id.c	2008-01-08 13:06:15.000000000 +0100
@@ -175,12 +175,9 @@ static struct device *dmi_dev;
 
 extern int dmi_available;
 
-static int __init dmi_id_init(void)
+static void __init dmi_id_init_attr_table(void)
 {
-	int ret, i;
-
-	if (!dmi_available)
-		return -ENODEV;
+	int i;
 
 	/* Not necessarily all DMI fields are available on all
 	 * systems, hence let's built an attribute table of just
@@ -205,6 +202,16 @@ static int __init dmi_id_init(void)
 	ADD_DMI_ATTR(chassis_serial,    DMI_CHASSIS_SERIAL);
 	ADD_DMI_ATTR(chassis_asset_tag, DMI_CHASSIS_ASSET_TAG);
 	sys_dmi_attributes[i++] = &sys_dmi_modalias_attr.attr;
+}
+
+static int __init dmi_id_init(void)
+{
+	int ret;
+
+	if (!dmi_available)
+		return -ENODEV;
+
+	dmi_id_init_attr_table();
 
 	ret = class_register(&dmi_class);
 	if (ret)
--- linux-2.6.24-rc7.orig/sound/core/oss/mixer_oss.c	2008-01-08 12:57:48.000000000 +0100
+++ linux-2.6.24-rc7/sound/core/oss/mixer_oss.c	2008-01-08 13:21:12.000000000 +0100
@@ -925,6 +925,68 @@ static void mixer_slot_clear(struct snd_
 	rslot->number = idx;
 }
 
+/* In a separate function to keep gcc 3.2 happy - do NOT merge this in
+   snd_mixer_oss_build_input! */
+static int snd_mixer_oss_build_test_all(struct snd_mixer_oss *mixer,
+					struct snd_mixer_oss_assign_table *ptr,
+					struct slot *slot)
+{
+	char str[64];
+	int err;
+
+	err = snd_mixer_oss_build_test(mixer, slot, ptr->name, ptr->index,
+				       SNDRV_MIXER_OSS_ITEM_GLOBAL);
+	if (err)
+		return err;
+	sprintf(str, "%s Switch", ptr->name);
+	err = snd_mixer_oss_build_test(mixer, slot, str, ptr->index,
+				       SNDRV_MIXER_OSS_ITEM_GSWITCH);
+	if (err)
+		return err;
+	sprintf(str, "%s Route", ptr->name);
+	err = snd_mixer_oss_build_test(mixer, slot, str, ptr->index,
+				       SNDRV_MIXER_OSS_ITEM_GROUTE);
+	if (err)
+		return err;
+	sprintf(str, "%s Volume", ptr->name);
+	err = snd_mixer_oss_build_test(mixer, slot, str, ptr->index,
+				       SNDRV_MIXER_OSS_ITEM_GVOLUME);
+	if (err)
+		return err;
+	sprintf(str, "%s Playback Switch", ptr->name);
+	err = snd_mixer_oss_build_test(mixer, slot, str, ptr->index,
+				       SNDRV_MIXER_OSS_ITEM_PSWITCH);
+	if (err)
+		return err;
+	sprintf(str, "%s Playback Route", ptr->name);
+	err = snd_mixer_oss_build_test(mixer, slot, str, ptr->index,
+				       SNDRV_MIXER_OSS_ITEM_PROUTE);
+	if (err)
+		return err;
+	sprintf(str, "%s Playback Volume", ptr->name);
+	err = snd_mixer_oss_build_test(mixer, slot, str, ptr->index,
+				       SNDRV_MIXER_OSS_ITEM_PVOLUME);
+	if (err)
+		return err;
+	sprintf(str, "%s Capture Switch", ptr->name);
+	err = snd_mixer_oss_build_test(mixer, slot, str, ptr->index,
+				       SNDRV_MIXER_OSS_ITEM_CSWITCH);
+	if (err)
+		return err;
+	sprintf(str, "%s Capture Route", ptr->name);
+	err = snd_mixer_oss_build_test(mixer, slot, str, ptr->index,
+				       SNDRV_MIXER_OSS_ITEM_CROUTE);
+	if (err)
+		return err;
+	sprintf(str, "%s Capture Volume", ptr->name);
+	err = snd_mixer_oss_build_test(mixer, slot, str, ptr->index,
+				       SNDRV_MIXER_OSS_ITEM_CVOLUME);
+	if (err)
+		return err;
+
+	return 0;
+}
+
 /*
  * build an OSS mixer element.
  * ptr_allocated means the entry is dynamically allocated (change via proc file).
@@ -944,44 +1006,7 @@ static int snd_mixer_oss_build_input(str
 
 	memset(&slot, 0, sizeof(slot));
 	memset(slot.numid, 0xff, sizeof(slot.numid)); /* ID_UNKNOWN */
-	if (snd_mixer_oss_build_test(mixer, &slot, ptr->name, ptr->index,
-				     SNDRV_MIXER_OSS_ITEM_GLOBAL))
-		return 0;
-	sprintf(str, "%s Switch", ptr->name);
-	if (snd_mixer_oss_build_test(mixer, &slot, str, ptr->index,
-				     SNDRV_MIXER_OSS_ITEM_GSWITCH))
-		return 0;
-	sprintf(str, "%s Route", ptr->name);
-	if (snd_mixer_oss_build_test(mixer, &slot, str, ptr->index,
-				     SNDRV_MIXER_OSS_ITEM_GROUTE))
-		return 0;
-	sprintf(str, "%s Volume", ptr->name);
-	if (snd_mixer_oss_build_test(mixer, &slot, str, ptr->index,
-				     SNDRV_MIXER_OSS_ITEM_GVOLUME))
-		return 0;
-	sprintf(str, "%s Playback Switch", ptr->name);
-	if (snd_mixer_oss_build_test(mixer, &slot, str, ptr->index,
-				     SNDRV_MIXER_OSS_ITEM_PSWITCH))
-		return 0;
-	sprintf(str, "%s Playback Route", ptr->name);
-	if (snd_mixer_oss_build_test(mixer, &slot, str, ptr->index,
-				     SNDRV_MIXER_OSS_ITEM_PROUTE))
-		return 0;
-	sprintf(str, "%s Playback Volume", ptr->name);
-	if (snd_mixer_oss_build_test(mixer, &slot, str, ptr->index,
-				     SNDRV_MIXER_OSS_ITEM_PVOLUME))
-		return 0;
-	sprintf(str, "%s Capture Switch", ptr->name);
-	if (snd_mixer_oss_build_test(mixer, &slot, str, ptr->index,
-				     SNDRV_MIXER_OSS_ITEM_CSWITCH))
-		return 0;
-	sprintf(str, "%s Capture Route", ptr->name);
-	if (snd_mixer_oss_build_test(mixer, &slot, str, ptr->index,
-				     SNDRV_MIXER_OSS_ITEM_CROUTE))
-		return 0;
-	sprintf(str, "%s Capture Volume", ptr->name);
-	if (snd_mixer_oss_build_test(mixer, &slot, str, ptr->index,
-				     SNDRV_MIXER_OSS_ITEM_CVOLUME))
+	if (snd_mixer_oss_build_test_all(mixer, ptr, &slot))
 		return 0;
 	down_read(&mixer->card->controls_rwsem);
 	if (ptr->index == 0 && (kctl = snd_mixer_oss_test_id(mixer, "Capture Source", 0)) != NULL) {


-- 
Jean Delvare
--
Previous message: [thread] [date] [author]
Next message: [thread] [date] [author]

Messages in current thread:
Linux 2.6.24-rc7, Linus Torvalds, (Sun Jan 6, 6:19 pm)
Re: Linux 2.6.24-rc7, Willy Tarreau, (Tue Jan 8, 9:17 pm)
Re: Linux 2.6.24-rc7: sparc64: WARNING: at kernel/lockdep_pr..., Mariusz Kozlowski, (Wed Jan 9, 12:31 pm)
Re: Linux 2.6.24-rc7, J.A. , (Mon Jan 7, 8:50 pm)
Re: Linux 2.6.24-rc7, Tejun Heo, (Tue Jan 8, 9:56 pm)
Re: Linux 2.6.24-rc7, J.A. , (Thu Jan 10, 5:25 am)
Re: Linux 2.6.24-rc7, Tejun Heo, (Thu Jan 10, 9:10 am)
Re: Linux 2.6.24-rc7, J.A. , (Sun Jan 13, 7:19 pm)
Re: Linux 2.6.24-rc7, Tejun Heo, (Sun Jan 13, 7:57 pm)
Re: Linux 2.6.24-rc7, J.A. , (Mon Jan 14, 7:38 pm)
Re: Linux 2.6.24-rc7, Tejun Heo, (Mon Jan 14, 7:56 pm)
Re: Linux 2.6.24-rc7, Avuton Olrich, (Tue Jan 8, 9:32 pm)
Re: Linux 2.6.24-rc7, Alejandro Riveira , (Mon Jan 7, 12:14 pm)
Re: Linux 2.6.24-rc7, Michael Buesch, (Mon Jan 7, 12:24 pm)
Re: Linux 2.6.24-rc7, Alejandro Riveira , (Mon Jan 7, 12:52 pm)
Re: Linux 2.6.24-rc7, Michael Buesch, (Mon Jan 7, 1:30 pm)
Re: Linux 2.6.24-rc7, Alejandro Riveira , (Mon Jan 7, 4:23 pm)
Re: Linux 2.6.24-rc7, Michael Buesch, (Tue Jan 8, 11:30 am)
Re: Linux 2.6.24-rc7, Alejandro Riveira , (Tue Jan 8, 11:55 am)
Re: Linux 2.6.24-rc7, Alejandro Riveira , (Mon Jan 7, 11:53 am)
section mismatch warning in head_64.S, Sam Ravnborg, (Mon Jan 7, 12:31 pm)
Re: section mismatch warning in head_64.S, Alejandro Riveira , (Tue Jan 15, 6:18 am)
smpboot_64 section mismatch warning, Sam Ravnborg, (Mon Jan 7, 12:27 pm)
Re: smpboot_64 section mismatch warning, David Howells, (Tue Jan 8, 7:17 am)
Re: smpboot_64 section mismatch warning, David Howells, (Mon Jan 7, 7:27 pm)
Re: smpboot_64 section mismatch warning, Alejandro Riveira , (Tue Jan 8, 5:14 am)
Re: Linux 2.6.24-rc7 kernel BUG at kernel/sched.c:5156!, Kamalesh Babulal, (Mon Jan 7, 8:13 am)
Fix for __you_cannot_kmalloc_that_much failure with gcc 3.2, Jean Delvare, (Tue Jan 8, 8:34 am)
Re: Linux 2.6.24-rc7 Build Failure on headers_install, Kamalesh Babulal, (Mon Jan 7, 4:48 am)
Re: Linux 2.6.24-rc7 Build Failure on headers_install, Sam Ravnborg, (Mon Jan 7, 6:12 am)
Re: Linux 2.6.24-rc7 Build Failure on headers_install, Kamalesh Babulal, (Tue Jan 8, 6:51 am)
Re: Linux 2.6.24-rc7 Build Failure on headers_install, Sam Ravnborg, (Tue Jan 8, 9:10 am)
Re: Linux 2.6.24-rc7, Mark Lord, (Sun Jan 6, 7:52 pm)
Re: Linux 2.6.24-rc7, Linus Torvalds, (Sun Jan 6, 8:08 pm)
Re: Linux 2.6.24-rc7, Tejun Heo, (Sun Jan 6, 8:35 pm)
speck-geostationary