Re: [linux-yocto] [kernel-cache][PATCH 0/4] intel-common: networking configuration changes

2017-08-28 Thread Mikko Ylinen
Hi Bruce, On 25/08/17 16:00, Mikko Ylinen wrote: Patches 3 and 4 would need an OK from Saul first. All patches are valid for yocto-4.9+ and 3 also for 4.4. This should say: "All patches are valid for yocto-4.9+ and _4_ also for 4.4. (i.e., intel-common: disable ixgbe modules) --

[linux-yocto] [kernel-cache][PATCH 4/4] intel-common: disable ixgbe modules

2017-08-25 Thread Mikko Ylinen
meta-intel (intel-* MACHINEs) plans to use the backported ixgbe ethernet modules so disable building them in the base kernel config. To build the in-kernel drivers, features/ixgbe/ixgbe.scc must be added in KERNEL_FEATURES. Signed-off-by: Mikko Ylinen <mikko.yli...@linux.intel.com> --

[linux-yocto] [kernel-cache][PATCH 1/4] skylake/audio: enable CONFIG_CRC8 to build soundwire driver

2017-08-25 Thread Mikko Ylinen
The skylake audio driver enables CONFIG_SDW which in turn does not correcly select/enable its dependencies so the build fails if CONFIG_CRC8 is not explicitly enabled. The build failure triggers when disabling common-pc-wifi.cfg. Signed-off-by: Mikko Ylinen <mikko.yli...@linux.intel.

[linux-yocto] [kernel-cache][PATCH 2/4] ktypes/standard: enable CONFIG_CRYPTO_CCM and GCM

2017-08-25 Thread Mikko Ylinen
if CONFIG_CRYPTO_CCM is not set but that currently fails to build (implicit function declaration). Therefore, just enable CRYPTO_CCM. And while we're at it, enable all crypto drivers that are needed by MAC80211. Signed-off-by: Mikko Ylinen <mikko.yli...@linux.intel.com> --- ktypes/standard/standard.c

[linux-yocto] [kernel-cache][PATCH 3/4] intel-common: disable iwlwifi and softmac modules

2017-08-25 Thread Mikko Ylinen
-by: Mikko Ylinen <mikko.yli...@linux.intel.com> --- bsp/intel-common/intel-common-drivers.scc | 3 --- features/soc/skylake/skylake.scc | 3 --- 2 files changed, 6 deletions(-) diff --git a/bsp/intel-common/intel-common-drivers.scc b/bsp/intel-common/intel-common-drivers.scc

[linux-yocto] [kernel-cache][PATCH 0/4] intel-common: networking configuration changes

2017-08-25 Thread Mikko Ylinen
and 2 fix some inconsistencies in the dependencies and and be merged. Patches 3 and 4 would need an OK from Saul first. All patches are valid for yocto-4.9+ and 3 also for 4.4. Mikko Ylinen (4): skylake/audio: enable CONFIG_CRC8 to build soundwire driver ktypes/standard: enable

Re: [linux-yocto] [kernel-cache][PATCH] features: add Intel Memory Protection Extensions

2017-03-10 Thread Mikko Ylinen
Hi, On 10/03/17 20:33, Bruce Ashfield wrote: On 2017-03-10 02:44 AM, Mikko Ylinen wrote: This commit adds a kernel feature to have the kernel support for Intel Memory Protection Extensions (MPX). A quote from kernel arch/x86/Kconfig: "MPX provides hardware features that can be

[linux-yocto] [kernel-cache][PATCH] features: add Intel Memory Protection Extensions

2017-03-09 Thread Mikko Ylinen
etect buffer overflow or underflow bugs." Intel MPX is available, e.g., on Skylake and on Goldmont (e.g., Intel 570x). Signed-off-by: Mikko Ylinen <mikko.yli...@linux.intel.com> --- features/mpx/mpx.cfg | 1 + features/mpx/mpx.scc | 4 2 files changed, 5 insertions(+) create mode 100

Re: [linux-yocto] [PATCH] netfilter: iptables: enable NAT tables

2016-12-29 Thread Mikko Ylinen
Hi, On 29/12/16 17:58, Wold, Saul wrote: On Wed, 2016-12-28 at 22:31 -0500, Bruce Ashfield wrote: On 16-12-27 8:03 AM, Mikko Ylinen wrote: This changes adds 'nat' table in iptables. The netfilter side is already configured for NAT but iptables config was missing. Further

[linux-yocto] [PATCH] netfilter: iptables: enable NAT tables

2016-12-27 Thread Mikko Ylinen
is needed by Connman to support tethering. Signed-off-by: Mikko Ylinen <mikko.yli...@linux.intel.com> --- features/netfilter/netfilter.cfg | 1 + 1 file changed, 1 insertion(+) diff --git a/features/netfilter/netfilter.cfg b/features/netfilter/netfilter.cfg index 99fa30fa..cefe5efe

[linux-yocto] [PATCH] intel-quark.cfg: Explicitly disable CONFIG_64BIT

2016-08-29 Thread Mikko Ylinen
In a follow-up to e9ec769926b2378e63380bd7762ce7ce201af151 explicitly disable CONFIG_64BIT on Quark too. Signed-off-by: Mikko Ylinen <mikko.yli...@linux.intel.com> --- bsp/intel-common/intel-quark.cfg | 3 +++ 1 file changed, 3 insertions(+) diff --git a/bsp/intel-common/intel-quark.cfg

[linux-yocto] [PATCH] intel-quark.cfg: Explicitly disable CONFIG_64BIT

2016-08-29 Thread Mikko Ylinen
From: Mikko Ylinen <mikko.yli...@linux.intel.com> In a follow-up to e9ec769926b2378e63380bd7762ce7ce201af151 explicitly disable CONFIG_64BIT on Quark too. Signed-off-by: Mikko Ylinen <mikko.yli...@linux.intel.com> --- bsp/intel-common/intel-quark.cfg | 3 +++ 1 file changed,

[linux-yocto] [PATCH 0/1] linux-yocto-4.4: backport sched/cgroup fixes

2016-04-20 Thread Mikko Ylinen
While searching for LKML archives to spot any similar hits to an oops we've seen when using linux-yocto-4.4, I ran into a thread about "[BUG] sched: leaf_cfs_rq_list use after free". The patch proposed in that thread fixes the oops so I'm sending a backported version of it to linux-yocto-4.4.

[linux-yocto] [PATCH 1/1] sched/cgroup: Fix/cleanup cgroup teardown/init

2016-04-18 Thread Mikko Ylinen
ace period between css_released() and css_free() we can forgo using call_rcu() and free the stuff immediately. Signed-off-by: Mikko Ylinen <mikko.yli...@intel.com> --- kernel/sched/core.c | 35 ++- 1 file changed, 14 insertions(+), 21 deletions(-) diff --git a/ker

[linux-yocto] [PATCH 0/1] linux-yocto-4.4: backport sched/cgroup fixes

2016-04-18 Thread Mikko Ylinen
While searching for LKML archives to spot any similar hits to an oops we've seen when using linux-yocto-4.4, I ran into a thread about "[BUG] sched: leaf_cfs_rq_list use after free". The patch proposed in that thread fixes the oops so I'm sending a backported version of it to linux-yocto-4.4.