* linux-next: Tree for Oct 9th
@ 2017-10-09 21:21 Mark Brown
2017-10-10 16:27 ` linux-next: Tree for Oct 9th (drivers/dma/stm32-mdma.c) Randy Dunlap
` (2 more replies)
0 siblings, 3 replies; 9+ messages in thread
From: Mark Brown @ 2017-10-09 21:21 UTC (permalink / raw)
To: Linux-Next Mailing List; +Cc: Linux Kernel Mailing List
[-- Attachment #1: Type: text/plain, Size: 1075 bytes --]
For my birthday I've gone and got myself a linux-next tree:
Changes since 20170929:
The net-next and drm trees lost their build failures but the rcu tree
gained one.
I have created today's linux-next tree at
git://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git
(patches at http://www.kernel.org/pub/linux/kernel/next/ ). If you
are tracking the linux-next tree using git, you should not use "git pull"
to do so as that will try to merge the new linux-next release with the
old one. You should use "git fetch" and checkout or reset to the new
master.
You can see which trees have been included by looking in the Next/Trees
file in the source. There are also quilt-import.log and merge.log
files in the Next directory. Between each merge, the tree was built
with an arm64 defconfig, an allmodconfig (with
CONFIG_BUILD_DOCSRC=n) for x86_64, a multi_v7_defconfig for arm and a
native build of tools/perf. After the final fixups (if any), I do an
x86_64 modules_install followed by builds for x86_64 allnoconfig,
and arm64 allnoconfig
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 488 bytes --]
^ permalink raw reply [flat|nested] 9+ messages in thread* Re: linux-next: Tree for Oct 9th (drivers/dma/stm32-mdma.c)
2017-10-09 21:21 linux-next: Tree for Oct 9th Mark Brown
@ 2017-10-10 16:27 ` Randy Dunlap
2017-10-11 12:55 ` Vinod Koul
2017-10-10 17:33 ` linux-next: Tree for Oct 9th (of: unittest: testcases) Randy Dunlap
2017-10-10 23:18 ` linux-next: No tree for Oct 10th Mark Brown
2 siblings, 1 reply; 9+ messages in thread
From: Randy Dunlap @ 2017-10-10 16:27 UTC (permalink / raw)
To: Mark Brown, Linux-Next Mailing List
Cc: Linux Kernel Mailing List, Pierre-Yves Mordret,
M'boumba Cedric Madianga, dmaengine@vger.kernel.org
On 10/09/17 14:21, Mark Brown wrote:
> For my birthday I've gone and got myself a linux-next tree:
>
> Changes since 20170929:
>
on i386:
drivers/dma/stm32-mdma.o: In function `stm32_mdma_prep_dma_memcpy':
stm32-mdma.c:(.text+0x1174): undefined reference to `__umoddi3'
stm32-mdma.c:(.text+0x1208): undefined reference to `__umoddi3'
stm32-mdma.c:(.text+0x134c): undefined reference to `__umoddi3'
stm32-mdma.c:(.text+0x141d): undefined reference to `__umoddi3'
--
~Randy
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: linux-next: Tree for Oct 9th (drivers/dma/stm32-mdma.c)
2017-10-10 16:27 ` linux-next: Tree for Oct 9th (drivers/dma/stm32-mdma.c) Randy Dunlap
@ 2017-10-11 12:55 ` Vinod Koul
2017-10-11 16:19 ` Randy Dunlap
0 siblings, 1 reply; 9+ messages in thread
From: Vinod Koul @ 2017-10-11 12:55 UTC (permalink / raw)
To: Randy Dunlap
Cc: Mark Brown, Linux-Next Mailing List, Linux Kernel Mailing List,
Pierre-Yves Mordret, M'boumba Cedric Madianga,
dmaengine@vger.kernel.org
On Tue, Oct 10, 2017 at 09:27:18AM -0700, Randy Dunlap wrote:
> On 10/09/17 14:21, Mark Brown wrote:
> > For my birthday I've gone and got myself a linux-next tree:
Nice thing you chose to do for the day :D
> >
> > Changes since 20170929:
> >
>
> on i386:
>
> drivers/dma/stm32-mdma.o: In function `stm32_mdma_prep_dma_memcpy':
> stm32-mdma.c:(.text+0x1174): undefined reference to `__umoddi3'
> stm32-mdma.c:(.text+0x1208): undefined reference to `__umoddi3'
> stm32-mdma.c:(.text+0x134c): undefined reference to `__umoddi3'
> stm32-mdma.c:(.text+0x141d): undefined reference to `__umoddi3'
The driver uses DIV_ROUND_UP but this should have worked, let me check more.
Was generic i386 defconfig used or some other config
--
~Vinod
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: linux-next: Tree for Oct 9th (drivers/dma/stm32-mdma.c)
2017-10-11 12:55 ` Vinod Koul
@ 2017-10-11 16:19 ` Randy Dunlap
0 siblings, 0 replies; 9+ messages in thread
From: Randy Dunlap @ 2017-10-11 16:19 UTC (permalink / raw)
To: Vinod Koul
Cc: Mark Brown, Linux-Next Mailing List, Linux Kernel Mailing List,
Pierre-Yves Mordret, M'boumba Cedric Madianga,
dmaengine@vger.kernel.org
On 10/11/17 05:55, Vinod Koul wrote:
> On Tue, Oct 10, 2017 at 09:27:18AM -0700, Randy Dunlap wrote:
>> On 10/09/17 14:21, Mark Brown wrote:
>>> For my birthday I've gone and got myself a linux-next tree:
>
> Nice thing you chose to do for the day :D
>
>>>
>>> Changes since 20170929:
>>>
>>
>> on i386:
>>
>> drivers/dma/stm32-mdma.o: In function `stm32_mdma_prep_dma_memcpy':
>> stm32-mdma.c:(.text+0x1174): undefined reference to `__umoddi3'
>> stm32-mdma.c:(.text+0x1208): undefined reference to `__umoddi3'
>> stm32-mdma.c:(.text+0x134c): undefined reference to `__umoddi3'
>> stm32-mdma.c:(.text+0x141d): undefined reference to `__umoddi3'
>
> The driver uses DIV_ROUND_UP but this should have worked, let me check more.
> Was generic i386 defconfig used or some other config
Maybe look at the uses of '%' (modulus, as in __umoddi3).
--
~Randy
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: linux-next: Tree for Oct 9th (of: unittest: testcases)
2017-10-09 21:21 linux-next: Tree for Oct 9th Mark Brown
2017-10-10 16:27 ` linux-next: Tree for Oct 9th (drivers/dma/stm32-mdma.c) Randy Dunlap
@ 2017-10-10 17:33 ` Randy Dunlap
[not found] ` <7524d1e5-137c-cb78-c24f-6a9701e46701-wEGCiKHe2LqWVfeAwA7xHQ@public.gmane.org>
2017-10-10 23:18 ` linux-next: No tree for Oct 10th Mark Brown
2 siblings, 1 reply; 9+ messages in thread
From: Randy Dunlap @ 2017-10-10 17:33 UTC (permalink / raw)
To: Mark Brown, Linux-Next Mailing List
Cc: Linux Kernel Mailing List, devicetree@vger.kernel.org
On 10/09/17 14:21, Mark Brown wrote:
> For my birthday I've gone and got myself a linux-next tree:
>
> Changes since 20170929:
>
> The net-next and drm trees lost their build failures but the rcu tree
> gained one.
I don't know what this is but it's new AFAIK.
(seen on i386 and x86_64)
DTC drivers/of/unittest-data/testcases.dtb
drivers/of/unittest-data/testcases.dtb: Warning (interrupts_extended_property): Could not get phandle node for /__local_fixups__/testcase-data/interrupts/interrupts-extended0:interrupts-extended(cell 3)
drivers/of/unittest-data/testcases.dtb: Warning (interrupts_property): interrupts size is (4), expected multiple of 8 in /testcase-data/testcase-device2
--
~Randy
^ permalink raw reply [flat|nested] 9+ messages in thread* linux-next: No tree for Oct 10th
2017-10-09 21:21 linux-next: Tree for Oct 9th Mark Brown
2017-10-10 16:27 ` linux-next: Tree for Oct 9th (drivers/dma/stm32-mdma.c) Randy Dunlap
2017-10-10 17:33 ` linux-next: Tree for Oct 9th (of: unittest: testcases) Randy Dunlap
@ 2017-10-10 23:18 ` Mark Brown
2 siblings, 0 replies; 9+ messages in thread
From: Mark Brown @ 2017-10-10 23:18 UTC (permalink / raw)
To: Linux-Next Mailing List; +Cc: Linux Kernel Mailing List
[-- Attachment #1: Type: text/plain, Size: 230 bytes --]
There will be no -next today, too many of the failures came when I had
to step away from the computer and I'm out of time. Sorry, I'll give it
another go tomorrow.
There were new failures in drm-intel-fixes and keystone.
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 488 bytes --]
^ permalink raw reply [flat|nested] 9+ messages in thread
end of thread, other threads:[~2017-10-11 18:11 UTC | newest]
Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-10-09 21:21 linux-next: Tree for Oct 9th Mark Brown
2017-10-10 16:27 ` linux-next: Tree for Oct 9th (drivers/dma/stm32-mdma.c) Randy Dunlap
2017-10-11 12:55 ` Vinod Koul
2017-10-11 16:19 ` Randy Dunlap
2017-10-10 17:33 ` linux-next: Tree for Oct 9th (of: unittest: testcases) Randy Dunlap
[not found] ` <7524d1e5-137c-cb78-c24f-6a9701e46701-wEGCiKHe2LqWVfeAwA7xHQ@public.gmane.org>
2017-10-10 18:26 ` Rob Herring
2017-10-10 18:34 ` Randy Dunlap
2017-10-11 18:11 ` Frank Rowand
2017-10-10 23:18 ` linux-next: No tree for Oct 10th Mark Brown
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).