[linux-next] LinuxNextTracking branch, master, updated. next-20180831
by batman@open-mesh.org
The following commit has been merged in the master branch:
commit b4df50de6ab66e41b3b8d8acf3ce45c632084163
Merge: 3f16503b7d2274ac8cbab11163047ac0b4c66cfe 3d7c82060d1fe65bde4023aac41a0b1bd7718e07
Author: Linus Torvalds <torvalds(a)linux-foundation.org>
Date: Wed Aug 29 13:38:39 2018 -0700
Merge branch 'linus' of git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6
Pull crypto fixes from Herbert Xu:
- Check for the right CPU feature bit in sm4-ce on arm64.
- Fix scatterwalk WARN_ON in aes-gcm-ce on arm64.
- Fix unaligned fault in aesni on x86.
- Fix potential NULL pointer dereference on exit in chtls.
- Fix DMA mapping direction for RSA in caam.
- Fix error path return value for xts setkey in caam.
- Fix address endianness when DMA unmapping in caam.
- Fix sleep-in-atomic in vmx.
- Fix command corruption when queue is full in cavium/nitrox.
* 'linus' of git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6:
crypto: cavium/nitrox - fix for command corruption in queue full case with backlog submissions.
crypto: vmx - Fix sleep-in-atomic bugs
crypto: arm64/aes-gcm-ce - fix scatterwalk API violation
crypto: aesni - Use unaligned loads from gcm_context_data
crypto: chtls - fix null dereference chtls_free_uld()
crypto: arm64/sm4-ce - check for the right CPU feature bit
crypto: caam - fix DMA mapping direction for RSA forms 2 & 3
crypto: caam/qi - fix error path in xts setkey
crypto: caam/jr - fix descriptor DMA unmapping
diff --combined arch/x86/crypto/aesni-intel_asm.S
index 9bd139569b41,d27a50656aa1..cb2deb61c5d9
--- a/arch/x86/crypto/aesni-intel_asm.S
+++ b/arch/x86/crypto/aesni-intel_asm.S
@@@ -223,34 -223,34 +223,34 @@@ ALL_F: .octa 0xfffffffffffffffffff
pcmpeqd TWOONE(%rip), \TMP2
pand POLY(%rip), \TMP2
pxor \TMP2, \TMP3
- movdqa \TMP3, HashKey(%arg2)
+ movdqu \TMP3, HashKey(%arg2)
movdqa \TMP3, \TMP5
pshufd $78, \TMP3, \TMP1
pxor \TMP3, \TMP1
- movdqa \TMP1, HashKey_k(%arg2)
+ movdqu \TMP1, HashKey_k(%arg2)
GHASH_MUL \TMP5, \TMP3, \TMP1, \TMP2, \TMP4, \TMP6, \TMP7
# TMP5 = HashKey^2<<1 (mod poly)
- movdqa \TMP5, HashKey_2(%arg2)
+ movdqu \TMP5, HashKey_2(%arg2)
# HashKey_2 = HashKey^2<<1 (mod poly)
pshufd $78, \TMP5, \TMP1
pxor \TMP5, \TMP1
- movdqa \TMP1, HashKey_2_k(%arg2)
+ movdqu \TMP1, HashKey_2_k(%arg2)
GHASH_MUL \TMP5, \TMP3, \TMP1, \TMP2, \TMP4, \TMP6, \TMP7
# TMP5 = HashKey^3<<1 (mod poly)
- movdqa \TMP5, HashKey_3(%arg2)
+ movdqu \TMP5, HashKey_3(%arg2)
pshufd $78, \TMP5, \TMP1
pxor \TMP5, \TMP1
- movdqa \TMP1, HashKey_3_k(%arg2)
+ movdqu \TMP1, HashKey_3_k(%arg2)
GHASH_MUL \TMP5, \TMP3, \TMP1, \TMP2, \TMP4, \TMP6, \TMP7
# TMP5 = HashKey^3<<1 (mod poly)
- movdqa \TMP5, HashKey_4(%arg2)
+ movdqu \TMP5, HashKey_4(%arg2)
pshufd $78, \TMP5, \TMP1
pxor \TMP5, \TMP1
- movdqa \TMP1, HashKey_4_k(%arg2)
+ movdqu \TMP1, HashKey_4_k(%arg2)
.endm
# GCM_INIT initializes a gcm_context struct to prepare for encoding/decoding.
@@@ -258,7 -258,7 +258,7 @@@
.macro GCM_INIT Iv SUBKEY AAD AADLEN
mov \AADLEN, %r11
mov %r11, AadLen(%arg2) # ctx_data.aad_length = aad_length
- xor %r11, %r11
+ xor %r11d, %r11d
mov %r11, InLen(%arg2) # ctx_data.in_length = 0
mov %r11, PBlockLen(%arg2) # ctx_data.partial_block_length = 0
mov %r11, PBlockEncKey(%arg2) # ctx_data.partial_block_enc_key = 0
@@@ -271,7 -271,7 +271,7 @@@
movdqu %xmm0, CurCount(%arg2) # ctx_data.current_counter = iv
PRECOMPUTE \SUBKEY, %xmm1, %xmm2, %xmm3, %xmm4, %xmm5, %xmm6, %xmm7,
- movdqa HashKey(%arg2), %xmm13
+ movdqu HashKey(%arg2), %xmm13
CALC_AAD_HASH %xmm13, \AAD, \AADLEN, %xmm0, %xmm1, %xmm2, %xmm3, \
%xmm4, %xmm5, %xmm6
@@@ -286,7 -286,7 +286,7 @@@
movdqu HashKey(%arg2), %xmm13
add %arg5, InLen(%arg2)
- xor %r11, %r11 # initialise the data pointer offset as zero
+ xor %r11d, %r11d # initialise the data pointer offset as zero
PARTIAL_BLOCK %arg3 %arg4 %arg5 %r11 %xmm8 \operation
sub %r11, %arg5 # sub partial block data used
@@@ -702,7 -702,7 +702,7 @@@ _no_extra_mask_1_\@
# GHASH computation for the last <16 Byte block
GHASH_MUL \AAD_HASH, %xmm13, %xmm0, %xmm10, %xmm11, %xmm5, %xmm6
- xor %rax,%rax
+ xor %eax, %eax
mov %rax, PBlockLen(%arg2)
jmp _dec_done_\@
@@@ -737,7 -737,7 +737,7 @@@ _no_extra_mask_2_\@
# GHASH computation for the last <16 Byte block
GHASH_MUL \AAD_HASH, %xmm13, %xmm0, %xmm10, %xmm11, %xmm5, %xmm6
- xor %rax,%rax
+ xor %eax, %eax
mov %rax, PBlockLen(%arg2)
jmp _encode_done_\@
@@@ -997,7 -997,7 +997,7 @@@ TMP6 XMM0 XMM1 XMM2 XMM3 XMM4 XMM5 XMM
pshufd $78, \XMM5, \TMP6
pxor \XMM5, \TMP6
paddd ONE(%rip), \XMM0 # INCR CNT
- movdqa HashKey_4(%arg2), \TMP5
+ movdqu HashKey_4(%arg2), \TMP5
PCLMULQDQ 0x11, \TMP5, \TMP4 # TMP4 = a1*b1
movdqa \XMM0, \XMM1
paddd ONE(%rip), \XMM0 # INCR CNT
@@@ -1016,7 -1016,7 +1016,7 @@@
pxor (%arg1), \XMM2
pxor (%arg1), \XMM3
pxor (%arg1), \XMM4
- movdqa HashKey_4_k(%arg2), \TMP5
+ movdqu HashKey_4_k(%arg2), \TMP5
PCLMULQDQ 0x00, \TMP5, \TMP6 # TMP6 = (a1+a0)*(b1+b0)
movaps 0x10(%arg1), \TMP1
AESENC \TMP1, \XMM1 # Round 1
@@@ -1031,7 -1031,7 +1031,7 @@@
movdqa \XMM6, \TMP1
pshufd $78, \XMM6, \TMP2
pxor \XMM6, \TMP2
- movdqa HashKey_3(%arg2), \TMP5
+ movdqu HashKey_3(%arg2), \TMP5
PCLMULQDQ 0x11, \TMP5, \TMP1 # TMP1 = a1 * b1
movaps 0x30(%arg1), \TMP3
AESENC \TMP3, \XMM1 # Round 3
@@@ -1044,7 -1044,7 +1044,7 @@@
AESENC \TMP3, \XMM2
AESENC \TMP3, \XMM3
AESENC \TMP3, \XMM4
- movdqa HashKey_3_k(%arg2), \TMP5
+ movdqu HashKey_3_k(%arg2), \TMP5
PCLMULQDQ 0x00, \TMP5, \TMP2 # TMP2 = (a1+a0)*(b1+b0)
movaps 0x50(%arg1), \TMP3
AESENC \TMP3, \XMM1 # Round 5
@@@ -1058,7 -1058,7 +1058,7 @@@
movdqa \XMM7, \TMP1
pshufd $78, \XMM7, \TMP2
pxor \XMM7, \TMP2
- movdqa HashKey_2(%arg2), \TMP5
+ movdqu HashKey_2(%arg2), \TMP5
# Multiply TMP5 * HashKey using karatsuba
@@@ -1074,7 -1074,7 +1074,7 @@@
AESENC \TMP3, \XMM2
AESENC \TMP3, \XMM3
AESENC \TMP3, \XMM4
- movdqa HashKey_2_k(%arg2), \TMP5
+ movdqu HashKey_2_k(%arg2), \TMP5
PCLMULQDQ 0x00, \TMP5, \TMP2 # TMP2 = (a1+a0)*(b1+b0)
movaps 0x80(%arg1), \TMP3
AESENC \TMP3, \XMM1 # Round 8
@@@ -1092,7 -1092,7 +1092,7 @@@
movdqa \XMM8, \TMP1
pshufd $78, \XMM8, \TMP2
pxor \XMM8, \TMP2
- movdqa HashKey(%arg2), \TMP5
+ movdqu HashKey(%arg2), \TMP5
PCLMULQDQ 0x11, \TMP5, \TMP1 # TMP1 = a1*b1
movaps 0x90(%arg1), \TMP3
AESENC \TMP3, \XMM1 # Round 9
@@@ -1121,7 -1121,7 +1121,7 @@@ aes_loop_par_enc_done\@
AESENCLAST \TMP3, \XMM2
AESENCLAST \TMP3, \XMM3
AESENCLAST \TMP3, \XMM4
- movdqa HashKey_k(%arg2), \TMP5
+ movdqu HashKey_k(%arg2), \TMP5
PCLMULQDQ 0x00, \TMP5, \TMP2 # TMP2 = (a1+a0)*(b1+b0)
movdqu (%arg4,%r11,1), \TMP3
pxor \TMP3, \XMM1 # Ciphertext/Plaintext XOR EK
@@@ -1205,7 -1205,7 +1205,7 @@@ TMP6 XMM0 XMM1 XMM2 XMM3 XMM4 XMM5 XMM
pshufd $78, \XMM5, \TMP6
pxor \XMM5, \TMP6
paddd ONE(%rip), \XMM0 # INCR CNT
- movdqa HashKey_4(%arg2), \TMP5
+ movdqu HashKey_4(%arg2), \TMP5
PCLMULQDQ 0x11, \TMP5, \TMP4 # TMP4 = a1*b1
movdqa \XMM0, \XMM1
paddd ONE(%rip), \XMM0 # INCR CNT
@@@ -1224,7 -1224,7 +1224,7 @@@
pxor (%arg1), \XMM2
pxor (%arg1), \XMM3
pxor (%arg1), \XMM4
- movdqa HashKey_4_k(%arg2), \TMP5
+ movdqu HashKey_4_k(%arg2), \TMP5
PCLMULQDQ 0x00, \TMP5, \TMP6 # TMP6 = (a1+a0)*(b1+b0)
movaps 0x10(%arg1), \TMP1
AESENC \TMP1, \XMM1 # Round 1
@@@ -1239,7 -1239,7 +1239,7 @@@
movdqa \XMM6, \TMP1
pshufd $78, \XMM6, \TMP2
pxor \XMM6, \TMP2
- movdqa HashKey_3(%arg2), \TMP5
+ movdqu HashKey_3(%arg2), \TMP5
PCLMULQDQ 0x11, \TMP5, \TMP1 # TMP1 = a1 * b1
movaps 0x30(%arg1), \TMP3
AESENC \TMP3, \XMM1 # Round 3
@@@ -1252,7 -1252,7 +1252,7 @@@
AESENC \TMP3, \XMM2
AESENC \TMP3, \XMM3
AESENC \TMP3, \XMM4
- movdqa HashKey_3_k(%arg2), \TMP5
+ movdqu HashKey_3_k(%arg2), \TMP5
PCLMULQDQ 0x00, \TMP5, \TMP2 # TMP2 = (a1+a0)*(b1+b0)
movaps 0x50(%arg1), \TMP3
AESENC \TMP3, \XMM1 # Round 5
@@@ -1266,7 -1266,7 +1266,7 @@@
movdqa \XMM7, \TMP1
pshufd $78, \XMM7, \TMP2
pxor \XMM7, \TMP2
- movdqa HashKey_2(%arg2), \TMP5
+ movdqu HashKey_2(%arg2), \TMP5
# Multiply TMP5 * HashKey using karatsuba
@@@ -1282,7 -1282,7 +1282,7 @@@
AESENC \TMP3, \XMM2
AESENC \TMP3, \XMM3
AESENC \TMP3, \XMM4
- movdqa HashKey_2_k(%arg2), \TMP5
+ movdqu HashKey_2_k(%arg2), \TMP5
PCLMULQDQ 0x00, \TMP5, \TMP2 # TMP2 = (a1+a0)*(b1+b0)
movaps 0x80(%arg1), \TMP3
AESENC \TMP3, \XMM1 # Round 8
@@@ -1300,7 -1300,7 +1300,7 @@@
movdqa \XMM8, \TMP1
pshufd $78, \XMM8, \TMP2
pxor \XMM8, \TMP2
- movdqa HashKey(%arg2), \TMP5
+ movdqu HashKey(%arg2), \TMP5
PCLMULQDQ 0x11, \TMP5, \TMP1 # TMP1 = a1*b1
movaps 0x90(%arg1), \TMP3
AESENC \TMP3, \XMM1 # Round 9
@@@ -1329,7 -1329,7 +1329,7 @@@ aes_loop_par_dec_done\@
AESENCLAST \TMP3, \XMM2
AESENCLAST \TMP3, \XMM3
AESENCLAST \TMP3, \XMM4
- movdqa HashKey_k(%arg2), \TMP5
+ movdqu HashKey_k(%arg2), \TMP5
PCLMULQDQ 0x00, \TMP5, \TMP2 # TMP2 = (a1+a0)*(b1+b0)
movdqu (%arg4,%r11,1), \TMP3
pxor \TMP3, \XMM1 # Ciphertext/Plaintext XOR EK
@@@ -1405,10 -1405,10 +1405,10 @@@ TMP7 XMM1 XMM2 XMM3 XMM4 XMMDs
movdqa \XMM1, \TMP6
pshufd $78, \XMM1, \TMP2
pxor \XMM1, \TMP2
- movdqa HashKey_4(%arg2), \TMP5
+ movdqu HashKey_4(%arg2), \TMP5
PCLMULQDQ 0x11, \TMP5, \TMP6 # TMP6 = a1*b1
PCLMULQDQ 0x00, \TMP5, \XMM1 # XMM1 = a0*b0
- movdqa HashKey_4_k(%arg2), \TMP4
+ movdqu HashKey_4_k(%arg2), \TMP4
PCLMULQDQ 0x00, \TMP4, \TMP2 # TMP2 = (a1+a0)*(b1+b0)
movdqa \XMM1, \XMMDst
movdqa \TMP2, \XMM1 # result in TMP6, XMMDst, XMM1
@@@ -1418,10 -1418,10 +1418,10 @@@
movdqa \XMM2, \TMP1
pshufd $78, \XMM2, \TMP2
pxor \XMM2, \TMP2
- movdqa HashKey_3(%arg2), \TMP5
+ movdqu HashKey_3(%arg2), \TMP5
PCLMULQDQ 0x11, \TMP5, \TMP1 # TMP1 = a1*b1
PCLMULQDQ 0x00, \TMP5, \XMM2 # XMM2 = a0*b0
- movdqa HashKey_3_k(%arg2), \TMP4
+ movdqu HashKey_3_k(%arg2), \TMP4
PCLMULQDQ 0x00, \TMP4, \TMP2 # TMP2 = (a1+a0)*(b1+b0)
pxor \TMP1, \TMP6
pxor \XMM2, \XMMDst
@@@ -1433,10 -1433,10 +1433,10 @@@
movdqa \XMM3, \TMP1
pshufd $78, \XMM3, \TMP2
pxor \XMM3, \TMP2
- movdqa HashKey_2(%arg2), \TMP5
+ movdqu HashKey_2(%arg2), \TMP5
PCLMULQDQ 0x11, \TMP5, \TMP1 # TMP1 = a1*b1
PCLMULQDQ 0x00, \TMP5, \XMM3 # XMM3 = a0*b0
- movdqa HashKey_2_k(%arg2), \TMP4
+ movdqu HashKey_2_k(%arg2), \TMP4
PCLMULQDQ 0x00, \TMP4, \TMP2 # TMP2 = (a1+a0)*(b1+b0)
pxor \TMP1, \TMP6
pxor \XMM3, \XMMDst
@@@ -1446,10 -1446,10 +1446,10 @@@
movdqa \XMM4, \TMP1
pshufd $78, \XMM4, \TMP2
pxor \XMM4, \TMP2
- movdqa HashKey(%arg2), \TMP5
+ movdqu HashKey(%arg2), \TMP5
PCLMULQDQ 0x11, \TMP5, \TMP1 # TMP1 = a1*b1
PCLMULQDQ 0x00, \TMP5, \XMM4 # XMM4 = a0*b0
- movdqa HashKey_k(%arg2), \TMP4
+ movdqu HashKey_k(%arg2), \TMP4
PCLMULQDQ 0x00, \TMP4, \TMP2 # TMP2 = (a1+a0)*(b1+b0)
pxor \TMP1, \TMP6
pxor \XMM4, \XMMDst
--
LinuxNextTracking
4 years, 5 months
Build check errors found: 2018-08-31
by postmaster@open-mesh.org
Name of failed tests
====================
maint
-----
* difference between net and batadv maint
Output of different failed tests
================================
maint: difference between net and batadv maint
----------------------------------------------
net/net/batman-adv/Kconfig | 8 ++------
net/net/batman-adv/bat_iv_ogm.h | 6 +++---
net/net/batman-adv/bat_v_ogm.h | 6 +++---
net/net/batman-adv/bridge_loop_avoidance.c | 2 +-
net/net/batman-adv/debugfs.c | 2 +-
net/net/batman-adv/originator.c | 17 ++++++-----------
net/net/batman-adv/types.h | 7 ++++---
7 files changed, 20 insertions(+), 28 deletions(-)
Statistics
==========
maint
-----
Failed tests: 1
Started build tests: 45
Tested Linux versions: 19
Tested configs: 41
master
------
Failed tests: 0
Started build tests: 42
Tested Linux versions: 19
Tested configs: 38
4 years, 5 months
Build check errors found: 2018-08-30
by postmaster@open-mesh.org
Name of failed tests
====================
maint
-----
* difference between net and batadv maint
Output of different failed tests
================================
maint: difference between net and batadv maint
----------------------------------------------
net/net/batman-adv/Kconfig | 8 ++------
net/net/batman-adv/bat_iv_ogm.h | 6 +++---
net/net/batman-adv/bat_v_ogm.h | 6 +++---
net/net/batman-adv/bridge_loop_avoidance.c | 2 +-
net/net/batman-adv/debugfs.c | 2 +-
net/net/batman-adv/originator.c | 17 ++++++-----------
net/net/batman-adv/types.h | 7 ++++---
7 files changed, 20 insertions(+), 28 deletions(-)
Statistics
==========
maint
-----
Failed tests: 1
Started build tests: 43
Tested Linux versions: 21
Tested configs: 40
master
------
Failed tests: 0
Started build tests: 39
Tested Linux versions: 19
Tested configs: 35
4 years, 5 months
Build check errors found: 2018-08-29
by postmaster@open-mesh.org
Name of failed tests
====================
maint
-----
* difference between net and batadv maint
Output of different failed tests
================================
maint: difference between net and batadv maint
----------------------------------------------
net/net/batman-adv/Kconfig | 8 ++------
net/net/batman-adv/bat_iv_ogm.h | 6 +++---
net/net/batman-adv/bat_v_ogm.h | 6 +++---
net/net/batman-adv/bridge_loop_avoidance.c | 2 +-
net/net/batman-adv/debugfs.c | 2 +-
net/net/batman-adv/originator.c | 17 ++++++-----------
net/net/batman-adv/types.h | 7 ++++---
7 files changed, 20 insertions(+), 28 deletions(-)
Statistics
==========
maint
-----
Failed tests: 1
Started build tests: 44
Tested Linux versions: 20
Tested configs: 43
master
------
Failed tests: 0
Started build tests: 44
Tested Linux versions: 20
Tested configs: 42
4 years, 5 months
Build check errors found: 2018-08-28
by postmaster@open-mesh.org
Name of failed tests
====================
maint
-----
* difference between net and batadv maint
Output of different failed tests
================================
maint: difference between net and batadv maint
----------------------------------------------
net/net/batman-adv/Kconfig | 8 ++------
net/net/batman-adv/bat_iv_ogm.h | 6 +++---
net/net/batman-adv/bat_v_ogm.h | 6 +++---
net/net/batman-adv/bridge_loop_avoidance.c | 2 +-
net/net/batman-adv/debugfs.c | 2 +-
net/net/batman-adv/originator.c | 17 ++++++-----------
net/net/batman-adv/types.h | 7 ++++---
7 files changed, 20 insertions(+), 28 deletions(-)
Statistics
==========
maint
-----
Failed tests: 1
Started build tests: 45
Tested Linux versions: 18
Tested configs: 42
master
------
Failed tests: 0
Started build tests: 44
Tested Linux versions: 21
Tested configs: 38
4 years, 5 months
[linux-next] LinuxNextTracking branch, master, updated. next-20180827
by batman@open-mesh.org
The following commit has been merged in the master branch:
commit 2ab054fd1f88d7d22e6df7c34c41a2f9782c3f08
Merge: 2f34a64aeac4d87e8ed8275d9f1230e18a50079c 5600779ea5f3d29fadc62208e21feb0bb9b813aa
Author: Linus Torvalds <torvalds(a)linux-foundation.org>
Date: Thu Aug 23 14:09:37 2018 -0700
Merge tag 'for-linus' of git://github.com/openrisc/linux
Pull OpenRISC update from Stafford Horne:
"Just one change for 4.19: refactoring from Christoph Hellwig to use
generic DMA facilities"
* tag 'for-linus' of git://github.com/openrisc/linux:
openrisc: use generic dma_noncoherent_ops
openrisc: fix cache maintainance the the sync_single_for_device DMA operation
openrisc: remove the no-op unmap_page and unmap_sg DMA operations
openrisc: remove the sync_single_for_cpu DMA operation
diff --combined arch/openrisc/Kconfig
index ed5f32d8fbd8,65e3c574c9d3..e0081e734827
--- a/arch/openrisc/Kconfig
+++ b/arch/openrisc/Kconfig
@@@ -6,6 -6,8 +6,8 @@@
config OPENRISC
def_bool y
+ select ARCH_HAS_SYNC_DMA_FOR_DEVICE
+ select DMA_NONCOHERENT_OPS
select OF
select OF_EARLY_FLATTREE
select IRQ_DOMAIN
@@@ -27,6 -29,7 +29,6 @@@
select GENERIC_STRNLEN_USER
select GENERIC_SMP_IDLE_THREAD
select MODULES_USE_ELF_RELA
- select MULTI_IRQ_HANDLER
select HAVE_DEBUG_STACKOVERFLOW
select OR1K_PIC
select CPU_NO_EFFICIENT_FFS if !OPENRISC_HAVE_INST_FF1
@@@ -35,7 -38,6 +37,7 @@@
select ARCH_USE_QUEUED_RWLOCKS
select OMPIC if SMP
select ARCH_WANT_FRAME_POINTERS
+ select GENERIC_IRQ_MULTI_HANDLER
config CPU_BIG_ENDIAN
def_bool y
@@@ -69,6 -71,13 +71,6 @@@ config STACKTRACE_SUPPOR
config LOCKDEP_SUPPORT
def_bool y
-config MULTI_IRQ_HANDLER
- def_bool y
-
-source "init/Kconfig"
-
-source "kernel/Kconfig.freezer"
-
menu "Processor type and features"
choice
@@@ -140,6 -149,8 +142,6 @@@ config SM
If you don't know what to do here, say N.
source kernel/Kconfig.hz
-source kernel/Kconfig.preempt
-source "mm/Kconfig"
config OPENRISC_NO_SPR_SR_DSX
bool "use SPR_SR_DSX software emulation" if OR1K_1200
@@@ -197,3 -208,27 +199,3 @@@ config OPENRISC_ESR_EXCEPTION_BUG_CHEC
endmenu
endmenu
-
-menu "Executable file formats"
-
-source "fs/Kconfig.binfmt"
-
-endmenu
-
-source "net/Kconfig"
-
-source "drivers/Kconfig"
-
-source "fs/Kconfig"
-
-source "security/Kconfig"
-
-source "crypto/Kconfig"
-
-source "lib/Kconfig"
-
-menu "Kernel hacking"
-
-source "lib/Kconfig.debug"
-
-endmenu
--
LinuxNextTracking
4 years, 5 months
Build check errors found: 2018-08-27
by postmaster@open-mesh.org
Name of failed tests
====================
maint
-----
* difference between net and batadv maint
Output of different failed tests
================================
maint: difference between net and batadv maint
----------------------------------------------
net/net/batman-adv/Kconfig | 8 ++------
net/net/batman-adv/bat_iv_ogm.h | 6 +++---
net/net/batman-adv/bat_v_ogm.h | 6 +++---
net/net/batman-adv/bridge_loop_avoidance.c | 2 +-
net/net/batman-adv/debugfs.c | 2 +-
net/net/batman-adv/originator.c | 17 ++++++-----------
net/net/batman-adv/types.h | 7 ++++---
7 files changed, 20 insertions(+), 28 deletions(-)
Statistics
==========
master
------
Failed tests: 0
Started build tests: 43
Tested Linux versions: 20
Tested configs: 38
maint
-----
Failed tests: 1
Started build tests: 46
Tested Linux versions: 19
Tested configs: 44
4 years, 5 months
Build check errors found: 2018-08-26
by postmaster@open-mesh.org
Name of failed tests
====================
maint
-----
* difference between net and batadv maint
Output of different failed tests
================================
maint: difference between net and batadv maint
----------------------------------------------
net/net/batman-adv/Kconfig | 8 ++------
net/net/batman-adv/bat_iv_ogm.h | 6 +++---
net/net/batman-adv/bat_v_ogm.h | 6 +++---
net/net/batman-adv/bridge_loop_avoidance.c | 2 +-
net/net/batman-adv/debugfs.c | 2 +-
net/net/batman-adv/originator.c | 17 ++++++-----------
net/net/batman-adv/types.h | 7 ++++---
7 files changed, 20 insertions(+), 28 deletions(-)
Statistics
==========
maint
-----
Failed tests: 1
Started build tests: 44
Tested Linux versions: 21
Tested configs: 41
master
------
Failed tests: 0
Started build tests: 43
Tested Linux versions: 19
Tested configs: 40
4 years, 5 months
Build check errors found: 2018-08-25
by postmaster@open-mesh.org
Name of failed tests
====================
maint
-----
* difference between net and batadv maint
Output of different failed tests
================================
maint: difference between net and batadv maint
----------------------------------------------
net/net/batman-adv/Kconfig | 8 ++------
net/net/batman-adv/bat_iv_ogm.h | 6 +++---
net/net/batman-adv/bat_v_ogm.h | 6 +++---
net/net/batman-adv/bridge_loop_avoidance.c | 2 +-
net/net/batman-adv/debugfs.c | 2 +-
net/net/batman-adv/originator.c | 17 ++++++-----------
net/net/batman-adv/types.h | 7 ++++---
7 files changed, 20 insertions(+), 28 deletions(-)
Statistics
==========
maint
-----
Failed tests: 1
Started build tests: 43
Tested Linux versions: 20
Tested configs: 38
master
------
Failed tests: 0
Started build tests: 42
Tested Linux versions: 19
Tested configs: 40
4 years, 5 months