aboutsummaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)Author
2018-12-20glibc: Upgrade towards 2.29 releasekraj/glibc-2.29Khem Raj
Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2018-12-20gcc-9.0: Add recipes for upcoming gcc 9.0 release in mid-2019Khem Raj
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2018-12-20gnupg: Upgrade to 2.2.12 releaseKhem Raj
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2018-12-20grub2: Fix passing null to printf formatsKhem Raj
Backport a patch that helps with this error which is found by gcc9 Signed-off-by: Khem Raj <raj.khem@gmail.com>
2018-12-20populate_sdk_ext.bbclass: Include site.conf in parsing for contents for ↵Khem Raj
local.conf Some distros use site.conf to emit certain variables which are important for eSDK e.g. DISTRO with out which eSDK will not be able to ger right metadata when it tries to build Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2018-12-20oeqa/concurrencytest: fix for locating meta-selftestRobert Yang
The previous code assumed builddir and meta-selftest are in the same dir, but this isn't always true, builddir can be anywhere, use get_test_layer() to locate meta-selftest can fix the problem. Signed-off-by: Robert Yang <liezhi.yang@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2018-12-19i2c-tools: upgrade 4.0 -> 4.1Anuj Mittal
* For changes, see: https://git.kernel.org/pub/scm/utils/i2c-tools/i2c-tools.git/log/?qt=range&q=v4.0...v4.1 * Remove upstreamed patches Signed-off-by: Anuj Mittal <anuj.mittal@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2018-12-19common-licenses: update Libpng license textAnuj Mittal
The new libpng license comprises the terms and conditions from the zlib license, and the disclaimer from the Boost license. The legacy libpng license license, used until libpng-1.6.35, is appended to the new license, following the precedent established in the Python Software Foundation License version 2. See for details: https://sourceforge.net/projects/libpng/files/libpng16/1.6.36/ Signed-off-by: Anuj Mittal <anuj.mittal@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2018-12-19libpng: upgrade 1.6.35 -> 1.6.36Anuj Mittal
For changes, see: https://sourceforge.net/p/libpng/code/ci/libpng16/tree/CHANGES License-Update: Added authors to license, formatting, version changes, export classification clarification and a new libpng2 license with clarification: The new libpng license comprises the terms and conditions from the zlib license, and the disclaimer from the Boost license. The legacy libpng license license, used until libpng-1.6.35, is appended to the new license, following the precedent established in the Python Software Foundation License version 2. Signed-off-by: Anuj Mittal <anuj.mittal@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2018-12-19harfbuzz: upgrade 2.1.3 -> 2.2.0Anuj Mittal
For changes, see: https://cgit.freedesktop.org/harfbuzz/tree/NEWS?h=2.2.0 Remove do_configure_append after the patch to remove pkg.m4 was merged upstream. Signed-off-by: Anuj Mittal <anuj.mittal@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2018-12-19sqlite3: upgrade 3.25.3 -> 3.26.0Anuj Mittal
For changes, see: https://www.sqlite.org/releaselog/3_26_0.html Signed-off-by: Anuj Mittal <anuj.mittal@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2018-12-19libatomic-ops: upgrade 7.6.6 -> 7.6.8Anuj Mittal
For changes, see: https://github.com/ivmai/libatomic_ops/compare/v7.6.6...v7.6.8 Also switch to using tarball release instead. Signed-off-by: Anuj Mittal <anuj.mittal@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2018-12-19gsettings-desktop-schemas: upgrade 3.28.0 -> 3.28.1Anuj Mittal
Changes from release notes: - Set default background image for screen lock to an existing one - Translation updates Signed-off-by: Anuj Mittal <anuj.mittal@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2018-12-19eudev: upgrade 3.2.5 -> 3.2.7Anuj Mittal
For changes, see: https://github.com/gentoo/eudev/compare/v3.2.5...v3.2.7 Signed-off-by: Anuj Mittal <anuj.mittal@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2018-12-19icecc: patchelf is needed by icecc-create-envDouglas Royds
Although we could potentially build patchelf and all its dependencies, they would all have to be blacklisted to avoid trying to build them with icecc. We use the host patchelf instead. Signed-off-by: Douglas Royds <douglas.royds@taitradio.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2018-12-19icecc: Don't generate recipe-sysroot symlinks at recipe-parsing timeDouglas Royds
The python function icecc_path() was being invoked inline by set_icecc_env(), meaning that it was being invoked at recipe-parsing time. As a side-effect, icecc_path() was creating the recipe-sysroot directory and symlinking icecc into it. Because this was done at parsing time (rather than configure time), we were generating otherwise-empty WORKDIRs for *all* parsed recipes, and for all virtual classes (-native, -nativesdk). In my build, this generated more than 800 of these otherwise-empty WORKDIRs. I have simplified icecc_path() to return only the intended path to the icecc symlinks in the recipe-sysroot, with no side-effect. We then create the directory and the icecc symlinks at configure time. Because get_cross_kernel_cc() is still invoked at parse-time, it needs a guard-clause for the non-kernel case. We are now finding the host icecc at do_configure time, so icecc needs to be in the HOSTTOOLS. I have made this non-fatal, so that we can still inherit icecc without icecc installed. Signed-off-by: Douglas Royds <douglas.royds@taitradio.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2018-12-19icecc: Syntax error meant that we weren't waiting for tarball generationDouglas Royds
If two bitbake processes try to generate the ICECC_VERSION tarball at the same time, the thread that fails to get the lock will wait 30 sec for the first to finish. A syntax error meant that this was not happening, and in particular, if tarball generation failed (eg. for lack of patchelf), it did so silently. Signed-off-by: Douglas Royds <douglas.royds@taitradio.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2018-12-19icecc: Trivial simplificationDouglas Royds
Signed-off-by: Douglas Royds <douglas.royds@taitradio.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2018-12-19icecc: readlink -f on the recipe-sysroot gcc/g++Douglas Royds
We were accidentally doing a readlink -f on simply 'gcc', for instance Signed-off-by: Douglas Royds <douglas.royds@taitradio.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2018-12-19libxcrypt: Fix nativesdk build with gcc9Khem Raj
Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2018-12-19gcc-runtime: Drop building libmpxKhem Raj
libmpx is not supported any longer and infact has been removed completely from gcc-9, see https://github.com/gcc-mirror/gcc/commit/1e42d5c637e1b1f65dfddd0923dfb25676bb56e5 Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2018-12-19base.bbclass, classextend.py: Drop catering to gcc-initialKhem Raj
Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2018-12-19tcmode-default: Drop pinnings for gcc-initial based recipesKhem Raj
Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2018-12-19musl: Move away from gcc-initial dependencyKhem Raj
gcc-initial step is no more needed Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2018-12-19libssp: Remove dependency on gcc-initialKhem Raj
Its not needed anymore and it can depend on gcc-cross instead Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2018-12-19newlib: Move away from gcc-initial dependencyKhem Raj
gcc-initial step is no more needed Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2018-12-19recipes: Drop virtual/libc-for-gccRichard Purdie
We no longer have special "libc" for gcc so we can rely on plain virtual/libc and reduce the complexity in the dependencies. Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2018-12-19gcc: Drop the -initial versions of the compilerRichard Purdie
Separated out from the previous commit for clarity, this simply drops all the -inital pieces of gcc which are no longer needed after the previous commit. Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2018-12-19gcc: Drop gcc-cross-initial and use gcc-cross insteadRichard Purdie
We need a libgcc to build glibc. Tranditionally we therefore build a non-threaded and non-shared compiler (gcc-cross-initial), then use that to build libgcc-initial which is used to build glibc which we can then build gcc-cross and libgcc against. Firstly, we can drop the glibc dependency from gcc-cross, *if* we make two changes: a) specify the minimum glibc version to support in a configure option b) create a dummy limits.h file so that later when glibc creates one, the headers structure has support for it. We can do this with a simple empty file Once gcc-cross is libc independent, we can use it to build both libgcc-initial and then later libgcc. libgcc-initial is tricky as we need to imitate the non-threaded and non-shared case. We can do that by hacking the threading mode back to "single" even if gcc reports "posix" and disable libc presence for the libgcc-intial build. We have to create the dummy limits.h to avoid compiler errors from a missing header. glibc will fail to link with libgcc-initial due to a missing "exception handler" capable libgcc (libgcc_eh.a). Since we know glibc doesn't need any exception handler, we can safely symlink to libgcc.a. With those changes, gcc-cross can be used in all places and we only need one build of gcc for each architecture. For some reason ifunc was being disabled on mips prior to these changes but afterwards became enabled but caused assertion failures. This is therefore disabled until we can debug that. The glibc version is a minimum and only used on ppc in the gcc code, it doesn't need to be rigerously kept exactly up to date. Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2018-12-19glibc: Remove site_config and glibc-initialRichard Purdie
The only reason we appear to need glibc-initial at this time is to support the site_config code. The site_config code compiles and therefore needs at least some level of working C library to link against. This isn't a good reason to keep the complexity of glibc-initial around so remove it, and the site_config support which then breaks. Performance benchmarks suggest the time spent just rerunning configure for site_config just about equals any performance benefit for OE-Core image builds excluding the time spent adding glibc-initial to the dependency chain. I'm not opposed to readding some other form of site_config support but it needs to be rethought. Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2018-12-19sstate: add support for caching shared workdir tasksMichael Ho
The sstate bbclass uses workdir as a hardcoded string in path manipulations. This means that the sstate caching mechanism does not work for the work-shared directory which the kernel uses to share its build configuration and source files for out of tree kernel modules. This commit modifies the path manipulation mechanism to use the work-shared directory if detected in the paths when handling the sstate cache packages. Signed-off-by: Michael Ho <Michael.Ho@bmw.de> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2018-12-19netbase: add entry to /etc/hosts according to /etc/hostnameChen Qi
We default hostname to ${MACHINE}, but it's not in /etc/hosts, resulting in commands like `hostname -f' failing due to lack of entry. So add entry to /etc/hosts according to /etc/hostname. We do this via pkg_postinst because hostname is set in base-files recipe. Signed-off-by: Chen Qi <Qi.Chen@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2018-12-19python-native: fix one do_populate_sysroot warningChangqing Li
Fix below warning: WARNING: Skipping RPATH /usr/lib64 as is a standard search path for work/x86_64-linux/python-native/2.7.15-r1.1/recipe-sysroot-native/ usr/lib/python2.7/lib-dynload/_bsddb.so setup.py will check db.h under include_dirs, for native build, /usr/lib64 will be insert to postion 0 of include_dirs, so it's priority is higher then our sysroot, cause db.h sysroot is ignored, and rpath set to /usr/lib64. and this cause warning when do_populate_sysroot. use append to fix it. Signed-off-by: Changqing Li <changqing.li@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2018-12-19python/python3: use cc_basename to replace CC for checking compilerChangqing Li
When working path contains "clang"/"gcc"/"icc", it might be part of $CC because of the "--sysroot" parameter. That could cause judgement error about clang/gcc/icc compilers. eg: if build under /yocto/builds/xicc/, bitbake python, $CC will contains xicc, will make $CC match *icc, but actuall xicc just folder name. When "*icc" is matched, below errors are reported when compiling python/python3: x86_64-wrs-linux-gcc: error: strict: No such file or directory x86_64-wrs-linux-gcc: error: unrecognized command line option '-fp-model' Here use cc_basename to replace CC for checking compiler to avoid such kind of issue. Signed-off-by: Li Zhou <li.zhou@windriver.com> Signed-off-by: Changqing Li <changqing.li@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2018-12-18gcc-runtime: Add missing libc dependencyRichard Purdie
For reasons lost in the depths of time, perhaps performane related, we only have a dependency on libc at packaging time. This is too late, as demonstrated by a recent build failure on non-IA builds where the glibc 2.29 upgrade had been removed from the build: ld: recipe-sysroot/usr/lib/../lib/libstdc++.so: undefined reference to `log@GLIBC_2.29' libstdc++ should have been rebuilt but had not as the dependency wasn't present. Add the missing dependency to avoid this problem (and drop the other form of dependency which is no longer needed). Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2018-12-18distrodata: RemoveRichard Purdie
The code in the tasks within this class are old and there are much better ways to do these things now such as through tinfoil rather than writing csv files incrementally with start/stop events and lock files. Existing users of the code (mainly the do_checkpkg task) have been ported over to tinfoil. Drop the class, any other users should also make use of the tinfoil functionality. Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2018-12-18scripts/distro: Remove as using obsolete APIs and need re-implementing sanelyRichard Purdie
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2018-12-18upstream-tracking.inc: Remove the long deprecated fileRichard Purdie
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2018-12-18oeqa/selftest/distrodata: Drop now unneeded distrodata inheritRichard Purdie
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2018-12-18defaultsetup: Include maintainers.inc by defaultRichard Purdie
There is little harm in including this file rather than having a rather obscure and soon to be obsolete bbclass adding this information. Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2018-12-18libxcrypt: Upgrade to 4.4.1 releaseKhem Raj
License-Update: New files added to existing list Add -Wno-error=missing-attributes to compiler flags, this helps in compiling with gcc 9.0, eventually, the code should be fixed Add a patch to fix x32 build Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2018-12-18kernel-devsrc: fix usrmerge install pathAllen Wild
Update /lib to $nonarch_base_libdir to fix package QA errors when usermerge is enabled in DISTRO_FEATURES. ERROR: kernel-devsrc-1.0-r0 do_package_qa: QA Issue: kernel-devsrc package is not obeying usrmerge distro feature. /lib should be relocated to /usr. [usrmerge] Signed-off-by: Allen Wild <allenwild93@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2018-12-18systemd: Fix memory use after free errorsKhem Raj
Found with gcc trunk Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2018-12-18go: Upgrade 1.11.1 -> 1.11.4 minor releaseKhem Raj
Changes: https://golang.org/doc/devel/release.html#go1.11 Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2018-12-18linux-yocto: correct qemumips64el definitionBruce Ashfield
The big endian mips definition was used as the basis for the little endian machine. Unfortunatey, the KMACHINE definitions were not fully cleared, so big endian builds will match on the 'le' variant .. and break. We drop the BE machine definitions from the LE variant and we are fixed. Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2018-12-18linux-yocto: configuration updates (virtio and tpm)Bruce Ashfield
Integrating the following configuration changes: 1992fb4dad30 virtio.cfg: enable CONFIG_DRM_VIRTIO_GPU 9e9ba7cb6756 features/tpm: enable tpm support Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2018-12-18kern-tools: tools/kconf_check: modify grep patternBruce Ashfield
Integrating the following kern tools patch: The cmd line, <grep '^[ ]*\(menu\)*config '>, can't match all expect config options. This is because that it is not always a single space after 'config' in kernel-source/*/.../Kconfig. e.g. "config IP_VS_IPV6" in net/netfilter/ipvs/Kconfig So we should change the cmd to grep '^[ ]*\(menu\)*config\s'. Signed-off-by: Hongzhi.Song <hongzhi.song@windriver.com> Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2018-12-18linux-yocto/4.18: update to v4.18.21Bruce Ashfield
Integrating Paul Gortmaker's 4.18.x -stable queue that comprises the following commits: 7791d9ae24f8 Linux 4.18.21 a80801badd68 libceph: fall back to sendmsg for slab pages fa1d15db0676 HID: Add quirk for Microsoft PIXART OEM mouse 539bf8a221c2 HID: Add quirk for Primax PIXART OEM mice e5cfd0902404 HID: uhid: forbid UHID_CREATE under KERNEL_DS or elevated privileges c2d5a17480e1 ACPI / platform: Add SMB0001 HID to forbidden_id_list a6f05874e5e4 drivers/misc/sgi-gru: fix Spectre v1 vulnerability a2106abb1311 mtd: rawnand: atmel: fix OF child-node lookup 852707bdc43c USB: misc: appledisplay: add 20" Apple Cinema Display 025b1def8764 misc: atmel-ssc: Fix section annotation on atmel_ssc_get_driver_data 9e7b23298a7e usb: quirks: Add delay-init quirk for Corsair K70 LUX RGB 013de23dac1c USB: Wait for extra delay time after USB_PORT_FEAT_RESET for quirky hub 3f514468061f USB: quirks: Add no-lpm quirk for Raydium touchscreens bbcc56d2f095 usb: cdc-acm: add entry for Hiro (Conexant) modem 97e2f24e1a83 ALSA: hda/ca0132 - Call pci_iounmap() instead of iounmap() 745bb5e7cfeb ALSA: hda/realtek - Add quirk entry for HP Pavilion 15 1c6195c1d07e RISC-V: Fix raw_copy_{to,from}_user() 58d333dec778 MIPS: OCTEON: cavium_octeon_defconfig: re-enable OCTEON USB driver 574cddd586ad x86/ldt: Unmap PTEs for the slot before freeing LDT pages e5992ad333bb x86/ldt: Split out sanity check in map_ldt_struct() 4fec0315cc99 x86/mm: Move LDT remap out of KASLR region on 5-level paging 06e06217b513 x86/mm/doc: Enhance the x86-64 virtual memory layout descriptions afddf2bc08b8 x86/mm/doc: Clean up the x86-64 virtual memory layout descriptions 251fe62f9fbd SUNRPC: drop pointless static qualifier in xdr_get_next_encode_buffer() 39cc3a6bf7a4 kbuild: deb-pkg: fix too low build version number 4cbf9bb5d870 net: aquantia: invalid checksumm offload implementation 7efe7160032f net: aquantia: fixed enable unicast on 32 macvlan 3dcebf4e0021 net: aquantia: fix potential IOMMU fault after driver unbind 7ab68bbd45e5 net: stmmac: Fix RX packet size > 8191 13cf931db889 qed: Fix potential memory corruption edc856a3748d qed: Fix SPQ entries not returned to pool in error flows 85423a9f1925 qed: Fix blocking/unlimited SPQ entries leak 98e7cd88b52b qed: Fix memory/entry leak in qed_init_sp_request() 82f212b802a0 i40e: restore NETIF_F_GSO_IPXIP[46] to netdev features 85f5e5f14d5a ice: Change req_speeds to be u16 da1d12c17f9f ice: Fix the bytecount sent to netdev_tx_sent_queue 2a7e71e87d96 ice: Fix dead device link issue with flow control 14e275bde8d7 perf tools: Do not zero sample_id_all for group members 76cc23113132 perf tools: Fix undefined symbol scnprintf in libperf-jvmti.so 2d21e584e738 sched/core: Take the hotplug lock in sched_init_smp() 2ada9a15c672 i2c: omap: Enable for ARCH_K3 53d22ae3d66e nvme: make sure ns head inherits underlying device limits 446c01fb4f92 ceph: quota: fix null pointer dereference in quota check 9e10f7374c41 s390/perf: Change CPUM_CF return code in event init function 9de8b1448395 drm/amd/amdgpu/dm: Fix dm_dp_create_fake_mst_encoder() f360a418cccb drm/amd/display: Drop reusing drm connector for MST 7f7cef0bfc2f block: Clear kernel memory before copying to user f9e5bd7ff2eb drm/amd/display: Stop leaking planes 4239764e6ba8 lib/raid6: Fix arm64 test build 7c5fe0f1b003 mtd: nand: Fix nanddev_pos_next_page() kernel-doc header c3c978e03a0b clk: fixed-factor: fix of_node_get-put imbalance 1e6a626e9a85 arm64: dts: renesas: r8a7795: add missing dma-names on hscif2 8904df27645c Revert "drm/exynos/decon5433: implement frame counter" bc80947ec235 ARM: dts: fsl: Fix improperly quoted stdout-path values 0256a4666ccc hwmon: (ibmpowernv) Remove bogus __init annotations 7cce145bb0bc net: hns3: Fix for out-of-bounds access when setting pfc back pressure 49ca763b85a3 s390/qeth: fix HiperSockets sniffer 2a5adbb88317 netfilter: nft_compat: ebtables 'nat' table is normal chain type b1045a2ed7d0 netfilter: ipset: Fix calling ip_set() macro at dumping 6339fe77369f netfilter: xt_IDLETIMER: add sysfs filename checking routine 5f53cf58e657 netfilter: ipset: Correct rcu_dereference() call in ip_set_put_comment() ac802253a7f6 bpf: fix bpf_prog_get_info_by_fd to return 0 func_lens for unpriv 38dd3dd00b30 s390/mm: Fix ERROR: "__node_distance" undefined! da97e4fe8be9 s390/mm: fix mis-accounting of pgtable_bytes 8d30ef7ca397 netfilter: ipset: fix ip_set_list allocation failure 61c4117c1a74 netfilter: ipset: actually allow allowable CIDR 0 in hash:net,port,net 969721e7b329 netfilter: ipset: list:set: Decrease refcount synchronously on deletion and replace 429746904248 Revert "netfilter: nft_numgen: add map lookups for numgen random operations" a5e3863ac044 netfilter: use PTR_ERR_OR_ZERO() 0ae8e99ec8cd HID: alps: allow incoming reports when only the trackstick is opened 15b457203750 Revert "HID: add NOGET quirk for Eaton Ellipse MAX UPS" b031d919f5a3 HID: i2c-hid: Add a small delay after sleep command for Raydium touchpanel 6e7506e7ffa1 netfilter: ipv6: fix oops when defragmenting locally generated fragments ffe4bc3d6f34 netfilter: ipv6: nf_defrag: drop skb dst before queueing 9b1f3e55b288 clk: ti: fix OF child-node lookup dd638be4185f clk: meson: clk-pll: drop CLK_GET_RATE_NOCACHE where unnecessary 0d6b6e708bc7 arm64: percpu: Initialize ret in the default case bbc36472de49 platform/x86: acerhdf: Add BIOS entry for Gateway LT31 v1.3307 1a256be39690 x86/earlyprintk: Add a force option for pciserial device f7554181a88f apparmor: Fix uninitialized value in aa_split_fqname 012871d08c0d clk: samsung: exynos5420: Enable PERIS clocks for suspend 064e571701ce fs/exofs: fix potential memory leak in mount option parsing 831690c6459c perf symbols: Set PLT entry/header sizes properly on Sparc 0f9ecdb3bd83 clk: fixed-rate: fix of_node_get-put imbalance ede1c4fcdde1 platform/x86: intel_telemetry: report debugfs failure ee66e4013b23 afs: Handle EIO from delivery function aef20e808b30 drm/edid: Add 6 bpc quirk for BOE panel. 24bb4410cef8 um: Give start_idle_thread() a return code 2d40d681ae35 perf unwind: Take pgoff into account when reporting elf to libdwfl cb3e550391e9 hfsplus: prevent btree data loss on root split fa5cc3040873 hfs: prevent btree data loss on root split ee916b4885a5 reiserfs: propagate errors from fill_with_dentries() properly ef40ee9ed9ae ixgbe: fix MAC anti-spoofing filter after VFLR c0fee8923e4f net: hns3: bugfix for the initialization of command queue's spin lock 8d77763100a2 net: hns3: bugfix for handling mailbox while the command queue reinitialized 2fb7315d2cf8 net: hns3: Prevent sending command during global or core reset ab0b26b06885 net: hns3: bugfix for rtnl_lock's range in the hclgevf_reset() cd72d052e2e0 block: brd: associate with queue until adding disk 0d11623a80f2 arm64: kprobe: make page to RO mode when allocate it a52826b7b283 cifs: fix return value for cifs_listxattr 875f9a25fe16 cifs: don't dereference smb_file_target before null check 726e26c18837 usbnet: smsc95xx: disable carrier check while suspending 1b02f8a0f99a net: smsc95xx: Fix MTU range 43ec8ff9d9d1 mlxsw: spectrum: Fix IP2ME CPU policer configuration 5084168f4ddb sctp: not increase stream's incnt before sending addstrm_in request 2d3ba28f6872 net: phy: mdio-gpio: Fix working over slow can_sleep GPIOs fbe671bf4640 sctp: fix strchange_flags name for Stream Change Event 1071eded0415 net: dsa: microchip: initialize mutex before use 92df935ee5bd net: qualcomm: rmnet: Fix incorrect assignment of real_dev 8524e5f23056 sctp: define SCTP_SS_DEFAULT for Stream schedulers 839c08b2e53f net: phy: realtek: fix RTL8201F sysfs name 511ac11522c8 net: dsa: mv88e6xxx: Fix clearing of stats counters 4166d97c8114 net/mlx5e: IPoIB, Reset QP after channels are closed 057174ecf7c3 net/mlx5: IPSec, Fix the SA context hash key 776d3005c370 l2tp: fix a sock refcnt leak in l2tp_tunnel_register 5b7d8593e89d inet: frags: better deal with smp races 38cdb31946c1 net/mlx5e: Removed unnecessary warnings in FEC caps query 0fa0336430a4 net/mlx5e: Fix selftest for small MTUs 35f08cfda6e4 net/mlx5e: Always use the match level enum when parsing TC rule match 81dff097d4f1 Revert "sctp: remove sctp_transport_pmtu_check" 956f3384ec99 net/mlx5e: Adjust to max number of channles when re-attaching e717c85edd16 net/mlx5e: Claim TC hw offloads support only under a proper build config 73965525b4a5 net: systemport: Protect stop from timeout 0c6765847a3e tuntap: fix multiqueue rx 1f1f1f9f5c04 tipc: fix lockdep warning when reinitilaizing sockets 4882b7bfa4f4 tipc: don't assume linear buffer when reading ancillary data 8ee89a1dba58 tg3: Add PHY reset for 5717/5719/5720 in change ring and flow control paths 29939b28474d tcp: Fix SOF_TIMESTAMPING_RX_HARDWARE to use the latest timestamp during TCP coalescing 2d02df9e00f6 sctp: not allow to set asoc prsctp_enable by sockopt f8079b5a352d net-gro: reset skb->pkt_type in napi_reuse_skb() 893ebde4310f net: bcmgenet: protect stop from timeout d50e12a49aa0 ipv6: Fix PMTU updates for UDP/raw sockets in presence of VRF a72cc86b5f1b ipv6: fix a dst leak when removing its exception 05b6cf8bd43b ip_tunnel: don't force DF when MTU is locked 9de9dc5fac67 ibmvnic: fix accelerated VLAN handling 67485ab94ea6 flow_dissector: do not dissect l4 ports for fragments Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2018-12-18linux-yocto/4.19: update to v4.19.8Bruce Ashfield
Integrating the korg -stable updates that comprise the following commits: 178574b66509 Linux 4.19.8 55cbeea76e76 blk-mq: punt failed direct issue to dispatch list 6235c229fea4 tipc: use destination length for copy string 4e84cccacb12 arc: [devboards] Add support of NFSv3 ACL 41e0254d32bd ARC: change defconfig defaults to ARCv2 b0234f15d2e2 btrfs: tree-checker: Don't check max block group size as current max chunk size limit is unreliable 280d652e0dd2 Input: elan_i2c - add support for ELAN0621 touchpad 77dd91caddfe Input: elan_i2c - add ACPI ID for Lenovo IdeaPad 330-15ARR 08a7e486a19d Input: elan_i2c - add ELAN0620 to the ACPI table 918cd7d1dfac Input: cros_ec_keyb - fix button/switch capability reports 25e78d0557e1 Input: matrix_keypad - check for errors from of_get_named_gpio() 167390050068 Input: synaptics - add PNP ID for ThinkPad P50 to SMBus 58a99d3722fe Input: xpad - quirk all PDP Xbox One gamepads c47bb7af582a scsi: lpfc: fix block guard enablement on SLI3 adapters 2cb8d55be86c i40e: Fix deletion of MAC filters 4c202ade1e74 selinux: add support for RTM_NEWCHAIN, RTM_DELCHAIN, and RTM_GETCHAIN 85bb1e8b7013 svm: Add mutex_lock to protect apic_access_page_done on AMD systems e762e1407bc8 kgdboc: Fix warning with module build 5eede3d09625 kgdboc: Fix restrict error 8f193a716e56 userfaultfd: shmem: UFFDIO_COPY: set the page dirty if VM_WRITE is not set 4ce337622f2b userfaultfd: shmem: add i_size checks 6e44dd02c955 userfaultfd: shmem: allocate anonymous memory for MAP_PRIVATE shmem 10f98c134b02 userfaultfd: use ENOENT instead of EFAULT if the atomic copy user fails 212ad3d70222 drm/meson: Fix OOB memory accesses in meson_viu_set_osd_lut() ea6bb077bff2 drm/meson: Enable fast_io in meson_dw_hdmi_regmap_config 736f04212a28 drm/meson: Fixes for drm_crtc_vblank_on/off support c952979ad95b drm: set is_master to 0 upon drm_new_set_master() failure 8a8effbe56b1 drm/amd/dm: Don't forget to attach MST encoders 94be4764b4bb drm/ast: Fix incorrect free on ioregs 81f966235412 tracing/fgraph: Fix set_graph_function from showing interrupts a99075642666 IB/mlx5: Avoid load failure due to unknown link width a41e946e9380 mips: fix mips_get_syscall_arg o32 check 8e847e8c7456 MIPS: ralink: Fix mt7620 nd_sd pinmux d49297b5c77a tracepoint: Use __idx instead of idx in DO_TRACE macro to make it unique fd8152818f11 sched, trace: Fix prev_state output in sched_switch tracepoint 2858d1891eb5 arm64: ftrace: Fix to enable syscall events on arm64 86e429241603 mtd: nand: Fix memory allocation in nanddev_bbt_init() ac8edc62e813 uprobes: Fix handle_swbp() vs. unregister() + register() race once more 61c963ab59fd iser: set sector for ambiguous mr status errors 0448ad42d6a1 unifdef: use memcpy instead of strncpy f2d12a0ba143 test_hexdump: use memcpy instead of strncpy 724ff9cbfe1f blk-mq: fix corruption with direct issue 61c68f2a2af0 Linux 4.19.7 842c4c22ea2b misc: mic/scif: fix copy-paste error in scif_create_remote_lookup 5e4b30d68a02 Drivers: hv: vmbus: check the creation_status in vmbus_establish_gpadl() b66375b599bf mm: use swp_offset as key in shmem_replace_page() 16a2d602244f mm: cleancache: fix corruption on missed inode invalidation 91a514788356 lib/test_kmod.c: fix rmmod double free 855f9dc87160 iio:st_magn: Fix enable device after trigger ec800c8b028e iio/hid-sensors: Fix IIO_CHAN_INFO_RAW returning wrong values for signed numbers 91f1c5c65d73 Revert "usb: dwc3: gadget: skip Set/Clear Halt when invalid" c7d370712e72 usb: core: quirks: add RESET_RESUME quirk for Cherry G230 Stream series d4f924e359ad USB: usb-storage: Add new IDs to ums-realtek b73301b7db4a staging: rtl8723bs: Add missing return for cfg80211_rtw_get_station 6d956674dfc5 staging: rtl8723bs: Fix incorrect sense of ether_addr_equal fa299861aeeb staging: mt7621-pinctrl: fix uninitialized variable ngroups bea52e4d1e42 staging: mt7621-dma: fix potentially dereferencing uninitialized 'tx_desc' 6df2b837939a staging: vchiq_arm: fix compat VCHIQ_IOC_AWAIT_COMPLETION 053b783d3da3 staging: most: use format specifier "%s" in snprintf 0d04d450fe0d dmaengine: at_hdmac: fix module unloading 9983a5bba09e dmaengine: at_hdmac: fix memory leak in at_dma_xlate() 6e74fc22db9c ARM: dts: rockchip: Remove @0 from the veyron memory node b16c2b78f13c ASoC: pcm186x: Fix device reset-registers trigger value f35f68c68ce4 ASoC: intel: cht_bsw_max98090_ti: Add quirk for boards using pmc_plt_clk_0 ffaaaf68be1e ext2: fix potential use after free 1666cf8c492d ext2: initialize opts.s_mount_opt as zero before using it 553927d6aab9 binder: fix race that allows malicious free of live buffer a22ff9df71aa function_graph: Reverse the order of pushing the ret_stack and the callback d2bcf809e838 function_graph: Move return callback before update of curr_ret_stack aec14c812ba8 function_graph: Have profiler use curr_ret_stack and not depth 392374326d29 function_graph: Use new curr_ret_depth to manage depth instead of curr_ret_stack 72c33b233f05 function_graph: Make ftrace_push_return_trace() static 35aa93cbb04c MIPS: function_graph: Simplify with function_graph_enter() bdfd01cfd1e7 arm64: function_graph: Simplify with function_graph_enter() ef9326a145cd s390/function_graph: Simplify with function_graph_enter() 84d2023c14ea riscv/function_graph: Simplify with function_graph_enter() 87352d621bd3 parisc: function_graph: Simplify with function_graph_enter() 34773b2f57ae sparc/function_graph: Simplify with function_graph_enter() 56c1dd92c0fc sh/function_graph: Simplify with function_graph_enter() 5478648ee825 powerpc/function_graph: Simplify with function_graph_enter() 25ac02d0ed5e nds32: function_graph: Simplify with function_graph_enter() 217614993ace x86/function_graph: Simplify with function_graph_enter() e7deeabe9aa3 microblaze: function_graph: Simplify with function_graph_enter() fbbee0cfba5f ARM: function_graph: Simplify with function_graph_enter() 67d7bec3fc6c function_graph: Create function_graph_enter() to consolidate architecture code b72fc1c3cce4 ALSA: hda/realtek - Add auto-mute quirk for HP Spectre x360 laptop dcd51305cd41 ALSA: hda/realtek - fix the pop noise on headphone for lenovo laptops 524841156bbe ALSA: hda/realtek - fix headset mic detection for MSI MS-B171 094c00891be8 ALSA: hda/realtek - Support ALC300 bb951d8d965c ALSA: hda: Add ASRock N68C-S UCC the power_save blacklist 15c5fb33cda9 ALSA: sparc: Fix invalid snd_free_pages() at error path d8a2dca04064 ALSA: control: Fix race between adding and removing a user element b77c35ef8e38 ALSA: ac97: Fix incorrect bit shift at AC97-SPSA control write e83c4405ebf0 ALSA: wss: Fix invalid snd_free_pages() at error path adcd35a38cde fs: fix lost error code in dio_complete 205af59e7011 perf/x86/intel: Disallow precise_ip on BTS events be0e2e2436cc perf/x86/intel: Add generic branch tracing check to intel_pmu_has_bts() ad65b548409c perf/x86/intel: Move branch tracing setup to the Intel-specific source file 33448a8b577d x86/fpu: Disable bottom halves while loading FPU registers 00f91adf52af x86/MCE/AMD: Fix the thresholding machinery initialization order 8af02415638e arm64: dts: rockchip: Fix PCIe reset polarity for rk3399-puma-haikou. ab7702162bbc PCI: Fix incorrect value returned from pcie_get_speed_cap() 1ce69ec307fd PCI: dwc: Fix MSI-X EP framework address calculation bug b391ed731b39 PCI: layerscape: Fix wrong invocation of outbound window disable accessor 590657656bdc btrfs: relocation: set trans to be NULL after ending transaction 172a94eb2df2 Btrfs: fix race between enabling quotas and subvolume creation 715608dbf756 Btrfs: fix rare chances for data loss when doing a fast fsync 78a2890fcda1 Btrfs: ensure path name is null terminated at btrfs_control_ioctl aaf249e36785 btrfs: Always try all copies when reading extent buffers 949ddf8039bf udf: Allow mounting volumes with incorrect identification strings 01fb21bf2424 xtensa: fix coprocessor part of ptrace_{get,set}xregs 5f84a996a0cb xtensa: fix coprocessor context offset definitions 4ec1039f474b xtensa: enable coprocessors that are being flushed bbe23c4b948f KVM: VMX: re-add ple_gap module parameter 61c42d657c85 KVM: X86: Fix scan ioapic use-before-initialization ffb01e73737b KVM: LAPIC: Fix pv ipis use-before-initialization 6d772df4038e KVM: x86: Fix kernel info-leak in KVM_HC_CLOCK_PAIRING hypercall 76c8476cc720 KVM: nVMX/nSVM: Fix bug which sets vcpu->arch.tsc_offset to L1 tsc_offset b8b0c871640f kvm: svm: Ensure an IBPB on all affected CPUs when freeing a vmcb 471aca572529 kvm: mmu: Fix race in emulated page table writes 34b7a7cc5321 userfaultfd: shmem/hugetlbfs: only allow to register VM_MAYWRITE vmas 9f3baacee183 x86/speculation: Provide IBPB always command line options d1ec2354787a x86/speculation: Add seccomp Spectre v2 user space protection mode 7b62ef142c11 x86/speculation: Enable prctl mode for spectre_v2_user 238ba6e75855 x86/speculation: Add prctl() control for indirect branch speculation f67fafb88c46 x86/speculation: Prepare arch_smt_update() for PRCTL mode e84124017450 x86/speculation: Prevent stale SPEC_CTRL msr content 59028be13385 x86/speculation: Split out TIF update aecb99692a4d ptrace: Remove unused ptrace_may_access_sched() and MODE_IBRS a17888154cf2 x86/speculation: Prepare for conditional IBPB in switch_mm() dd73e15ea213 x86/speculation: Avoid __switch_to_xtra() calls a87c81f0de3d x86/process: Consolidate and simplify switch_to_xtra() code 69985a2cae82 x86/speculation: Prepare for per task indirect branch speculation control 711875432218 x86/speculation: Add command line control for indirect branch speculation 8a34c70686e0 x86/speculation: Unify conditional spectre v2 print functions 507ac84e159b x86/speculataion: Mark command line parser data __initdata 275d90f0fa5d x86/speculation: Mark string arrays const correctly 10c24dc62a3a x86/speculation: Reorder the spec_v2 code 1572793b498d x86/l1tf: Show actual SMT state f55e301ec4d5 x86/speculation: Rework SMT state change 340693ee912e sched/smt: Expose sched_smt_present static key f98bf1640e06 x86/Kconfig: Select SCHED_SMT if SMP enabled a2c094816f89 sched/smt: Make sched_smt_present track topology 6308dde50fcc x86/speculation: Reorganize speculation control MSRs update 39402a5e5a29 x86/speculation: Rename SSBD update functions ca41d792a230 x86/speculation: Disable STIBP when enhanced IBRS is in use f37b55ab8d84 x86/speculation: Move STIPB/IBPB string conditionals out of cpu_show_common() 30a8e214606d x86/speculation: Remove unnecessary ret variable in cpu_show_common() 2ee44e2d761a x86/speculation: Clean up spectre_v2_parse_cmdline() e8494e5df78e x86/speculation: Update the TIF_SSBD comment 90d2c53fa196 x86/retpoline: Remove minimal retpoline support 8c4ad5d39144 x86/retpoline: Make CONFIG_RETPOLINE depend on compiler support cbc93677ef08 x86/speculation: Add RETPOLINE_AMD support to the inline asm CALL_NOSPEC variant 44a076100a7b x86/speculation: Propagate information about RSB filling mitigation to sysfs cacd9385b78d x86/speculation: Apply IBPB more strictly to avoid cross-process data leak b07fc04c94e3 x86/speculation: Enable cross-hyperthread spectre v2 STIBP mitigation 4e3fbd7433d7 tipc: fix lockdep warning during node delete 38af4b903210 net: phy: add workaround for issue where PHY driver doesn't bind to the device aaa7e45c00d6 tcp: defer SACK compression after DupThresh b8e076958a09 net/dim: Update DIM start sample after each DIM iteration b06510bf095b virtio-net: fail XDP set if guest csum is negotiated 1af400beef4a virtio-net: disable guest csum during XDP set 4aaa233c79f6 net: skb_scrub_packet(): Scrub offload_fwd_mark 2f6cfb8e9f5c net: thunderx: set xdp_prog to NULL if bpf_prog_add fails 535b494a4fa5 usbnet: ipheth: fix potential recvmsg bug and recvmsg bug 2 711e3d37275c s390/qeth: fix length check in SNMP processing 720e0d05af0f rapidio/rionet: do not free skb before reading its length f2a67e68dbae packet: copy user buffers before orphan or clone abc963e459fd net: thunderx: set tso_hdrs pointer to NULL in nicvf_free_snd_queue cfbee9e96d79 net: gemini: Fix copy/paste error b24a813e792d net: don't keep lonely packets forever in the gro hash 18dd9bf51325 lan743x: fix return value for lan743x_tx_napi_poll 767d890331ea lan743x: Enable driver to work with LAN7431 8b37c40503ea mm/khugepaged: collapse_shmem() do not crash on Compound af24c01831e4 mm/khugepaged: collapse_shmem() without freezing new_page 3e9646c76cb9 mm/khugepaged: minor reorderings in collapse_shmem() ee13d69bc1e8 mm/khugepaged: collapse_shmem() remember to clear holes 78141aabfbb9 mm/khugepaged: fix crashes due to misaccounted holes 8797f2f4fe0d mm/khugepaged: collapse_shmem() stop if punched or truncated d31ff4722f45 mm/huge_memory: fix lockdep complaint on 32-bit i_size_read() 7e18656c9a2c mm/huge_memory: splitting set mapping+index before unfreeze 69697e6a61c7 mm/huge_memory: rename freeze_page() to unmap_page() 96db90800c06 Linux 4.19.6 d873e63e0a01 media: ov5640: fix auto controls values when switching to manual mode 5724c6ad1c4c media: ov5640: fix wrong binning value in exposure calculation 644fefe4c6a7 media: ov5640: fix auto gain & exposure when changing mode f8248ad512b6 media: ov5640: fix exposure regression 905fa2f2ffad media: ov5640: Fix timings setup code c59dc6cf4fd9 media: ov5640: Re-work MIPI startup sequence 016a8fc59d14 rcu: Make need_resched() respond to urgent RCU-QS needs 38084377af4f gfs2: Fix iomap buffer head reference counting bug 9365cdf8db51 tty: wipe buffer if not echoing data 5a2261ed3a29 tty: wipe buffer. 5e8c28f4fd64 include/linux/pfn_t.h: force '~' to be parsed as an unary operator e7a121e34c79 dax: Avoid losing wakeup in dax_lock_mapping_entry 9dec38554aa8 mm, page_alloc: check for max order in hot path db89fc007b23 tmpfs: make lseek(SEEK_DATA/SEK_HOLE) return ENXIO with a negative offset b44fd1268bd2 mm, memory_hotplug: check zone_movable in has_unmovable_pages 510066729ba4 z3fold: fix possible reclaim races 43b2ceb0d4e0 efi/arm: Revert deferred unmap of early memmap mapping f5c632cfc424 powerpc/numa: Suppress "VPHN is not supported" messages b5ccf0038f34 NFSv4: Fix an Oops during delegation callbacks 2bc40f89f47e kdb: Use strscpy with destination buffer size 4dc843906873 drm/amdgpu: fix bug with IH ring setup 021e2f3fc985 RISC-V: Silence some module warnings on 32-bit fc9b1d7f791f riscv: add missing vdso_install target ab1a52066938 SUNRPC: Fix a bogus get/put in generic_key_to_expire() 487d58a9c3e5 block: copy ioprio in __bio_clone_fast() and bounce 08f94d0628c3 perf/x86/intel/uncore: Add more IMC PCI IDs for KabyLake and CoffeeLake CPUs 08fbd4e011ef sched/fair: Fix cpu_util_wake() for 'execl' type workloads b771863247e8 powerpc/io: Fix the IO workarounds code to work with Radix 73fd491d7708 floppy: fix race condition in __floppy_read_block_0() c587ba480e12 crypto: simd - correctly take reqsize of wrapped skcipher into account 49bcb0415da9 rtc: pcf2127: fix a kmemleak caused in pcf2127_i2c_gather_write b411f9463a78 rtc: cmos: Do not export alarm rtc_ops when we do not support alarms 121f89dd7024 cpufreq: imx6q: add return value check for voltage scale 8d976d7a883c KVM: PPC: Move and undef TRACE_INCLUDE_PATH/FILE c7ae5115e32a scsi: hisi_sas: Remove set but not used variable 'dq_list' 3d57a04fbd6d scsi: lpfc: fix remoteport access 08609aace6bb tools/testing/nvdimm: Fix the array size for dimm devices. c4b25ef590f5 pinctrl: meson: fix meson8b ao pull register bits 93620bc4de8a pinctrl: meson: fix meson8 ao pull register bits c74e3fc6d0c3 pinctrl: meson: fix gxl ao pull register bits 5922ab4adc13 pinctrl: meson: fix gxbb ao pull register bits 71ab26e917de pinctrl: meson: fix pinconf bias disable 20663629f6ae fanotify: fix handling of events on child sub-directory 1dc3c17cdb9f fsnotify: generalize handling of extra event flags 6763372b816c IB/hfi1: Eliminate races in the SDMA send error path 87403e35bc56 ACPICA: AML interpreter: add region addresses in global list during initialization d5a9ba4324d5 can: flexcan: remove not needed struct flexcan_priv::tx_mb and struct flexcan_priv::tx_mb_idx 24e5589791d0 can: flexcan: Always use last mailbox for TX 50d94ac1da74 can: hi311x: Use level-triggered interrupt bf8295faed73 can: raw: check for CAN FD capable netdev in raw_sendmsg() 04f985776f04 can: flexcan: handle tx-complete CAN frames via rx-offload infrastructure f699c3222635 can: flexcan: use can_rx_offload_queue_sorted() for flexcan_irq_bus_*() 6ce9d61a6537 can: rx-offload: rename can_rx_offload_irq_queue_err_skb() to can_rx_offload_queue_tail() 169130c87a88 can: rx-offload: introduce can_rx_offload_get_echo_skb() and can_rx_offload_queue_sorted() functions 474673a94f17 can: dev: __can_get_echo_skb(): print error message, if trying to echo non existing skb e3b8d98e3758 can: dev: __can_get_echo_skb(): Don't crash the kernel if can_priv::echo_skb is accessed out of bounds cfc8ed910312 can: dev: __can_get_echo_skb(): replace struct can_frame by canfd_frame to access frame length 5877d2c0eac8 can: dev: can_get_echo_skb(): factor out non sending code to __can_get_echo_skb() 8d2aed6439cf can: flexcan: Unlock the MB unconditionally 09132a6b01a7 drm/ast: Remove existing framebuffers before loading driver 80142af39bd9 drm/ast: fixed cursor may disappear sometimes e9d2c0fbe161 drm/ast: change resolution may cause screen blurred 382debd2fe42 drm/i915: Disable LP3 watermarks on all SNB machines e3290a5e24df drm/amdgpu: Fix oops when pp_funcs->switch_power_profile is unset d9ea911e2b90 drm/vc4: Set ->legacy_cursor_update to false when doing non-async updates 7841a545f8bd drm/amdgpu: Add missing firmware entry for HAINAN d543f583e3af drm/fb-helper: Blacklist writeback when adding connectors to fbdev cddcc9959a32 tcp: do not release socket ownership in tcp_close() 5999609a93a4 mm/memory.c: recheck page table entry with page table lock held 3996e891ec97 mm: don't warn about large allocations for slab 292c48e2971e llc: do not use sk_eat_skb() 331bd738eb17 gfs2: Don't leave s_fs_info pointing to freed memory in init_sbd cd947138e8c3 sctp: clear the transport of some out_chunk_list chunks in sctp_assoc_rm_peer 8380cbfe4eab bfs: add sanity check at bfs_fill_super() 9891b528f91d Input: synaptics - avoid using uninitialized variable when probing 3962e78a9fcb selinux: Add __GFP_NOWARN to allocation at str_read() 829567dd9196 v9fs_dir_readdir: fix double-free on p9stat_read error 9f9e2bd0bbcf tools/power/cpupower: fix compilation with STATIC=true b7d5ef6af8eb opp: ti-opp-supply: Correct the supply in _get_optimal_vdd_voltage call 50f4a3b8eb62 opp: ti-opp-supply: Dynamically update u_volt_min 54923bc74beb brcmfmac: fix reporting support for 160 MHz channels c74c926ffa0a iwlwifi: mvm: don't use SAR Geo if basic SAR is not used 4969751575c8 iwlwifi: mvm: fix regulatory domain update when the firmware starts b643d705441c iwlwifi: mvm: support sta_statistics() even on older firmware 29d920ba59c3 iwlwifi: fix wrong WGDS_WIFI_DATA_SIZE 602162dce8a4 gpio: don't free unallocated ida on gpiochip_add_data_with_key() error path 6d24302acc10 mmc: sdhci-pci: Workaround GLK firmware failing to restore the tuning value 52f4036282f7 mmc: sdhci-pci: Try "cd" for card-detect lookup before using NULL bcec3b858057 Documentation/security-bugs: Postpone fix publication in exceptional cases 160a390a9d53 Documentation/security-bugs: Clarify treatment of embargoed information fc0f90849a45 MAINTAINERS: Add Sasha as a stable branch maintainer 27d6abfb99c8 ALSA: oss: Use kvzalloc() for local buffer allocations cc8b329fef53 usb: xhci: Prevent bus suspend if a port connect change or polling state is detected b6cc7f9c6461 xhci: Add quirk to workaround the errata seen on Cavium Thunder-X2 Soc cad3876cd23d usb: xhci: fix timeout for transition from RExit to U0 60ac01c60ba9 usb: xhci: fix uninitialized completion when USB3 port got wrong status 3e8886bd158f xhci: Add check for invalid byte size error when UAS devices are connected. a237717dfdbc xhci: handle port status events for removed USB3 hcd 82c1b66894fd xhci: Fix leaking USB3 shared_hcd at xhci removal 2ff85eaf165f usb: dwc3: Fix NULL pointer exception in dwc3_pci_remove() c4d1e71e5613 usb: dwc3: core: Clean up ULPI device 4b977515da48 usb: dwc3: gadget: Properly check last unaligned/zero chain TRB 47cb27191f6c usb: dwc3: gadget: fix ISOC TRB type on unaligned transfers 269c01eb49ed usb: core: Fix hub port connection events lost 711bd5d290da efi/libstub: arm: support building with clang fb87a92b4396 HID: steam: remove input device when a hid client is running. Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2018-12-18linux-yocto: drop 4.14 recipesBruce Ashfield
4.19 will replace 4.14 as the LTS kernel, so we drop the 4.14 recipes to enforce this update. Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>