public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* unresolved symbols still in 2.4.30-rc2 (usbserial needs symbol tty_ldisc_ref and tty_ldisc_deref which are EXPORT_SYMBOL_GPL)
@ 2005-03-26 18:52 David Dyck
  2005-03-26 19:13 ` Adrian Bunk
  0 siblings, 1 reply; 9+ messages in thread
From: David Dyck @ 2005-03-26 18:52 UTC (permalink / raw)
  To: linux-kernel




I've been noticing that I'm still getting some "unresolved symbols"
with the 2.4.30 pre and rc series.

# insmod /lib/modules/2.4.30-rc2/kernel/drivers/usb/serial/usbserial.o
/lib/modules/2.4.30-rc2/kernel/drivers/usb/serial/usbserial.o: unresolved 
symbol tty_ldisc_ref
/lib/modules/2.4.30-rc2/kernel/drivers/usb/serial/usbserial.o: unresolved 
symbol tty_ldisc_deref

I see that the symbols are defined in the system.map

grep -i  ' T .*tty_ldisc_.*ref' System.map
c01daae8 T tty_ldisc_ref_wait
c01dab6c T tty_ldisc_ref
c01dab8c T tty_ldisc_deref

grep  'tty_ldisc_.*ref' /proc/ksyms
shows that the name changes in /proc/ksyms to:
c01daae8 tty_ldisc_ref_wait_R__ver_tty_ldisc_ref_wait
c01dab6c tty_ldisc_ref_R__ver_tty_ldisc_ref
c01dab8c tty_ldisc_deref_R__ver_tty_ldisc_deref


# nm -og /lib/modules/2.4.30-rc2/kernel/drivers/usb/serial/usbserial.o | grep 
'tty_ldisc_.*ref'
/lib/modules/2.4.30-rc2/kernel/drivers/usb/serial/usbserial.o:         U 
tty_ldisc_deref
/lib/modules/2.4.30-rc2/kernel/drivers/usb/serial/usbserial.o:         U 
tty_ldisc_ref

If I just look at the symbol tty_ldisc_deref I find that
usbserial is the only module I am using that is referencing in.
  find $PWD -name '*.o' | xargs nm -og | grep  tty_ldisc_dere
/lib/modules/2.4.30-rc2/kernel/drivers/usb/serial/usbserial.o:         U 
tty_ldisc_deref

grepping around in the kernel tree I see it exported from  tty_io.c as:
EXPORT_SYMBOL_GPL(tty_ldisc_deref);

Why are some of the tty_ symbols exported _GPL, and others not?

Shouldn't I be able to build the usbserial driver as a module?
 	CONFIG_USB_SERIAL=m

I just checked and ALL the modules I'm loading are GPL
  find /lib/modules/2.4.30-rc2 -name '*.o' | xargs modinfo -f 
'%{license}:%{filename}\n'

  ....
GPL:/lib/modules/2.4.30-rc2/kernel/drivers/usb/serial/usbserial.o
  ...


cat /proc/version
Linux version 2.4.30-rc2 (dcd@dd) (gcc version egcs-2.91.66.1 19990314/Linux 
(egcs-1.1.2 release)) #1 Sat Mar 26 08:52:31 PST 2005

ver_linux reports:
Gnu C                  egcs-2.91.66.1
Gnu make               3.79.1
binutils               2.10
util-linux             2.10o
mount                  2.10o
modutils               2.4.2
e2fsprogs              1.25
Linux C Library        5.4.44
ldd: version 1.9.9
Linux C++ Library      27.2.1
Linux C++ Library      27.2.1
Procps                 1.01
Net-tools              1.51
Kbd                    0.89
Sh-utils               2.0
Modules Loaded         usb-uhci usbcore 3c59x


processor	: 0
vendor_id	: GenuineIntel
cpu family	: 6
model		: 5
model name	: Pentium II (Deschutes)
stepping	: 1
cpu MHz		: 397.333
cache size	: 512 KB
fdiv_bug	: no
hlt_bug		: no
f00f_bug	: no
coma_bug	: no
fpu		: yes
fpu_exception	: yes
cpuid level	: 2
wp		: yes
flags		: fpu vme de pse tsc msr pae mce cx8 sep mtrr pge mca cmov pat 
pse36 mmx fxsr
bogomips	: 792.98


# grep = .config

CONFIG_X86=y
CONFIG_UID16=y
CONFIG_EXPERIMENTAL=y
CONFIG_MODULES=y
CONFIG_MODVERSIONS=y
CONFIG_KMOD=y
CONFIG_M686=y
CONFIG_X86_WP_WORKS_OK=y
CONFIG_X86_INVLPG=y
CONFIG_X86_CMPXCHG=y
CONFIG_X86_XADD=y
CONFIG_X86_BSWAP=y
CONFIG_X86_POPAD_OK=y
CONFIG_RWSEM_XCHGADD_ALGORITHM=y
CONFIG_X86_L1_CACHE_SHIFT=5
CONFIG_X86_HAS_TSC=y
CONFIG_X86_GOOD_APIC=y
CONFIG_X86_PGE=y
CONFIG_X86_USE_PPRO_CHECKSUM=y
CONFIG_X86_PPRO_FENCE=y
CONFIG_X86_F00F_WORKS_OK=y
CONFIG_X86_MCE=y
CONFIG_NOHIGHMEM=y
CONFIG_X86_TSC=y
CONFIG_NET=y
CONFIG_PCI=y
CONFIG_PCI_GOANY=y
CONFIG_PCI_BIOS=y
CONFIG_PCI_DIRECT=y
CONFIG_ISA=y
CONFIG_PCI_NAMES=y
CONFIG_SYSVIPC=y
CONFIG_SYSCTL=y
CONFIG_KCORE_ELF=y
CONFIG_BINFMT_AOUT=y
CONFIG_BINFMT_ELF=y
CONFIG_BINFMT_MISC=m
CONFIG_PM=y
CONFIG_PARPORT=m
CONFIG_PARPORT_PC=m
CONFIG_PARPORT_PC_CML1=m
CONFIG_PNP=m
CONFIG_ISAPNP=m
CONFIG_BLK_DEV_FD=y
CONFIG_BLK_DEV_LOOP=y
CONFIG_BLK_DEV_RAM=m
CONFIG_BLK_DEV_RAM_SIZE=4096
CONFIG_BLK_STATS=y
CONFIG_PACKET=y
CONFIG_NETLINK_DEV=y
CONFIG_UNIX=y
CONFIG_INET=y
CONFIG_PHONE=m
CONFIG_IDE=y
CONFIG_BLK_DEV_IDE=y
CONFIG_BLK_DEV_IDEDISK=y
CONFIG_BLK_DEV_IDECD=y
CONFIG_BLK_DEV_CMD640=y
CONFIG_BLK_DEV_CMD640_ENHANCED=y
CONFIG_BLK_DEV_IDEPCI=y
CONFIG_IDEPCI_SHARE_IRQ=y
CONFIG_BLK_DEV_IDEDMA_PCI=y
CONFIG_BLK_DEV_IDEDMA=y
CONFIG_BLK_DEV_RZ1000=y
CONFIG_NETDEVICES=y
CONFIG_DUMMY=m
CONFIG_NET_ETHERNET=y
CONFIG_NET_VENDOR_3COM=y
CONFIG_EL3=y
CONFIG_VORTEX=m
CONFIG_VT=y
CONFIG_VT_CONSOLE=y
CONFIG_SERIAL=y
CONFIG_SERIAL_NONSTANDARD=y
CONFIG_CYCLADES=m
CONFIG_UNIX98_PTYS=y
CONFIG_UNIX98_PTY_COUNT=256
CONFIG_MOUSE=y
CONFIG_PSMOUSE=y
CONFIG_NVRAM=m
CONFIG_RTC=m
CONFIG_VIDEO_DEV=m
CONFIG_AUTOFS_FS=y
CONFIG_REISERFS_FS=y
CONFIG_EXT3_FS=y
CONFIG_JBD=y
CONFIG_JBD_DEBUG=y
CONFIG_FAT_FS=m
CONFIG_MSDOS_FS=m
CONFIG_VFAT_FS=m
CONFIG_RAMFS=y
CONFIG_ISO9660_FS=m
CONFIG_JOLIET=y
CONFIG_ZISOFS=y
CONFIG_JFS_FS=y
CONFIG_JFS_DEBUG=y
CONFIG_JFS_STATISTICS=y
CONFIG_MINIX_FS=m
CONFIG_PROC_FS=y
CONFIG_DEVPTS_FS=y
CONFIG_EXT2_FS=y
CONFIG_NFS_FS=y
CONFIG_NFS_V3=y
CONFIG_NFSD=y
CONFIG_NFSD_V3=y
CONFIG_SUNRPC=y
CONFIG_LOCKD=y
CONFIG_LOCKD_V4=y
CONFIG_SMB_FS=m
CONFIG_SMB_UNIX=y
CONFIG_ZISOFS_FS=m
CONFIG_MSDOS_PARTITION=y
CONFIG_SMB_NLS=y
CONFIG_NLS=y
CONFIG_NLS_DEFAULT="iso8859-1"
CONFIG_NLS_CODEPAGE_437=y
CONFIG_NLS_ISO8859_1=y
CONFIG_VGA_CONSOLE=y
CONFIG_VIDEO_SELECT=y
CONFIG_SOUND=m
CONFIG_SOUND_OSS=m
CONFIG_SOUND_CS4232=m
CONFIG_SOUND_VMIDI=m
CONFIG_SOUND_SB=m
CONFIG_SOUND_YM3812=m
CONFIG_USB=m
CONFIG_USB_DEBUG=y
CONFIG_USB_DEVICEFS=y
CONFIG_USB_UHCI=m
CONFIG_USB_UHCI_ALT=m
CONFIG_USB_STV680=m
CONFIG_USB_SERIAL=m
CONFIG_USB_SERIAL_GENERIC=y
CONFIG_USB_SERIAL_BELKIN=m
CONFIG_USB_SERIAL_VISOR=m
CONFIG_USB_SERIAL_PL2303=m
CONFIG_DEBUG_KERNEL=y
CONFIG_DEBUG_STACKOVERFLOW=y
CONFIG_MAGIC_SYSRQ=y
CONFIG_LOG_BUF_SHIFT=0
CONFIG_ZLIB_INFLATE=m
CONFIG_ZLIB_DEFLATE=m

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

* Re: unresolved symbols still in 2.4.30-rc2 (usbserial needs symbol tty_ldisc_ref and tty_ldisc_deref which are EXPORT_SYMBOL_GPL)
  2005-03-26 18:52 unresolved symbols still in 2.4.30-rc2 (usbserial needs symbol tty_ldisc_ref and tty_ldisc_deref which are EXPORT_SYMBOL_GPL) David Dyck
@ 2005-03-26 19:13 ` Adrian Bunk
  2005-03-26 20:39   ` David Dyck
  0 siblings, 1 reply; 9+ messages in thread
From: Adrian Bunk @ 2005-03-26 19:13 UTC (permalink / raw)
  To: David Dyck; +Cc: linux-kernel

On Sat, Mar 26, 2005 at 10:52:30AM -0800, David Dyck wrote:
> 
> I've been noticing that I'm still getting some "unresolved symbols"
> with the 2.4.30 pre and rc series.
>...
> ver_linux reports:
>...
> modutils               2.4.2
>...

A modutils upgrade should fix your problems.

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] 9+ messages in thread

* Re: unresolved symbols still in 2.4.30-rc2 (usbserial needs symbol tty_ldisc_ref and tty_ldisc_deref which are EXPORT_SYMBOL_GPL)
  2005-03-26 19:13 ` Adrian Bunk
@ 2005-03-26 20:39   ` David Dyck
  2005-03-27  0:31     ` upgrading modutils may have fixed: " David Dyck
  0 siblings, 1 reply; 9+ messages in thread
From: David Dyck @ 2005-03-26 20:39 UTC (permalink / raw)
  To: Adrian Bunk; +Cc: linux-kernel

On Sat, 26 Mar 2005 at 20:13 +0100, Adrian Bunk wrote:

> On Sat, Mar 26, 2005 at 10:52:30AM -0800, David Dyck wrote:
>>
>> I've been noticing that I'm still getting some "unresolved symbols"
>> with the 2.4.30 pre and rc series.
>> ...
>> ver_linux reports:
>> ...
>> modutils               2.4.2
>> ...
>
> A modutils upgrade should fix your problems.

Thanks for suggestion - I hadn't noticed that it had slipped out of date.
I took your advice and upgraded to 2.4.27 and rebuild (from clean)
the kernel and modules again.

$ bash scripts/ver_linux
  ...
Linux dd 2.4.30-rc2 #2 Sat Mar 26 11:37:17 PST 2005 i686
  ...
modutils               2.4.27
  ...

I'm still getting unresolved symbol tty_ldisc_ref and tty_ldisc_deref

dd:linux# insmod usbserial
Using /lib/modules/2.4.30-rc2/kernel/drivers/usb/serial/usbserial.o
  ...: unresolved symbol tty_ldisc_ref
  ...: unresolved symbol tty_ldisc_deref

After changing CONFIG_USB, CONFIG_USB_UHCI, and CONFIG_USB_SERIAL
from modules (=m) to built-in (=y) and another clean rebuild
I am able to boot cleanly and load modules that depend on usbserial

I would really like to get usbserial to be a module again
without getting the "unresolved symbols" for 
tty_ldisc_ref and tty_ldisc_deref



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

* upgrading modutils may have fixed: unresolved symbols still in 2.4.30-rc2 (usbserial needs symbol tty_ldisc_ref and tty_ldisc_deref which are EXPORT_SYMBOL_GPL)
  2005-03-26 20:39   ` David Dyck
@ 2005-03-27  0:31     ` David Dyck
  2005-03-27  8:33       ` Jan Engelhardt
  2005-03-28  4:20       ` Willy Tarreau
  0 siblings, 2 replies; 9+ messages in thread
From: David Dyck @ 2005-03-27  0:31 UTC (permalink / raw)
  To: Adrian Bunk; +Cc: linux-kernel

On Sat, 26 Mar 2005 at 12:39 -0800, David Dyck wrote:

> On Sat, 26 Mar 2005 at 20:13 +0100, Adrian Bunk wrote:
>
>> On Sat, Mar 26, 2005 at 10:52:30AM -0800, David Dyck wrote:
>>> 
>>> I've been noticing that I'm still getting some "unresolved symbols"
>>> with the 2.4.30 pre and rc series.
>>> ver_linux reports:
>>> modutils               2.4.2
>> 
>> A modutils upgrade should fix your problems.
>
> I took your advice and upgraded to 2.4.27 and rebuild (from clean)
> the kernel and modules again.
>
> $ bash scripts/ver_linux
> modutils               2.4.27
>
> I'm still getting unresolved symbol tty_ldisc_ref and tty_ldisc_deref
>
> dd:linux# insmod usbserial
> Using /lib/modules/2.4.30-rc2/kernel/drivers/usb/serial/usbserial.o
> ...: unresolved symbol tty_ldisc_ref
> ...: unresolved symbol tty_ldisc_deref

I tried again with 2.4.30-rc3, but this time I changed my .config
file to disable 2 other modules that I didn't need, and wasn't loading.

< CONFIG_USB_UHCI_ALT=m
< CONFIG_USB_STV680=m

and build rc3.  It seems to work, so either my earlier
rc2 test with make clean wasn't clean-enough, or CONFIG_USB_UHCI_ALT
interferes - testing with CONFIG_USB_UHCI_ALT as a module (not loaded)
also works, so since interdiff didn't seem to highlite any difference 
between rc2 and rc3, I'll suspect that my test make clean didn't
clean things up good enough, and the entire problem was as
Adrian Bunk suggest (upgrade modutils, thanks Adrian)


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

* Re: upgrading modutils may have fixed: unresolved symbols still in 2.4.30-rc2 (usbserial needs symbol tty_ldisc_ref and tty_ldisc_deref which are EXPORT_SYMBOL_GPL)
  2005-03-27  0:31     ` upgrading modutils may have fixed: " David Dyck
@ 2005-03-27  8:33       ` Jan Engelhardt
  2005-03-28  4:20       ` Willy Tarreau
  1 sibling, 0 replies; 9+ messages in thread
From: Jan Engelhardt @ 2005-03-27  8:33 UTC (permalink / raw)
  To: David Dyck; +Cc: Adrian Bunk, linux-kernel

> I tried again with 2.4.30-rc3, but this time I changed my .config
> file to disable 2 other modules that I didn't need, and wasn't loading.
>
> < CONFIG_USB_UHCI_ALT=m
> < CONFIG_USB_STV680=m
>
> and build rc3.  It seems to work, so either my earlier
>[...]

As for the subject, it constantly happens to me that I get unresolved symbols 
if I try to build a kernel with _*all*_ the bell's and whistles. There's 
always something that is not updated.



Jan Engelhardt
-- 
No TOFU for me, please.

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

* Re: upgrading modutils may have fixed: unresolved symbols still in 2.4.30-rc2 (usbserial needs symbol tty_ldisc_ref and tty_ldisc_deref which are EXPORT_SYMBOL_GPL)
  2005-03-27  0:31     ` upgrading modutils may have fixed: " David Dyck
  2005-03-27  8:33       ` Jan Engelhardt
@ 2005-03-28  4:20       ` Willy Tarreau
  2005-03-28 11:00         ` Keith Owens
  1 sibling, 1 reply; 9+ messages in thread
From: Willy Tarreau @ 2005-03-28  4:20 UTC (permalink / raw)
  To: David Dyck; +Cc: Adrian Bunk, linux-kernel

On Sat, Mar 26, 2005 at 04:31:59PM -0800, David Dyck wrote:
> >dd:linux# insmod usbserial
> >Using /lib/modules/2.4.30-rc2/kernel/drivers/usb/serial/usbserial.o
> >...: unresolved symbol tty_ldisc_ref
> >...: unresolved symbol tty_ldisc_deref
> 
> I tried again with 2.4.30-rc3, but this time I changed my .config
> file to disable 2 other modules that I didn't need, and wasn't loading.
> 
> < CONFIG_USB_UHCI_ALT=m
> < CONFIG_USB_STV680=m
> 
> and build rc3.  It seems to work, so either my earlier
> rc2 test with make clean wasn't clean-enough, or CONFIG_USB_UHCI_ALT
> interferes - testing with CONFIG_USB_UHCI_ALT as a module (not loaded)
> also works, so since interdiff didn't seem to highlite any difference 
> between rc2 and rc3, I'll suspect that my test make clean didn't
> clean things up good enough, and the entire problem was as
> Adrian Bunk suggest (upgrade modutils, thanks Adrian)

I believe it's because of genksyms during the build process, I had the
exact same problem a few weeks ago on a machine with old modutils. So
you should have cleaned everything and rebuilt from scratch after
installing your new modutils. BTW, the required modutils in
Documentation/Changes is still marked as 2.4.10, I hope it is still
enough.

Regards,
Willy


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

* Re: upgrading modutils may have fixed: unresolved symbols still in 2.4.30-rc2 (usbserial needs symbol tty_ldisc_ref and tty_ldisc_deref which are EXPORT_SYMBOL_GPL)
  2005-03-28  4:20       ` Willy Tarreau
@ 2005-03-28 11:00         ` Keith Owens
  2005-03-28 11:37           ` Willy TARREAU
  0 siblings, 1 reply; 9+ messages in thread
From: Keith Owens @ 2005-03-28 11:00 UTC (permalink / raw)
  To: Willy Tarreau; +Cc: David Dyck, Adrian Bunk, linux-kernel

On Mon, 28 Mar 2005 06:20:01 +0200, 
Willy Tarreau <willy@w.ods.org> wrote:
>I believe it's because of genksyms during the build process, I had the
>exact same problem a few weeks ago on a machine with old modutils. So
>you should have cleaned everything and rebuilt from scratch after
>installing your new modutils. BTW, the required modutils in
>Documentation/Changes is still marked as 2.4.10, I hope it is still
>enough.

You need modutils >= 2.4.14 to use the combination of
CONFIG_MODVERSIONS with EXPORT_SYMBOL_GPL() on 2.4 kernels.


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

* Re: upgrading modutils may have fixed: unresolved symbols still in 2.4.30-rc2 (usbserial needs symbol tty_ldisc_ref and tty_ldisc_deref which are EXPORT_SYMBOL_GPL)
  2005-03-28 11:00         ` Keith Owens
@ 2005-03-28 11:37           ` Willy TARREAU
  2005-03-28 14:53             ` Keith Owens
  0 siblings, 1 reply; 9+ messages in thread
From: Willy TARREAU @ 2005-03-28 11:37 UTC (permalink / raw)
  To: Keith Owens; +Cc: David Dyck, Adrian Bunk, marcelo.tosatti, linux-kernel

On Mon, Mar 28, 2005 at 09:00:59PM +1000, Keith Owens wrote:
> On Mon, 28 Mar 2005 06:20:01 +0200, 
> Willy Tarreau <willy@w.ods.org> wrote:
> >I believe it's because of genksyms during the build process, I had the
> >exact same problem a few weeks ago on a machine with old modutils. So
> >you should have cleaned everything and rebuilt from scratch after
> >installing your new modutils. BTW, the required modutils in
> >Documentation/Changes is still marked as 2.4.10, I hope it is still
> >enough.
> 
> You need modutils >= 2.4.14 to use the combination of
> CONFIG_MODVERSIONS with EXPORT_SYMBOL_GPL() on 2.4 kernels.

Thanks for the precision Keith.

So the following seems appropriate ?

--- ./Documentation/Changes.old	Sat Mar 26 07:42:46 2005
+++ ./Documentation/Changes	Mon Mar 28 13:35:06 2005
@@ -52,7 +52,7 @@
 o  Gnu make               3.77                    # make --version
 o  binutils               2.9.1.0.25              # ld -v
 o  util-linux             2.10o                   # fdformat --version
-o  modutils               2.4.10                   # insmod -V
+o  modutils               2.4.14                   # insmod -V
 o  e2fsprogs              1.25                    # tune2fs
 o  jfsutils               1.0.12                  # fsck.jfs -V
 o  reiserfsprogs          3.6.3                   # reiserfsck -V 2>&1|grep reiserfsprogs

Regards,
Willy


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

* Re: upgrading modutils may have fixed: unresolved symbols still in 2.4.30-rc2 (usbserial needs symbol tty_ldisc_ref and tty_ldisc_deref which are EXPORT_SYMBOL_GPL)
  2005-03-28 11:37           ` Willy TARREAU
@ 2005-03-28 14:53             ` Keith Owens
  0 siblings, 0 replies; 9+ messages in thread
From: Keith Owens @ 2005-03-28 14:53 UTC (permalink / raw)
  To: Willy TARREAU; +Cc: David Dyck, Adrian Bunk, marcelo.tosatti, linux-kernel

On Mon, 28 Mar 2005 13:37:31 +0200, 
Willy TARREAU <willy@w.ods.org> wrote:
>On Mon, Mar 28, 2005 at 09:00:59PM +1000, Keith Owens wrote:
>> You need modutils >= 2.4.14 to use the combination of
>> CONFIG_MODVERSIONS with EXPORT_SYMBOL_GPL() on 2.4 kernels.
>
>Thanks for the precision Keith.
>
>So the following seems appropriate ?
>
>--- ./Documentation/Changes.old	Sat Mar 26 07:42:46 2005
>+++ ./Documentation/Changes	Mon Mar 28 13:35:06 2005
>@@ -52,7 +52,7 @@
> o  Gnu make               3.77                    # make --version
> o  binutils               2.9.1.0.25              # ld -v
> o  util-linux             2.10o                   # fdformat --version
>-o  modutils               2.4.10                   # insmod -V
>+o  modutils               2.4.14                   # insmod -V
> o  e2fsprogs              1.25                    # tune2fs
> o  jfsutils               1.0.12                  # fsck.jfs -V
> o  reiserfsprogs          3.6.3                   # reiserfsck -V 2>&1|grep reiserfsprogs
>

Ack.


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

end of thread, other threads:[~2005-03-28 14:53 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2005-03-26 18:52 unresolved symbols still in 2.4.30-rc2 (usbserial needs symbol tty_ldisc_ref and tty_ldisc_deref which are EXPORT_SYMBOL_GPL) David Dyck
2005-03-26 19:13 ` Adrian Bunk
2005-03-26 20:39   ` David Dyck
2005-03-27  0:31     ` upgrading modutils may have fixed: " David Dyck
2005-03-27  8:33       ` Jan Engelhardt
2005-03-28  4:20       ` Willy Tarreau
2005-03-28 11:00         ` Keith Owens
2005-03-28 11:37           ` Willy TARREAU
2005-03-28 14:53             ` Keith Owens

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