public inbox for linux-nfs@vger.kernel.org
 help / color / mirror / Atom feed
* link error while compiling localio.c
@ 2024-10-10  7:35 Janpieter Sollie via Bugspray Bot
  2024-10-10  7:35 ` Janpieter Sollie via Bugspray Bot
                   ` (5 more replies)
  0 siblings, 6 replies; 8+ messages in thread
From: Janpieter Sollie via Bugspray Bot @ 2024-10-10  7:35 UTC (permalink / raw)
  To: trondmy, anna, linux-nfs, cel, jlayton

Janpieter Sollie added an attachment on Kernel.org Bugzilla:

Created attachment 306999
kernel .config

tried both GCC and clang:
Clang output:
> ld.lld: error: undefined symbol: nfs_to
> >>> referenced by localio.c:37 (fs/nfsd/localio.c:37)
> >>>               vmlinux.o:(init_nfsd)
> >>> referenced by localio.c:37 (/usr/src/linux/fs/nfsd/localio.c:37)
> >>>               vmlinux.o:(nfsd_localio_ops_init)
> 
> ld.lld: error: undefined symbol: nfs_uuid_invalidate_clients
> >>> referenced by nfsctl.c:2286 (/usr/src/linux/fs/nfsd/nfsctl.c:2286)
> >>>               vmlinux.o:(nfsd_net_pre_exit)
> 
> ld.lld: error: undefined symbol: nfs_uuid_is_local
> >>> referenced by localio.c:116 (/usr/src/linux/fs/nfsd/localio.c:116)
> >>>               vmlinux.o:(localio_proc_uuid_is_local)
GCC output:
ld: fs/nfsd/nfsctl.o: in function `nfsd_net_pre_exit':
nfsctl.c:(.text+0x122): undefined reference to `nfs_uuid_invalidate_clients'
ld: fs/nfsd/localio.o: in function `localio_proc_uuid_is_local':
/usr/src/linux/fs/nfsd/localio.c:116:(.text+0x56): undefined reference to `nfs_uuid_is_local'
ld: fs/nfsd/localio.o: in function `nfsd_localio_ops_init':
/usr/src/linux/fs/nfsd/localio.c:37:(.text+0x2c9): undefined reference to `nfs_to'

Command:
make -j64 or make LLVM=1 -j64

the config file for GCC will be attached, let me know if the clang version is desired as well

As you might guess, not trimming the unused symbols fixes the issue ...

File: config.txt (text/plain)
Size: 130.19 KiB
Link: https://bugzilla.kernel.org/attachment.cgi?id=306999
---
kernel .config

You can reply to this message to join the discussion.
-- 
Deet-doot-dot, I am a bot.
Kernel.org Bugzilla (bugspray 0.1-dev)


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

* Re: link error while compiling localio.c
  2024-10-10  7:35 link error while compiling localio.c Janpieter Sollie via Bugspray Bot
@ 2024-10-10  7:35 ` Janpieter Sollie via Bugspray Bot
  2024-10-10  8:05 ` Janpieter Sollie via Bugspray Bot
                   ` (4 subsequent siblings)
  5 siblings, 0 replies; 8+ messages in thread
From: Janpieter Sollie via Bugspray Bot @ 2024-10-10  7:35 UTC (permalink / raw)
  To: trondmy, anna, linux-nfs, cel, jlayton

Janpieter Sollie writes via Kernel.org Bugzilla:

sorry, turns out I was wrong (had to do a make clean before):
removing the "trim unused exported symbols" option did NOT fix the issue, it simply masked it, turns out it was hidden somewhere else

View: https://bugzilla.kernel.org/show_bug.cgi?id=219370#c1
You can reply to this message to join the discussion.
-- 
Deet-doot-dot, I am a bot.
Kernel.org Bugzilla (bugspray 0.1-dev)


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

* Re: link error while compiling localio.c
  2024-10-10  7:35 link error while compiling localio.c Janpieter Sollie via Bugspray Bot
  2024-10-10  7:35 ` Janpieter Sollie via Bugspray Bot
@ 2024-10-10  8:05 ` Janpieter Sollie via Bugspray Bot
  2024-10-10 10:55 ` The Linux kernel's regression tracker (Thorsten Leemhuis) via Bugspray Bot
                   ` (3 subsequent siblings)
  5 siblings, 0 replies; 8+ messages in thread
From: Janpieter Sollie via Bugspray Bot @ 2024-10-10  8:05 UTC (permalink / raw)
  To: trondmy, anna, cel, jlayton, linux-nfs

Janpieter Sollie writes via Kernel.org Bugzilla:

based on the bisected commit id, I turned off nfs localio option in kernel .config for 6.12-rc2, now it compiles.  Guess that's not surprising

View: https://bugzilla.kernel.org/show_bug.cgi?id=219370#c2
You can reply to this message to join the discussion.
-- 
Deet-doot-dot, I am a bot.
Kernel.org Bugzilla (bugspray 0.1-dev)


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

* Re: link error while compiling localio.c
  2024-10-10  7:35 link error while compiling localio.c Janpieter Sollie via Bugspray Bot
  2024-10-10  7:35 ` Janpieter Sollie via Bugspray Bot
  2024-10-10  8:05 ` Janpieter Sollie via Bugspray Bot
@ 2024-10-10 10:55 ` The Linux kernel's regression tracker (Thorsten Leemhuis) via Bugspray Bot
  2024-10-22 10:40 ` The Linux kernel's regression tracker (Thorsten Leemhuis) via Bugspray Bot
                   ` (2 subsequent siblings)
  5 siblings, 0 replies; 8+ messages in thread
From: The Linux kernel's regression tracker (Thorsten Leemhuis) via Bugspray Bot @ 2024-10-10 10:55 UTC (permalink / raw)
  To: anna, linux-nfs, jlayton, trondmy, cel

The Linux kernel's regression tracker (Thorsten Leemhuis) writes via Kernel.org Bugzilla:

FWIW, another report with similar symptoms can be found here:
https://lore.kernel.org/all/D4OUJRP8YWRM.ATQ7KASTYX5H@mbosch.me/T/#u

View: https://bugzilla.kernel.org/show_bug.cgi?id=219370#c3
You can reply to this message to join the discussion.
-- 
Deet-doot-dot, I am a bot.
Kernel.org Bugzilla (bugspray 0.1-dev)


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

* Re: link error while compiling localio.c
  2024-10-10  7:35 link error while compiling localio.c Janpieter Sollie via Bugspray Bot
                   ` (2 preceding siblings ...)
  2024-10-10 10:55 ` The Linux kernel's regression tracker (Thorsten Leemhuis) via Bugspray Bot
@ 2024-10-22 10:40 ` The Linux kernel's regression tracker (Thorsten Leemhuis) via Bugspray Bot
  2024-10-22 13:57 ` Mike Snitzer
  2024-10-22 14:00 ` Mike Snitzer via Bugspray Bot
  5 siblings, 0 replies; 8+ messages in thread
From: The Linux kernel's regression tracker (Thorsten Leemhuis) via Bugspray Bot @ 2024-10-22 10:40 UTC (permalink / raw)
  To: jlayton, linux-nfs, cel, trondmy, anna

The Linux kernel's regression tracker (Thorsten Leemhuis) writes via Kernel.org Bugzilla:

Was the problem resolved in between? 

And can I CC you on a lkml mail? This would expose your email address to the public.

View: https://bugzilla.kernel.org/show_bug.cgi?id=219370#c4
You can reply to this message to join the discussion.
-- 
Deet-doot-dot, I am a bot.
Kernel.org Bugzilla (bugspray 0.1-dev)


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

* Re: link error while compiling localio.c
  2024-10-10  7:35 link error while compiling localio.c Janpieter Sollie via Bugspray Bot
                   ` (3 preceding siblings ...)
  2024-10-22 10:40 ` The Linux kernel's regression tracker (Thorsten Leemhuis) via Bugspray Bot
@ 2024-10-22 13:57 ` Mike Snitzer
  2024-10-22 14:00 ` Mike Snitzer via Bugspray Bot
  5 siblings, 0 replies; 8+ messages in thread
From: Mike Snitzer @ 2024-10-22 13:57 UTC (permalink / raw)
  To: Janpieter Sollie via Bugspray Bot; +Cc: trondmy, anna, linux-nfs, cel, jlayton

On Thu, Oct 10, 2024 at 07:35:10AM +0000, Janpieter Sollie via Bugspray Bot wrote:
> Janpieter Sollie added an attachment on Kernel.org Bugzilla:
> 
> Created attachment 306999
> kernel .config
> 
> tried both GCC and clang:
> Clang output:
> > ld.lld: error: undefined symbol: nfs_to
> > >>> referenced by localio.c:37 (fs/nfsd/localio.c:37)
> > >>>               vmlinux.o:(init_nfsd)
> > >>> referenced by localio.c:37 (/usr/src/linux/fs/nfsd/localio.c:37)
> > >>>               vmlinux.o:(nfsd_localio_ops_init)
> > 
> > ld.lld: error: undefined symbol: nfs_uuid_invalidate_clients
> > >>> referenced by nfsctl.c:2286 (/usr/src/linux/fs/nfsd/nfsctl.c:2286)
> > >>>               vmlinux.o:(nfsd_net_pre_exit)
> > 
> > ld.lld: error: undefined symbol: nfs_uuid_is_local
> > >>> referenced by localio.c:116 (/usr/src/linux/fs/nfsd/localio.c:116)
> > >>>               vmlinux.o:(localio_proc_uuid_is_local)
> GCC output:
> ld: fs/nfsd/nfsctl.o: in function `nfsd_net_pre_exit':
> nfsctl.c:(.text+0x122): undefined reference to `nfs_uuid_invalidate_clients'
> ld: fs/nfsd/localio.o: in function `localio_proc_uuid_is_local':
> /usr/src/linux/fs/nfsd/localio.c:116:(.text+0x56): undefined reference to `nfs_uuid_is_local'
> ld: fs/nfsd/localio.o: in function `nfsd_localio_ops_init':
> /usr/src/linux/fs/nfsd/localio.c:37:(.text+0x2c9): undefined reference to `nfs_to'
> 
> Command:
> make -j64 or make LLVM=1 -j64
> 
> the config file for GCC will be attached, let me know if the clang version is desired as well
> 
> As you might guess, not trimming the unused symbols fixes the issue ...
> 
> File: config.txt (text/plain)
> Size: 130.19 KiB
> Link: https://bugzilla.kernel.org/attachment.cgi?id=306999
> ---
> kernel .config
> 
> You can reply to this message to join the discussion.
> -- 
> Deet-doot-dot, I am a bot.
> Kernel.org Bugzilla (bugspray 0.1-dev)

I will report as much via bugzilla.kernel.org but for the benefit of those cc'd:

This was fixed via v6.12-rc3 commit 009b15b57485 ("nfs_common: fix
Kconfig for NFS_COMMON_LOCALIO_SUPPORT")

In the provided kernel config:

CONFIG_NFS_FS=m
CONFIG_NFSD_V4=y
CONFIG_NFS_COMMON=y
CONFIG_NFS_COMMON_LOCALIO_SUPPORT=m
CONFIG_NFS_LOCALIO=y

My Kconfig fix will result in CONFIG_NFS_LOCALIO=m so that the symbols
are available to the nfs.ko kernel module.

But if you have any further issues, certainly let me know.

Thanks,
Mike

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

* Re: link error while compiling localio.c
  2024-10-10  7:35 link error while compiling localio.c Janpieter Sollie via Bugspray Bot
                   ` (4 preceding siblings ...)
  2024-10-22 13:57 ` Mike Snitzer
@ 2024-10-22 14:00 ` Mike Snitzer via Bugspray Bot
  2024-10-22 14:15   ` Mike Snitzer via Bugspray Bot
  5 siblings, 1 reply; 8+ messages in thread
From: Mike Snitzer via Bugspray Bot @ 2024-10-22 14:00 UTC (permalink / raw)
  To: linux-nfs, cel, trondmy, jlayton, anna

Mike Snitzer writes via Kernel.org Bugzilla:

This was fixed via v6.12-rc3 commit 009b15b57485 ("nfs_common: fix
Kconfig for NFS_COMMON_LOCALIO_SUPPORT")

In the provided kernel config:

CONFIG_NFS_FS=m
CONFIG_NFSD_V4=y
CONFIG_NFS_COMMON=y
CONFIG_NFS_COMMON_LOCALIO_SUPPORT=m
CONFIG_NFS_LOCALIO=y

My Kconfig fix will result in CONFIG_NFS_LOCALIO=m so that the symbols
are available to the nfs.ko kernel module.

But if you have any further issues, certainly let me know.

View: https://bugzilla.kernel.org/show_bug.cgi?id=219370#c5
You can reply to this message to join the discussion.
-- 
Deet-doot-dot, I am a bot.
Kernel.org Bugzilla (bugspray 0.1-dev)


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

* Re: link error while compiling localio.c
  2024-10-22 14:00 ` Mike Snitzer via Bugspray Bot
@ 2024-10-22 14:15   ` Mike Snitzer via Bugspray Bot
  0 siblings, 0 replies; 8+ messages in thread
From: Mike Snitzer via Bugspray Bot @ 2024-10-22 14:15 UTC (permalink / raw)
  To: cel, linux-nfs, anna, trondmy, jlayton

Mike Snitzer writes via Kernel.org Bugzilla:

(In reply to Mike Snitzer from comment #5)
> This was fixed via v6.12-rc3 commit 009b15b57485 ("nfs_common: fix
> Kconfig for NFS_COMMON_LOCALIO_SUPPORT")
> 
> In the provided kernel config:
> 
> CONFIG_NFS_FS=m
> CONFIG_NFSD_V4=y
> CONFIG_NFS_COMMON=y
> CONFIG_NFS_COMMON_LOCALIO_SUPPORT=m
> CONFIG_NFS_LOCALIO=y
> 
> My Kconfig fix will result in CONFIG_NFS_LOCALIO=m so that the symbols
> are available to the nfs.ko kernel module.

Sorry, to be clear, the fix results in:

CONFIG_NFS_FS=m
CONFIG_NFSD=y
CONFIG_NFSD_V4=y
CONFIG_NFS_COMMON=y
CONFIG_NFS_COMMON_LOCALIO_SUPPORT=y
CONFIG_NFS_LOCALIO=y

View: https://bugzilla.kernel.org/show_bug.cgi?id=219370#c6
You can reply to this message to join the discussion.
-- 
Deet-doot-dot, I am a bot.
Kernel.org Bugzilla (bugspray 0.1-dev)


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

end of thread, other threads:[~2024-10-22 14:15 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-10-10  7:35 link error while compiling localio.c Janpieter Sollie via Bugspray Bot
2024-10-10  7:35 ` Janpieter Sollie via Bugspray Bot
2024-10-10  8:05 ` Janpieter Sollie via Bugspray Bot
2024-10-10 10:55 ` The Linux kernel's regression tracker (Thorsten Leemhuis) via Bugspray Bot
2024-10-22 10:40 ` The Linux kernel's regression tracker (Thorsten Leemhuis) via Bugspray Bot
2024-10-22 13:57 ` Mike Snitzer
2024-10-22 14:00 ` Mike Snitzer via Bugspray Bot
2024-10-22 14:15   ` Mike Snitzer via Bugspray Bot

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