linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* (.text.ks8851_probe_common+0x370): undefined reference to `__this_module'
@ 2021-02-22  6:12 kernel test robot
  2021-02-24  2:38 ` Randy Dunlap
  0 siblings, 1 reply; 6+ messages in thread
From: kernel test robot @ 2021-02-22  6:12 UTC (permalink / raw)
  To: Marek Vasut; +Cc: kbuild-all, linux-kernel, Andrew Lunn

[-- Attachment #1: Type: text/plain, Size: 1573 bytes --]

Hi Marek,

FYI, the error/warning still remains.

tree:   https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git master
head:   31caf8b2a847214be856f843e251fc2ed2cd1075
commit: ef3631220d2b3d8d14cf64464760505baa60d6ac net: ks8851: Register MDIO bus and the internal PHY
date:   7 weeks ago
config: parisc-randconfig-r034-20210222 (attached as .config)
compiler: hppa-linux-gcc (GCC) 9.3.0
reproduce (this is a W=1 build):
        wget https://raw.githubusercontent.com/intel/lkp-tests/master/sbin/make.cross -O ~/bin/make.cross
        chmod +x ~/bin/make.cross
        # https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/?id=ef3631220d2b3d8d14cf64464760505baa60d6ac
        git remote add linus https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
        git fetch --no-tags linus master
        git checkout ef3631220d2b3d8d14cf64464760505baa60d6ac
        # save the attached .config to linux build tree
        COMPILER_INSTALL_PATH=$HOME/0day COMPILER=gcc-9.3.0 make.cross ARCH=parisc 

If you fix the issue, kindly add following tag as appropriate
Reported-by: kernel test robot <lkp@intel.com>

All errors (new ones prefixed by >>):

   hppa-linux-ld: drivers/net/ethernet/micrel/ks8851_common.o: in function `ks8851_probe_common':
>> (.text.ks8851_probe_common+0x370): undefined reference to `__this_module'
>> hppa-linux-ld: (.text.ks8851_probe_common+0x374): undefined reference to `__this_module'

---
0-DAY CI Kernel Test Service, Intel Corporation
https://lists.01.org/hyperkitty/list/kbuild-all@lists.01.org

[-- Attachment #2: .config.gz --]
[-- Type: application/gzip, Size: 37050 bytes --]

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

* Re: (.text.ks8851_probe_common+0x370): undefined reference to `__this_module'
  2021-02-22  6:12 (.text.ks8851_probe_common+0x370): undefined reference to `__this_module' kernel test robot
@ 2021-02-24  2:38 ` Randy Dunlap
  2021-02-24  8:38   ` Arnd Bergmann
  0 siblings, 1 reply; 6+ messages in thread
From: Randy Dunlap @ 2021-02-24  2:38 UTC (permalink / raw)
  To: kernel test robot, Marek Vasut, arnd
  Cc: kbuild-all, linux-kernel, Andrew Lunn

On 2/21/21 10:12 PM, kernel test robot wrote:
> Hi Marek,
> 
> FYI, the error/warning still remains.
> 
> tree:   https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git master
> head:   31caf8b2a847214be856f843e251fc2ed2cd1075
> commit: ef3631220d2b3d8d14cf64464760505baa60d6ac net: ks8851: Register MDIO bus and the internal PHY
> date:   7 weeks ago
> config: parisc-randconfig-r034-20210222 (attached as .config)
> compiler: hppa-linux-gcc (GCC) 9.3.0
> reproduce (this is a W=1 build):
>          wget https://raw.githubusercontent.com/intel/lkp-tests/master/sbin/make.cross -O ~/bin/make.cross
>          chmod +x ~/bin/make.cross
>          # https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/?id=ef3631220d2b3d8d14cf64464760505baa60d6ac
>          git remote add linus https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
>          git fetch --no-tags linus master
>          git checkout ef3631220d2b3d8d14cf64464760505baa60d6ac
>          # save the attached .config to linux build tree
>          COMPILER_INSTALL_PATH=$HOME/0day COMPILER=gcc-9.3.0 make.cross ARCH=parisc
> 
> If you fix the issue, kindly add following tag as appropriate
> Reported-by: kernel test robot <lkp@intel.com>
> 
> All errors (new ones prefixed by >>):
> 
>     hppa-linux-ld: drivers/net/ethernet/micrel/ks8851_common.o: in function `ks8851_probe_common':
>>> (.text.ks8851_probe_common+0x370): undefined reference to `__this_module'
>>> hppa-linux-ld: (.text.ks8851_probe_common+0x374): undefined reference to `__this_module'

Hey Arnd-

I wanted to see if you had any ideas about this problem.

CONFIG_KS8851=y
CONFIG_KS8851_MLL=m

The problem is that 2 drivers share some common code, but in one case
the shared code is builtin and for the other driver it is a loadable
module. The common code is first built as builtin, so it does not have
the "__this_module" symbol.

Thanks.

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

* Re: (.text.ks8851_probe_common+0x370): undefined reference to `__this_module'
  2021-02-24  2:38 ` Randy Dunlap
@ 2021-02-24  8:38   ` Arnd Bergmann
  2021-02-24 11:02     ` Marek Vasut
  2021-04-20 16:59     ` Randy Dunlap
  0 siblings, 2 replies; 6+ messages in thread
From: Arnd Bergmann @ 2021-02-24  8:38 UTC (permalink / raw)
  To: Randy Dunlap
  Cc: kernel test robot, Marek Vasut, Arnd Bergmann, kbuild-all,
	linux-kernel, Andrew Lunn

On Wed, Feb 24, 2021 at 3:38 AM Randy Dunlap <rdunlap@infradead.org> wrote:
>
> On 2/21/21 10:12 PM, kernel test robot wrote:
> > Hi Marek,
> >
> > FYI, the error/warning still remains.
> >
> > tree:   https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git master
> > head:   31caf8b2a847214be856f843e251fc2ed2cd1075
> > commit: ef3631220d2b3d8d14cf64464760505baa60d6ac net: ks8851: Register MDIO bus and the internal PHY
> > date:   7 weeks ago
> > config: parisc-randconfig-r034-20210222 (attached as .config)
> > compiler: hppa-linux-gcc (GCC) 9.3.0
> > reproduce (this is a W=1 build):
> >          wget https://raw.githubusercontent.com/intel/lkp-tests/master/sbin/make.cross -O ~/bin/make.cross
> >          chmod +x ~/bin/make.cross
> >          # https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/?id=ef3631220d2b3d8d14cf64464760505baa60d6ac
> >          git remote add linus https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
> >          git fetch --no-tags linus master
> >          git checkout ef3631220d2b3d8d14cf64464760505baa60d6ac
> >          # save the attached .config to linux build tree
> >          COMPILER_INSTALL_PATH=$HOME/0day COMPILER=gcc-9.3.0 make.cross ARCH=parisc
> >
> > If you fix the issue, kindly add following tag as appropriate
> > Reported-by: kernel test robot <lkp@intel.com>
> >
> > All errors (new ones prefixed by >>):
> >
> >     hppa-linux-ld: drivers/net/ethernet/micrel/ks8851_common.o: in function `ks8851_probe_common':
> >>> (.text.ks8851_probe_common+0x370): undefined reference to `__this_module'
> >>> hppa-linux-ld: (.text.ks8851_probe_common+0x374): undefined reference to `__this_module'
>
> Hey Arnd-
>
> I wanted to see if you had any ideas about this problem.
>
> CONFIG_KS8851=y
> CONFIG_KS8851_MLL=m
>
> The problem is that 2 drivers share some common code, but in one case
> the shared code is builtin and for the other driver it is a loadable
> module. The common code is first built as builtin, so it does not have
> the "__this_module" symbol.

This is the patch I sent for it:

https://lore.kernel.org/lkml/20210125121937.3900988-1-arnd@kernel.org/T/#u

        Arnd

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

* Re: (.text.ks8851_probe_common+0x370): undefined reference to `__this_module'
  2021-02-24  8:38   ` Arnd Bergmann
@ 2021-02-24 11:02     ` Marek Vasut
  2021-02-24 16:05       ` Randy Dunlap
  2021-04-20 16:59     ` Randy Dunlap
  1 sibling, 1 reply; 6+ messages in thread
From: Marek Vasut @ 2021-02-24 11:02 UTC (permalink / raw)
  To: Arnd Bergmann, Randy Dunlap
  Cc: kernel test robot, Arnd Bergmann, kbuild-all, linux-kernel, Andrew Lunn

On 2/24/21 9:38 AM, Arnd Bergmann wrote:
> On Wed, Feb 24, 2021 at 3:38 AM Randy Dunlap <rdunlap@infradead.org> wrote:
>>
>> On 2/21/21 10:12 PM, kernel test robot wrote:
>>> Hi Marek,
>>>
>>> FYI, the error/warning still remains.
>>>
>>> tree:   https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git master
>>> head:   31caf8b2a847214be856f843e251fc2ed2cd1075
>>> commit: ef3631220d2b3d8d14cf64464760505baa60d6ac net: ks8851: Register MDIO bus and the internal PHY
>>> date:   7 weeks ago
>>> config: parisc-randconfig-r034-20210222 (attached as .config)
>>> compiler: hppa-linux-gcc (GCC) 9.3.0
>>> reproduce (this is a W=1 build):
>>>           wget https://raw.githubusercontent.com/intel/lkp-tests/master/sbin/make.cross -O ~/bin/make.cross
>>>           chmod +x ~/bin/make.cross
>>>           # https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/?id=ef3631220d2b3d8d14cf64464760505baa60d6ac
>>>           git remote add linus https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
>>>           git fetch --no-tags linus master
>>>           git checkout ef3631220d2b3d8d14cf64464760505baa60d6ac
>>>           # save the attached .config to linux build tree
>>>           COMPILER_INSTALL_PATH=$HOME/0day COMPILER=gcc-9.3.0 make.cross ARCH=parisc
>>>
>>> If you fix the issue, kindly add following tag as appropriate
>>> Reported-by: kernel test robot <lkp@intel.com>
>>>
>>> All errors (new ones prefixed by >>):
>>>
>>>      hppa-linux-ld: drivers/net/ethernet/micrel/ks8851_common.o: in function `ks8851_probe_common':
>>>>> (.text.ks8851_probe_common+0x370): undefined reference to `__this_module'
>>>>> hppa-linux-ld: (.text.ks8851_probe_common+0x374): undefined reference to `__this_module'
>>
>> Hey Arnd-
>>
>> I wanted to see if you had any ideas about this problem.
>>
>> CONFIG_KS8851=y
>> CONFIG_KS8851_MLL=m
>>
>> The problem is that 2 drivers share some common code, but in one case
>> the shared code is builtin and for the other driver it is a loadable
>> module. The common code is first built as builtin, so it does not have
>> the "__this_module" symbol.
> 
> This is the patch I sent for it:
> 
> https://lore.kernel.org/lkml/20210125121937.3900988-1-arnd@kernel.org/T/#u

I was under the impression that the patch was already applied, wasn't it?

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

* Re: (.text.ks8851_probe_common+0x370): undefined reference to `__this_module'
  2021-02-24 11:02     ` Marek Vasut
@ 2021-02-24 16:05       ` Randy Dunlap
  0 siblings, 0 replies; 6+ messages in thread
From: Randy Dunlap @ 2021-02-24 16:05 UTC (permalink / raw)
  To: Marek Vasut, Arnd Bergmann
  Cc: kernel test robot, Arnd Bergmann, kbuild-all, linux-kernel, Andrew Lunn

On 2/24/21 3:02 AM, Marek Vasut wrote:
> On 2/24/21 9:38 AM, Arnd Bergmann wrote:
>> On Wed, Feb 24, 2021 at 3:38 AM Randy Dunlap <rdunlap@infradead.org> wrote:
>>>
>>> On 2/21/21 10:12 PM, kernel test robot wrote:
>>>> Hi Marek,
>>>>
>>>> FYI, the error/warning still remains.
>>>>
>>>> tree:   https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git master
>>>> head:   31caf8b2a847214be856f843e251fc2ed2cd1075
>>>> commit: ef3631220d2b3d8d14cf64464760505baa60d6ac net: ks8851: Register MDIO bus and the internal PHY
>>>> date:   7 weeks ago
>>>> config: parisc-randconfig-r034-20210222 (attached as .config)
>>>> compiler: hppa-linux-gcc (GCC) 9.3.0
>>>> reproduce (this is a W=1 build):
>>>>           wget https://raw.githubusercontent.com/intel/lkp-tests/master/sbin/make.cross -O ~/bin/make.cross
>>>>           chmod +x ~/bin/make.cross
>>>>           # https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/?id=ef3631220d2b3d8d14cf64464760505baa60d6ac
>>>>           git remote add linus https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
>>>>           git fetch --no-tags linus master
>>>>           git checkout ef3631220d2b3d8d14cf64464760505baa60d6ac
>>>>           # save the attached .config to linux build tree
>>>>           COMPILER_INSTALL_PATH=$HOME/0day COMPILER=gcc-9.3.0 make.cross ARCH=parisc
>>>>
>>>> If you fix the issue, kindly add following tag as appropriate
>>>> Reported-by: kernel test robot <lkp@intel.com>
>>>>
>>>> All errors (new ones prefixed by >>):
>>>>
>>>>      hppa-linux-ld: drivers/net/ethernet/micrel/ks8851_common.o: in function `ks8851_probe_common':
>>>>>> (.text.ks8851_probe_common+0x370): undefined reference to `__this_module'
>>>>>> hppa-linux-ld: (.text.ks8851_probe_common+0x374): undefined reference to `__this_module'
>>>
>>> Hey Arnd-
>>>
>>> I wanted to see if you had any ideas about this problem.
>>>
>>> CONFIG_KS8851=y
>>> CONFIG_KS8851_MLL=m
>>>
>>> The problem is that 2 drivers share some common code, but in one case
>>> the shared code is builtin and for the other driver it is a loadable
>>> module. The common code is first built as builtin, so it does not have
>>> the "__this_module" symbol.
>>
>> This is the patch I sent for it:
>>
>> https://lore.kernel.org/lkml/20210125121937.3900988-1-arnd@kernel.org/T/#u

Thanks!

> I was under the impression that the patch was already applied, wasn't it?

Not that I can see/tell.

-- 
~Randy


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

* Re: (.text.ks8851_probe_common+0x370): undefined reference to `__this_module'
  2021-02-24  8:38   ` Arnd Bergmann
  2021-02-24 11:02     ` Marek Vasut
@ 2021-04-20 16:59     ` Randy Dunlap
  1 sibling, 0 replies; 6+ messages in thread
From: Randy Dunlap @ 2021-04-20 16:59 UTC (permalink / raw)
  To: Arnd Bergmann
  Cc: kernel test robot, Marek Vasut, Arnd Bergmann, kbuild-all,
	linux-kernel, Andrew Lunn

On 2/24/21 12:38 AM, Arnd Bergmann wrote:
> On Wed, Feb 24, 2021 at 3:38 AM Randy Dunlap <rdunlap@infradead.org> wrote:
>>
>> On 2/21/21 10:12 PM, kernel test robot wrote:
>>> Hi Marek,
>>>
>>> FYI, the error/warning still remains.
>>>
>>> tree:   https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git master
>>> head:   31caf8b2a847214be856f843e251fc2ed2cd1075
>>> commit: ef3631220d2b3d8d14cf64464760505baa60d6ac net: ks8851: Register MDIO bus and the internal PHY
>>> date:   7 weeks ago
>>> config: parisc-randconfig-r034-20210222 (attached as .config)
>>> compiler: hppa-linux-gcc (GCC) 9.3.0
>>> reproduce (this is a W=1 build):
>>>          wget https://raw.githubusercontent.com/intel/lkp-tests/master/sbin/make.cross -O ~/bin/make.cross
>>>          chmod +x ~/bin/make.cross
>>>          # https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/?id=ef3631220d2b3d8d14cf64464760505baa60d6ac
>>>          git remote add linus https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
>>>          git fetch --no-tags linus master
>>>          git checkout ef3631220d2b3d8d14cf64464760505baa60d6ac
>>>          # save the attached .config to linux build tree
>>>          COMPILER_INSTALL_PATH=$HOME/0day COMPILER=gcc-9.3.0 make.cross ARCH=parisc
>>>
>>> If you fix the issue, kindly add following tag as appropriate
>>> Reported-by: kernel test robot <lkp@intel.com>
>>>
>>> All errors (new ones prefixed by >>):
>>>
>>>     hppa-linux-ld: drivers/net/ethernet/micrel/ks8851_common.o: in function `ks8851_probe_common':
>>>>> (.text.ks8851_probe_common+0x370): undefined reference to `__this_module'
>>>>> hppa-linux-ld: (.text.ks8851_probe_common+0x374): undefined reference to `__this_module'
>>
>> Hey Arnd-
>>
>> I wanted to see if you had any ideas about this problem.
>>
>> CONFIG_KS8851=y
>> CONFIG_KS8851_MLL=m
>>
>> The problem is that 2 drivers share some common code, but in one case
>> the shared code is builtin and for the other driver it is a loadable
>> module. The common code is first built as builtin, so it does not have
>> the "__this_module" symbol.
> 
> This is the patch I sent for it:
> 
> https://lore.kernel.org/lkml/20210125121937.3900988-1-arnd@kernel.org/T/#u

It would be nice to have some patch merged. :)

Acked-by: Randy Dunlap <rdunlap@infradead.org> # build-tested

thanks.
-- 
~Randy


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

end of thread, other threads:[~2021-04-20 17:00 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-02-22  6:12 (.text.ks8851_probe_common+0x370): undefined reference to `__this_module' kernel test robot
2021-02-24  2:38 ` Randy Dunlap
2021-02-24  8:38   ` Arnd Bergmann
2021-02-24 11:02     ` Marek Vasut
2021-02-24 16:05       ` Randy Dunlap
2021-04-20 16:59     ` Randy Dunlap

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).