All of lore.kernel.org
 help / color / mirror / Atom feed
* [linux-stable-rc:linux-4.4.y 1401/1774] drivers/spi/spi-s3c24xx-fiq.S:52: Error: bad instruction `subsne pc, lr, #4'
@ 2021-06-30 22:38 kernel test robot
  2021-07-01 10:19 ` Arnd Bergmann
  0 siblings, 1 reply; 6+ messages in thread
From: kernel test robot @ 2021-06-30 22:38 UTC (permalink / raw)
  To: kbuild-all

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

tree:   https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux-stable-rc.git linux-4.4.y
head:   38c92ba3580f0d00e57a55caf8f880aa1a0f2a50
commit: 10a0c6746644a4fcaf1ffe2916387e17ba059517 [1401/1774] ARM: s3c: fix fiq for clang IAS
config: arm-randconfig-r034-20210630 (attached as .config)
compiler: arm-linux-gnueabi-gcc (GCC) 7.5.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/stable/linux-stable-rc.git/commit/?id=10a0c6746644a4fcaf1ffe2916387e17ba059517
        git remote add linux-stable-rc https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux-stable-rc.git
        git fetch --no-tags linux-stable-rc linux-4.4.y
        git checkout 10a0c6746644a4fcaf1ffe2916387e17ba059517
        # save the attached .config to linux build tree
        mkdir build_dir
        COMPILER_INSTALL_PATH=$HOME/0day COMPILER=gcc-7.5.0 make.cross O=build_dir ARCH=arm SHELL=/bin/bash drivers/

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 >>):

   drivers/spi/spi-s3c24xx-fiq.S: Assembler messages:
>> drivers/spi/spi-s3c24xx-fiq.S:52: Error: bad instruction `subsne pc,lr,#4'
   drivers/spi/spi-s3c24xx-fiq.S:78: Error: bad instruction `subsne pc,lr,#4'
   drivers/spi/spi-s3c24xx-fiq.S:102: Error: bad instruction `subsne pc,lr,#4'


vim +52 drivers/spi/spi-s3c24xx-fiq.S

    21	
    22		.text
    23	
    24		@ entry to these routines is as follows, with the register names
    25		@ defined in fiq.h so that they can be shared with the C files which
    26		@ setup the calling registers.
    27		@
    28		@ fiq_rirq	The base of the IRQ registers to find S3C2410_SRCPND
    29		@ fiq_rtmp	Temporary register to hold tx/rx data
    30		@ fiq_rspi	The base of the SPI register block
    31		@ fiq_rtx	The tx buffer pointer
    32		@ fiq_rrx	The rx buffer pointer
    33		@ fiq_rcount	The number of bytes to move
    34	
    35		@ each entry starts with a word entry of how long it is
    36		@ and an offset to the irq acknowledgment word
    37	
    38	ENTRY(s3c24xx_spi_fiq_rx)
    39		.word	fiq_rx_end - fiq_rx_start
    40		.word	fiq_rx_irq_ack - fiq_rx_start
    41	fiq_rx_start:
    42		ldr	fiq_rtmp, fiq_rx_irq_ack
    43		str	fiq_rtmp, [ fiq_rirq, # S3C2410_SRCPND - S3C24XX_VA_IRQ ]
    44	
    45		ldrb	fiq_rtmp, [ fiq_rspi, #  S3C2410_SPRDAT ]
    46		strb	fiq_rtmp, [ fiq_rrx ], #1
    47	
    48		mov	fiq_rtmp, #0xff
    49		strb	fiq_rtmp, [ fiq_rspi, # S3C2410_SPTDAT ]
    50	
    51		subs	fiq_rcount, fiq_rcount, #1
  > 52		subsne	pc, lr, #4		@@ return, still have work to do
    53	
    54		@@ set IRQ controller so that next op will trigger IRQ
    55		mov	fiq_rtmp, #0
    56		str	fiq_rtmp, [ fiq_rirq, # S3C2410_INTMOD  - S3C24XX_VA_IRQ ]
    57		subs	pc, lr, #4
    58	
    59	fiq_rx_irq_ack:
    60		.word	0
    61	fiq_rx_end:
    62	

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

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

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

* Re: [linux-stable-rc:linux-4.4.y 1401/1774] drivers/spi/spi-s3c24xx-fiq.S:52: Error: bad instruction `subsne pc, lr, #4'
  2021-06-30 22:38 [linux-stable-rc:linux-4.4.y 1401/1774] drivers/spi/spi-s3c24xx-fiq.S:52: Error: bad instruction `subsne pc, lr, #4' kernel test robot
@ 2021-07-01 10:19 ` Arnd Bergmann
  2021-07-01 17:40   ` Nick Desaulniers
  0 siblings, 1 reply; 6+ messages in thread
From: Arnd Bergmann @ 2021-07-01 10:19 UTC (permalink / raw)
  To: kbuild-all

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

On Thu, Jul 1, 2021 at 12:38 AM kernel test robot <lkp@intel.com> wrote:
>
> tree:   https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux-stable-rc.git linux-4.4.y
> head:   38c92ba3580f0d00e57a55caf8f880aa1a0f2a50
> commit: 10a0c6746644a4fcaf1ffe2916387e17ba059517 [1401/1774] ARM: s3c: fix fiq for clang IAS
> config: arm-randconfig-r034-20210630 (attached as .config)
> compiler: arm-linux-gnueabi-gcc (GCC) 7.5.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/stable/linux-stable-rc.git/commit/?id=10a0c6746644a4fcaf1ffe2916387e17ba059517
>         git remote add linux-stable-rc https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux-stable-rc.git
>         git fetch --no-tags linux-stable-rc linux-4.4.y
>         git checkout 10a0c6746644a4fcaf1ffe2916387e17ba059517
>         # save the attached .config to linux build tree
>         mkdir build_dir
>         COMPILER_INSTALL_PATH=$HOME/0day COMPILER=gcc-7.5.0 make.cross O=build_dir ARCH=arm SHELL=/bin/bash drivers/
>
> 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 >>):
>
>    drivers/spi/spi-s3c24xx-fiq.S: Assembler messages:
> >> drivers/spi/spi-s3c24xx-fiq.S:52: Error: bad instruction `subsne pc,lr,#4'
>    drivers/spi/spi-s3c24xx-fiq.S:78: Error: bad instruction `subsne pc,lr,#4'
>    drivers/spi/spi-s3c24xx-fiq.S:102: Error: bad instruction `subsne pc,lr,#4'

Ah, this must be a kernel that never got the unified assembler syntax fixes
that this requires. It seems they went into linux-5.1 but nothing before that,
though they may have been backported.

Nick or Nathan, what is the earliest lts kernel series that you would expect
to work with clang IAS? Should we just drop these fixes for all 4.x.y versions?

      Arnd

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

* Re: [linux-stable-rc:linux-4.4.y 1401/1774] drivers/spi/spi-s3c24xx-fiq.S:52: Error: bad instruction `subsne pc, lr, #4'
  2021-07-01 10:19 ` Arnd Bergmann
@ 2021-07-01 17:40   ` Nick Desaulniers
  2021-07-01 19:06     ` Nathan Chancellor
  0 siblings, 1 reply; 6+ messages in thread
From: Nick Desaulniers @ 2021-07-01 17:40 UTC (permalink / raw)
  To: kbuild-all

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

On Thu, Jul 1, 2021 at 3:20 AM Arnd Bergmann <arnd@arndb.de> wrote:
>
> On Thu, Jul 1, 2021 at 12:38 AM kernel test robot <lkp@intel.com> wrote:
> >
> > tree:   https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux-stable-rc.git linux-4.4.y
> > head:   38c92ba3580f0d00e57a55caf8f880aa1a0f2a50
> > commit: 10a0c6746644a4fcaf1ffe2916387e17ba059517 [1401/1774] ARM: s3c: fix fiq for clang IAS
> > config: arm-randconfig-r034-20210630 (attached as .config)
> > compiler: arm-linux-gnueabi-gcc (GCC) 7.5.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/stable/linux-stable-rc.git/commit/?id=10a0c6746644a4fcaf1ffe2916387e17ba059517
> >         git remote add linux-stable-rc https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux-stable-rc.git
> >         git fetch --no-tags linux-stable-rc linux-4.4.y
> >         git checkout 10a0c6746644a4fcaf1ffe2916387e17ba059517
> >         # save the attached .config to linux build tree
> >         mkdir build_dir
> >         COMPILER_INSTALL_PATH=$HOME/0day COMPILER=gcc-7.5.0 make.cross O=build_dir ARCH=arm SHELL=/bin/bash drivers/
> >
> > 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 >>):
> >
> >    drivers/spi/spi-s3c24xx-fiq.S: Assembler messages:
> > >> drivers/spi/spi-s3c24xx-fiq.S:52: Error: bad instruction `subsne pc,lr,#4'
> >    drivers/spi/spi-s3c24xx-fiq.S:78: Error: bad instruction `subsne pc,lr,#4'
> >    drivers/spi/spi-s3c24xx-fiq.S:102: Error: bad instruction `subsne pc,lr,#4'
>
> Ah, this must be a kernel that never got the unified assembler syntax fixes
> that this requires. It seems they went into linux-5.1 but nothing before that,
> though they may have been backported.
>
> Nick or Nathan, what is the earliest lts kernel series that you would expect
> to work with clang IAS?

5.4+ for A32.

> Should we just drop these fixes for all 4.x.y versions?

Sure, but I'm curious what is missing here that exists further
upstream?  subsne is the correct syntax, isn't it?

F5.1.249 SUB, SUBS (SP minus register)

>> If the destination register is the PC
>> The SUBS variant of the instruction performs an exception return without the use of the stack. Arm
deprecates use of this instruction.
-- 
Thanks,
~Nick Desaulniers

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

* Re: [linux-stable-rc:linux-4.4.y 1401/1774] drivers/spi/spi-s3c24xx-fiq.S:52: Error: bad instruction `subsne pc, lr, #4'
  2021-07-01 17:40   ` Nick Desaulniers
@ 2021-07-01 19:06     ` Nathan Chancellor
  2021-07-01 19:41       ` Nick Desaulniers
  0 siblings, 1 reply; 6+ messages in thread
From: Nathan Chancellor @ 2021-07-01 19:06 UTC (permalink / raw)
  To: kbuild-all

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



On 7/1/2021 10:40 AM, Nick Desaulniers wrote:
> On Thu, Jul 1, 2021 at 3:20 AM Arnd Bergmann <arnd@arndb.de> wrote:
>>
>> On Thu, Jul 1, 2021 at 12:38 AM kernel test robot <lkp@intel.com> wrote:
>>>
>>> tree:   https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux-stable-rc.git linux-4.4.y
>>> head:   38c92ba3580f0d00e57a55caf8f880aa1a0f2a50
>>> commit: 10a0c6746644a4fcaf1ffe2916387e17ba059517 [1401/1774] ARM: s3c: fix fiq for clang IAS
>>> config: arm-randconfig-r034-20210630 (attached as .config)
>>> compiler: arm-linux-gnueabi-gcc (GCC) 7.5.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/stable/linux-stable-rc.git/commit/?id=10a0c6746644a4fcaf1ffe2916387e17ba059517
>>>          git remote add linux-stable-rc https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux-stable-rc.git
>>>          git fetch --no-tags linux-stable-rc linux-4.4.y
>>>          git checkout 10a0c6746644a4fcaf1ffe2916387e17ba059517
>>>          # save the attached .config to linux build tree
>>>          mkdir build_dir
>>>          COMPILER_INSTALL_PATH=$HOME/0day COMPILER=gcc-7.5.0 make.cross O=build_dir ARCH=arm SHELL=/bin/bash drivers/
>>>
>>> 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 >>):
>>>
>>>     drivers/spi/spi-s3c24xx-fiq.S: Assembler messages:
>>>>> drivers/spi/spi-s3c24xx-fiq.S:52: Error: bad instruction `subsne pc,lr,#4'
>>>     drivers/spi/spi-s3c24xx-fiq.S:78: Error: bad instruction `subsne pc,lr,#4'
>>>     drivers/spi/spi-s3c24xx-fiq.S:102: Error: bad instruction `subsne pc,lr,#4'
>>
>> Ah, this must be a kernel that never got the unified assembler syntax fixes
>> that this requires. It seems they went into linux-5.1 but nothing before that,
>> though they may have been backported.
>>
>> Nick or Nathan, what is the earliest lts kernel series that you would expect
>> to work with clang IAS?
> 
> 5.4+ for A32.
> 
>> Should we just drop these fixes for all 4.x.y versions?
> 
> Sure, but I'm curious what is missing here that exists further
> upstream?  subsne is the correct syntax, isn't it?

Isn't this unified syntax though? Unified syntax was not used 
universally until commit 75fea300d73a ("ARM: 8723/2: always assume the 
"unified" syntax for assembly code"). I backported that to 4.9 to fix 
this error, it seems like 4.4 needs it as well. I can test that and send 
it along.

Cheers,
Nathan

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

* Re: [linux-stable-rc:linux-4.4.y 1401/1774] drivers/spi/spi-s3c24xx-fiq.S:52: Error: bad instruction `subsne pc, lr, #4'
  2021-07-01 19:06     ` Nathan Chancellor
@ 2021-07-01 19:41       ` Nick Desaulniers
  2021-07-01 19:53         ` Nathan Chancellor
  0 siblings, 1 reply; 6+ messages in thread
From: Nick Desaulniers @ 2021-07-01 19:41 UTC (permalink / raw)
  To: kbuild-all

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

On Thu, Jul 1, 2021 at 12:07 PM Nathan Chancellor <nathan@kernel.org> wrote:
>
>
>
> On 7/1/2021 10:40 AM, Nick Desaulniers wrote:
> > On Thu, Jul 1, 2021 at 3:20 AM Arnd Bergmann <arnd@arndb.de> wrote:
> >>
> >> On Thu, Jul 1, 2021 at 12:38 AM kernel test robot <lkp@intel.com> wrote:
> >>>
> >>> tree:   https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux-stable-rc.git linux-4.4.y
> >>> head:   38c92ba3580f0d00e57a55caf8f880aa1a0f2a50
> >>> commit: 10a0c6746644a4fcaf1ffe2916387e17ba059517 [1401/1774] ARM: s3c: fix fiq for clang IAS
> >>> config: arm-randconfig-r034-20210630 (attached as .config)
> >>> compiler: arm-linux-gnueabi-gcc (GCC) 7.5.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/stable/linux-stable-rc.git/commit/?id=10a0c6746644a4fcaf1ffe2916387e17ba059517
> >>>          git remote add linux-stable-rc https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux-stable-rc.git
> >>>          git fetch --no-tags linux-stable-rc linux-4.4.y
> >>>          git checkout 10a0c6746644a4fcaf1ffe2916387e17ba059517
> >>>          # save the attached .config to linux build tree
> >>>          mkdir build_dir
> >>>          COMPILER_INSTALL_PATH=$HOME/0day COMPILER=gcc-7.5.0 make.cross O=build_dir ARCH=arm SHELL=/bin/bash drivers/
> >>>
> >>> 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 >>):
> >>>
> >>>     drivers/spi/spi-s3c24xx-fiq.S: Assembler messages:
> >>>>> drivers/spi/spi-s3c24xx-fiq.S:52: Error: bad instruction `subsne pc,lr,#4'
> >>>     drivers/spi/spi-s3c24xx-fiq.S:78: Error: bad instruction `subsne pc,lr,#4'
> >>>     drivers/spi/spi-s3c24xx-fiq.S:102: Error: bad instruction `subsne pc,lr,#4'
> >>
> >> Ah, this must be a kernel that never got the unified assembler syntax fixes
> >> that this requires. It seems they went into linux-5.1 but nothing before that,
> >> though they may have been backported.
> >>
> >> Nick or Nathan, what is the earliest lts kernel series that you would expect
> >> to work with clang IAS?
> >
> > 5.4+ for A32.
> >
> >> Should we just drop these fixes for all 4.x.y versions?
> >
> > Sure, but I'm curious what is missing here that exists further
> > upstream?  subsne is the correct syntax, isn't it?
>
> Isn't this unified syntax though? Unified syntax was not used
> universally until commit 75fea300d73a ("ARM: 8723/2: always assume the
> "unified" syntax for assembly code"). I backported that to 4.9 to fix
> this error, it seems like 4.4 needs it as well. I can test that and send
> it along.

Ah, right, using unified syntax without the assembler directive
produces these errors in GAS.  It may be simpler to drop this patch
from stable.
-- 
Thanks,
~Nick Desaulniers

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

* Re: [linux-stable-rc:linux-4.4.y 1401/1774] drivers/spi/spi-s3c24xx-fiq.S:52: Error: bad instruction `subsne pc, lr, #4'
  2021-07-01 19:41       ` Nick Desaulniers
@ 2021-07-01 19:53         ` Nathan Chancellor
  0 siblings, 0 replies; 6+ messages in thread
From: Nathan Chancellor @ 2021-07-01 19:53 UTC (permalink / raw)
  To: kbuild-all

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

On 7/1/2021 12:41 PM, Nick Desaulniers wrote:
> On Thu, Jul 1, 2021 at 12:07 PM Nathan Chancellor <nathan@kernel.org> wrote:
>>
>> On 7/1/2021 10:40 AM, Nick Desaulniers wrote:
>>> On Thu, Jul 1, 2021 at 3:20 AM Arnd Bergmann <arnd@arndb.de> wrote:
>>>>
>>>> On Thu, Jul 1, 2021 at 12:38 AM kernel test robot <lkp@intel.com> wrote:
>>>>>
>>>>> tree:   https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux-stable-rc.git linux-4.4.y
>>>>> head:   38c92ba3580f0d00e57a55caf8f880aa1a0f2a50
>>>>> commit: 10a0c6746644a4fcaf1ffe2916387e17ba059517 [1401/1774] ARM: s3c: fix fiq for clang IAS
>>>>> config: arm-randconfig-r034-20210630 (attached as .config)
>>>>> compiler: arm-linux-gnueabi-gcc (GCC) 7.5.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/stable/linux-stable-rc.git/commit/?id=10a0c6746644a4fcaf1ffe2916387e17ba059517
>>>>>           git remote add linux-stable-rc https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux-stable-rc.git
>>>>>           git fetch --no-tags linux-stable-rc linux-4.4.y
>>>>>           git checkout 10a0c6746644a4fcaf1ffe2916387e17ba059517
>>>>>           # save the attached .config to linux build tree
>>>>>           mkdir build_dir
>>>>>           COMPILER_INSTALL_PATH=$HOME/0day COMPILER=gcc-7.5.0 make.cross O=build_dir ARCH=arm SHELL=/bin/bash drivers/
>>>>>
>>>>> 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 >>):
>>>>>
>>>>>      drivers/spi/spi-s3c24xx-fiq.S: Assembler messages:
>>>>>>> drivers/spi/spi-s3c24xx-fiq.S:52: Error: bad instruction `subsne pc,lr,#4'
>>>>>      drivers/spi/spi-s3c24xx-fiq.S:78: Error: bad instruction `subsne pc,lr,#4'
>>>>>      drivers/spi/spi-s3c24xx-fiq.S:102: Error: bad instruction `subsne pc,lr,#4'
>>>>
>>>> Ah, this must be a kernel that never got the unified assembler syntax fixes
>>>> that this requires. It seems they went into linux-5.1 but nothing before that,
>>>> though they may have been backported.
>>>>
>>>> Nick or Nathan, what is the earliest lts kernel series that you would expect
>>>> to work with clang IAS?
>>>
>>> 5.4+ for A32.
>>>
>>>> Should we just drop these fixes for all 4.x.y versions?
>>>
>>> Sure, but I'm curious what is missing here that exists further
>>> upstream?  subsne is the correct syntax, isn't it?
>>
>> Isn't this unified syntax though? Unified syntax was not used
>> universally until commit 75fea300d73a ("ARM: 8723/2: always assume the
>> "unified" syntax for assembly code"). I backported that to 4.9 to fix
>> this error, it seems like 4.4 needs it as well. I can test that and send
>> it along.
> 
> Ah, right, using unified syntax without the assembler directive
> produces these errors in GAS.  It may be simpler to drop this patch
> from stable.

This patch was a part of the 4.4.259 release back in March 3rd of this 
year so we would have to revert it. I do not have any strong opinion but 
the backport is trivial and all the arch/arm configs on 4.4 still pass 
with it against GCC 8. The choice is up to you all.

Cheers,
Nathan

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

end of thread, other threads:[~2021-07-01 19:53 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-06-30 22:38 [linux-stable-rc:linux-4.4.y 1401/1774] drivers/spi/spi-s3c24xx-fiq.S:52: Error: bad instruction `subsne pc, lr, #4' kernel test robot
2021-07-01 10:19 ` Arnd Bergmann
2021-07-01 17:40   ` Nick Desaulniers
2021-07-01 19:06     ` Nathan Chancellor
2021-07-01 19:41       ` Nick Desaulniers
2021-07-01 19:53         ` Nathan Chancellor

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.