public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* unresolved emu10k1 synth symbols.
@ 2006-03-21  5:46 Dave Jones
  2006-03-21 10:53 ` Adrian Bunk
  2006-03-21 11:04 ` Takashi Iwai
  0 siblings, 2 replies; 8+ messages in thread
From: Dave Jones @ 2006-03-21  5:46 UTC (permalink / raw)
  To: tiwai; +Cc: Linux Kernel

I just noticed this whilst booting 2.6.16 on a test box

snd_emu10k1_synth: Unknown symbol snd_emu10k1_ptr_read
snd_emu10k1_synth: Unknown symbol snd_emu10k1_synth_copy_from_user
snd_emu10k1_synth: Unknown symbol snd_emu10k1_voice_free
snd_emu10k1_synth: Unknown symbol snd_emu10k1_synth_free
snd_emu10k1_synth: Unknown symbol snd_emu10k1_ptr_write
snd_emu10k1_synth: Unknown symbol snd_emu10k1_synth_bzero
snd_emu10k1_synth: Unknown symbol snd_emu10k1_voice_alloc
snd_emu10k1_synth: Unknown symbol snd_emu10k1_memblk_map
snd_emu10k1_synth: Unknown symbol snd_emu10k1_synth_alloc

This kernel was configured with CONFIG_SND_EMU10K1=m
and CONFIG_SND_SEQUENCER=m

This looks like it can't possibly work, unless I change
CONFIG_SND_EMU10K1 to =y.  Is exporting a symbol from one
module to another actually supposed to work?
I thought this was why we had the ill-fated intermodule_register() ?.

		Dave

-- 
http://www.codemonkey.org.uk

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: unresolved emu10k1 synth symbols.
  2006-03-21  5:46 unresolved emu10k1 synth symbols Dave Jones
@ 2006-03-21 10:53 ` Adrian Bunk
  2006-03-21 11:04 ` Takashi Iwai
  1 sibling, 0 replies; 8+ messages in thread
From: Adrian Bunk @ 2006-03-21 10:53 UTC (permalink / raw)
  To: Dave Jones, tiwai, Linux Kernel

On Tue, Mar 21, 2006 at 12:46:34AM -0500, Dave Jones wrote:
>...
> This looks like it can't possibly work, unless I change
> CONFIG_SND_EMU10K1 to =y.  Is exporting a symbol from one
> module to another actually supposed to work?
>...

How could e.g. CONFIG_SCSI=m or CONFIG_USB=m do anything useful if it 
wasn't?

> 		Dave

cu
Adrian

-- 

       "Is there not promise of rain?" Ling Tan asked suddenly out
        of the darkness. There had been need of rain for many days.
       "Only a promise," Lao Er said.
                                       Pearl S. Buck - Dragon Seed


^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: unresolved emu10k1 synth symbols.
  2006-03-21  5:46 unresolved emu10k1 synth symbols Dave Jones
  2006-03-21 10:53 ` Adrian Bunk
@ 2006-03-21 11:04 ` Takashi Iwai
  2006-03-21 18:09   ` Dave Jones
  1 sibling, 1 reply; 8+ messages in thread
From: Takashi Iwai @ 2006-03-21 11:04 UTC (permalink / raw)
  To: Dave Jones; +Cc: Linux Kernel

At Tue, 21 Mar 2006 00:46:34 -0500,
Dave Jones wrote:
> 
> I just noticed this whilst booting 2.6.16 on a test box
> 
> snd_emu10k1_synth: Unknown symbol snd_emu10k1_ptr_read
> snd_emu10k1_synth: Unknown symbol snd_emu10k1_synth_copy_from_user
> snd_emu10k1_synth: Unknown symbol snd_emu10k1_voice_free
> snd_emu10k1_synth: Unknown symbol snd_emu10k1_synth_free
> snd_emu10k1_synth: Unknown symbol snd_emu10k1_ptr_write
> snd_emu10k1_synth: Unknown symbol snd_emu10k1_synth_bzero
> snd_emu10k1_synth: Unknown symbol snd_emu10k1_voice_alloc
> snd_emu10k1_synth: Unknown symbol snd_emu10k1_memblk_map
> snd_emu10k1_synth: Unknown symbol snd_emu10k1_synth_alloc
> 
> This kernel was configured with CONFIG_SND_EMU10K1=m
> and CONFIG_SND_SEQUENCER=m
> 
> This looks like it can't possibly work, unless I change
> CONFIG_SND_EMU10K1 to =y.  Is exporting a symbol from one
> module to another actually supposed to work?
> I thought this was why we had the ill-fated intermodule_register() ?.

Weird.  By modprobe, snd-emu10k1 module should be loaded in prior to 
snd-emu10k1-synth because of the dependency of above symbols.

How is snd-emu10k1-synth module loaded?


Takashi

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: unresolved emu10k1 synth symbols.
  2006-03-21 11:04 ` Takashi Iwai
@ 2006-03-21 18:09   ` Dave Jones
  2006-03-22 14:16     ` Takashi Iwai
  0 siblings, 1 reply; 8+ messages in thread
From: Dave Jones @ 2006-03-21 18:09 UTC (permalink / raw)
  To: Takashi Iwai; +Cc: Linux Kernel

On Tue, Mar 21, 2006 at 12:04:35PM +0100, Takashi Iwai wrote:

 > Weird.  By modprobe, snd-emu10k1 module should be loaded in prior to 
 > snd-emu10k1-synth because of the dependency of above symbols.
 > 
 > How is snd-emu10k1-synth module loaded?

with the following modprobe.conf fragment

install snd-emu10k1 /sbin/modprobe --ignore-install snd-emu10k1 && /sbin/modprobe snd-emu10k1-synth

		Dave

-- 
http://www.codemonkey.org.uk

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: unresolved emu10k1 synth symbols.
  2006-03-21 18:09   ` Dave Jones
@ 2006-03-22 14:16     ` Takashi Iwai
  2006-03-22 17:54       ` Dave Jones
  0 siblings, 1 reply; 8+ messages in thread
From: Takashi Iwai @ 2006-03-22 14:16 UTC (permalink / raw)
  To: Dave Jones; +Cc: Linux Kernel

At Tue, 21 Mar 2006 13:09:57 -0500,
Dave Jones wrote:
> 
> On Tue, Mar 21, 2006 at 12:04:35PM +0100, Takashi Iwai wrote:
> 
>  > Weird.  By modprobe, snd-emu10k1 module should be loaded in prior to 
>  > snd-emu10k1-synth because of the dependency of above symbols.
>  > 
>  > How is snd-emu10k1-synth module loaded?
> 
> with the following modprobe.conf fragment
> 
> install snd-emu10k1 /sbin/modprobe --ignore-install snd-emu10k1 && /sbin/modprobe snd-emu10k1-synth

Does the manual modprobe snd-emu10k1-synth after loading snd-emu10k1
work?


Takashi

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: unresolved emu10k1 synth symbols.
  2006-03-22 14:16     ` Takashi Iwai
@ 2006-03-22 17:54       ` Dave Jones
  2006-03-23 10:46         ` Takashi Iwai
  0 siblings, 1 reply; 8+ messages in thread
From: Dave Jones @ 2006-03-22 17:54 UTC (permalink / raw)
  To: Takashi Iwai; +Cc: Linux Kernel

On Wed, Mar 22, 2006 at 03:16:47PM +0100, Takashi Iwai wrote:
 > At Tue, 21 Mar 2006 13:09:57 -0500,
 > Dave Jones wrote:
 > > 
 > > On Tue, Mar 21, 2006 at 12:04:35PM +0100, Takashi Iwai wrote:
 > > 
 > >  > Weird.  By modprobe, snd-emu10k1 module should be loaded in prior to 
 > >  > snd-emu10k1-synth because of the dependency of above symbols.
 > >  > 
 > >  > How is snd-emu10k1-synth module loaded?
 > > 
 > > with the following modprobe.conf fragment
 > > 
 > > install snd-emu10k1 /sbin/modprobe --ignore-install snd-emu10k1 && /sbin/modprobe snd-emu10k1-synth
 > 
 > Does the manual modprobe snd-emu10k1-synth after loading snd-emu10k1
 > work?

Yes, it does.

		Dave

-- 
http://www.codemonkey.org.uk

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: unresolved emu10k1 synth symbols.
  2006-03-22 17:54       ` Dave Jones
@ 2006-03-23 10:46         ` Takashi Iwai
  0 siblings, 0 replies; 8+ messages in thread
From: Takashi Iwai @ 2006-03-23 10:46 UTC (permalink / raw)
  To: Dave Jones; +Cc: Linux Kernel

At Wed, 22 Mar 2006 12:54:26 -0500,
Dave Jones wrote:
> 
> On Wed, Mar 22, 2006 at 03:16:47PM +0100, Takashi Iwai wrote:
>  > At Tue, 21 Mar 2006 13:09:57 -0500,
>  > Dave Jones wrote:
>  > > 
>  > > On Tue, Mar 21, 2006 at 12:04:35PM +0100, Takashi Iwai wrote:
>  > > 
>  > >  > Weird.  By modprobe, snd-emu10k1 module should be loaded in prior to 
>  > >  > snd-emu10k1-synth because of the dependency of above symbols.
>  > >  > 
>  > >  > How is snd-emu10k1-synth module loaded?
>  > > 
>  > > with the following modprobe.conf fragment
>  > > 
>  > > install snd-emu10k1 /sbin/modprobe --ignore-install snd-emu10k1 && /sbin/modprobe snd-emu10k1-synth
>  > 
>  > Does the manual modprobe snd-emu10k1-synth after loading snd-emu10k1
>  > work?
> 
> Yes, it does.

Hm, then I have no more ideas... :<


Takashi

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: unresolved emu10k1 synth symbols.
@ 2006-03-23 19:36 Margit Schubert-While
  0 siblings, 0 replies; 8+ messages in thread
From: Margit Schubert-While @ 2006-03-23 19:36 UTC (permalink / raw)
  To: linux-kernel; +Cc: davej

 >> with the following modprobe.conf fragment
 >> install snd-emu10k1 /sbin/modprobe --ignore-install snd-emu10k1 && 
/sbin/modprobe snd-emu10k1-synth

Isn't that command wrong ?
You are telling it to ignore the install for snd-emu10k1.
How about :
install snd-emu10k1-synth /sbin/modprobe snd-emu10k1 && /sbin/modprobe 
--ignore-install snd-emu10k1-synth

Margit



^ permalink raw reply	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2006-03-23 19:35 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2006-03-21  5:46 unresolved emu10k1 synth symbols Dave Jones
2006-03-21 10:53 ` Adrian Bunk
2006-03-21 11:04 ` Takashi Iwai
2006-03-21 18:09   ` Dave Jones
2006-03-22 14:16     ` Takashi Iwai
2006-03-22 17:54       ` Dave Jones
2006-03-23 10:46         ` Takashi Iwai
  -- strict thread matches above, loose matches on Subject: below --
2006-03-23 19:36 Margit Schubert-While

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox