summaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)Author
2018-01-29package.bbclass: add support for pkg_postinst_ontarget()Alexander Kanavin
This function is a convenient and more readable shortcut for situations when the postinst code always needs to run on target. All commands that cannot be executed during cross-install and can only be run on target should go into this function. They will only be executed on first boot (if package was cross-installed) or immediately during package installation on target. Plain pkg_postinst() works as before: it is run during cross-install time, it can contain a request to defer to first boot, and it is also run during package installation on target. Also fix the oeqa test for this functionality to use the new function where appropriate. Signed-off-by: Alexander Kanavin <alexander.kanavin@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2018-01-29meta/lib/oe/rootfs.py: do not execute defer_to_first_boot when processing ↵Alexander Kanavin
postinst_intercept hooks That hook is empty, and doesn't need to be executed; it merely indicates that packages that have used it are requesting to defer their postinst scripts to first boot unconditionally. Signed-off-by: Alexander Kanavin <alexander.kanavin@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2018-01-29meta/lib/oe/rootfs.py: separate first boot deferral logic into a separate ↵Alexander Kanavin
function Signed-off-by: Alexander Kanavin <alexander.kanavin@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2018-01-29postinst_intercepts: add a delay_to_first_boot hookAlexander Kanavin
This allows postinsts scripts to explicitly request a deferral to first boot (by calling 'postinst_intercept delay_to_first_boot') instead of 'exit 1' which should be used only to indicate actual script failures. Signed-off-by: Alexander Kanavin <alexander.kanavin@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2018-01-29ltp: bump to release 20180118Anders Roxell
Removed 3 patches that have been upstreamed: - 0030-lib-Use-PTHREAD_MUTEX_RECURSIVE-in-place-of-PTHREAD_.patch - 0037-ltp-fix-format-security-error.patch - 0038-generate-reproducible-gzip.patch Reworked path 0002-Add-knob-to-control-whether-numa-support-should-be-c.patch. Signed-off-by: Anders Roxell <anders.roxell@linaro.org> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2018-01-29bitbake.conf: Add comm to HOSTTOOLSNiko Mauno
This mitigates following issues during u-boot do_compile() step -- otherwise, if comm is not available, they are quietly ignored: .../scripts/check-config.sh: line 33: comm: command not found .../scripts/check-config.sh: line 39: comm: command not found Since 'comm' is provided by coreutils package, adding it to HOSTTOOLS was considered a lower impact fix compared to adding coreutils-native buildtime dependency to u-boot recipe. Signed-off-by: Niko Mauno <niko.mauno@vaisala.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2018-01-29ofono: use patch sent upstream instead of sedRoss Burton
Instead of using a sed to fix the hashbang in a test tool send a patch upstream and use that. This way we'll notice when the patch doesn't need to be applied anymore. Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2018-01-29classes/utils: remove compatibility functionsRoss Burton
These base_* functions were moved into meta/lib/oe back in 2010 and wrappers left in utils.bbclass for compatibility. It's been eight years, so I think it's time to remove them. Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2018-01-29meta: don't use deprecated functions from utils.bbclassRoss Burton
These functions were moved to meta/lib/oe in 2010 and the base_* functions in utils.bbclass were intended to be a short-term compatibility layer. They're still used in a few places, so update the callers to use the new functions. Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2018-01-29bluez5: only depend on pygobject if its going to workRoss Burton
Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2018-01-29ofono: only depend on pygobject if its going to workRoss Burton
Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2018-01-29libxshmfence: fix build with glibc 2.27Ross Burton
With glibc 2.27 memfd_create() is behind a _GNU_SOURCE guard, so use AC_USE_SYSTEM_EXTENSIONS to define it. Signed-off-by: Ross Burton <ross.burton@intel.com>
2018-01-29systemd: Fix build with glibc 2.27Khem Raj
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2018-01-29pulseaudio: Fix build with glibc 2.27Khem Raj
memfd_create is now available in glibc Signed-off-by: Khem Raj <raj.khem@gmail.com>
2018-01-29e2fsprogs: 1.43.7 -> 1.43.8Huang Qiyu
Upgrade e2fsprogs from 1.43.7 to 1.43.8. Backport patch to fix build on BE systems Signed-off-by: Huang Qiyu <huangqy.fnst@cn.fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2018-01-29perl: Undefine d_libm_lib_version.Daniel Díaz
A recent commit in GLIBC [1] got rid of _LIB_VERSION, which makes Perl's build fail: | pp.c:47:5: error: unknown type name '_LIB_VERSION_TYPE'; did you mean '__VERSION__'? | _LIB_VERSION_TYPE _LIB_VERSION = _IEEE_; | ^~~~~~~~~~~~~~~~~ | __VERSION__ | pp.c:47:38: error: '_IEEE_' undeclared here (not in a function); did you mean '_SIZET_'? | _LIB_VERSION_TYPE _LIB_VERSION = _IEEE_; | ^~~~~~ | _SIZET_ | make[1]: *** [pp.o] Error 1 The current config.sh enables d_libm_lib_version for everyone, with special cases left to undefine it as fixup (such as MUSL [2]). Since this may only affect some BSDs and Cygwin [3], it follows that the opposite (defining it) should be a fixup for those special cases. [1] https://sourceware.org/git/?p=glibc.git;a=commit;h=813378e9fe17e029caf627cab76fe23eb46815fa [2] http://cgit.openembedded.org/openembedded-core/tree/meta/recipes-devtools/perl/perl_5.24.1.bb?id=8ca61a5464743ff85b6d26886112750d6ddd13e0#n127 [3] https://perl5.git.perl.org/perl.git/blob/443bd156a6baaf7a8fe6b6b05fcf6c4178140ed2:/pp.c#l42 Signed-off-by: Daniel Díaz <daniel.diaz@linaro.org> Signed-off-by: Khem Raj <raj.khem@gmail.com>
2018-01-29make: Backport fixes to not assume glibc internal glob implementationKhem Raj
Exposed with glibc 2.27 Signed-off-by: Khem Raj <raj.khem@gmail.com>
2018-01-29testimage: enable gi test suiteRoss Burton
(From OE-Core rev: d8243c4588d4f1bb057fd917bfea130c4907e24c) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2018-01-29oeqa/runtime: add gobject-introspection testRoss Burton
(From OE-Core rev: 497a95b576e19e39e20ac280d0db24f51b7c9679) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2018-01-29glibc: Adapt do_install_append_aarch64() for usrmergePeter Kjellerstedt
Change hardcoded /lib to ${nonarch_base_libdir} to correctly adapt the code in do_install_append_aarch64() for when usrmerge is enabled in DISTRO_FEATURES. Signed-off-by: Peter Kjellerstedt <peter.kjellerstedt@axis.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2018-01-29libfm: split the gtk+ bindings into their own packageMax Krummenacher
Recipes depending on libfm with the gtk+ bindings will automatically rdepend additionally on the new package libfm-gtk. Signed-off-by: Max Krummenacher <max.krummenacher@toradex.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2018-01-29bitbake.conf: add STAMPS_DIR to BB_HASHBASE_WHITELISTMing Liu
This allows scripts/bitbake-whatchanged to calculate the dependency changes correctly since it needs to set different STAMPS_DIR during the comparation. Signed-off-by: Ming Liu <liu.ming50@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2018-01-29meson: Adjust for clang compilerKhem Raj
Remove hardcoding c/c++ compiler to be gcc alone, its possible to use clang as replacement for cross compilers from meta-clang, therefore set clang/clang++ if TOOLCHAIN = "clang" Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2018-01-29python: Upgrade both python and python-native to 2.7.14Derek Straka
Rebased: - python/01-use-proper-tools-for-cross-build.patch - python/fix-makefile-for-ptest.patch - python/parallel-makeinst-create-bindir.patch Removed Upstreamed Patch: - python/Don-t-use-getentropy-on-Linux.patch Updated license checksum for changes in the copyright date. The license terms remain unchanged Added an extra do_compile item to create the native pgen that no longer gets compiled by default Signed-off-by: Derek Straka <derek@asterius.io> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2018-01-29python3-manifest: add the _pydecimal files to the numbers packageDerek Straka
The _pydecimal files are required to use the numbers package and downstream packages are currently required to add a RDEPENDS on python3-misc to avoid an import error Signed-off-by: Derek Straka <derek@asterius.io> Signed-off-by: Ross Burton <ross.burton@intel.com>
2018-01-29python: fix parse dependenciesRoss Burton
Adding a file-checksums flag for the manifest to do_split_packages doesn't achieve anything as do_split_packages isn't a task. Changing this to tha task do_package shows that the path is wrong, but we also know that as the manifest is in SRC_URI any changes to it would result in a rebuild anyway, so this line can be deleted. However there is a problem of the recipe not being reparsed when it needs to be, if the JSON has changed. The main bitbake process can hash the recipe and use stale data from the cache as it hasn't considered the manifest file changing. This results in non-determinism warnings when the worker parses the recipe again and comes to a different hash (as the manifest has changed, so the packaging changed). Solve this by calling bb.parse.mark_dependency() to declare the dependency on the manifest. Signed-off-by: Ross Burton <ross.burton@intel.com>
2018-01-29man-pages: 4.11 -> 4.14Huang Qiyu
1.Upgrade man-pages from 4.11 to 4.14. 2.Update the checksum of LIC_FILES_CHKSUM, since README has been changed. Signed-off-by: Huang Qiyu <huangqy.fnst@cn.fujitsu.com> Signed-off-by: Ross Burton <ross.burton@intel.com>
2018-01-29linux-libc-headers: 4.12 -> 4.14.13Huang Qiyu
Upgrade linux-libc-headers from 4.12 to 4.14.13. Signed-off-by: Huang Qiyu <huangqy.fnst@cn.fujitsu.com> Signed-off-by: Ross Burton <ross.burton@intel.com>
2018-01-29libunwind: 1.2 -> 1.2.1Huang Qiyu
1.Upgrade libunwind from 1.2 to 1.2.1. 2.Delete fix-mips.patch, since it is integrated upstream. Signed-off-by: Huang Qiyu <huangqy.fnst@cn.fujitsu.com> Signed-off-by: Ross Burton <ross.burton@intel.com>
2018-01-29blktrace: 1.1.0+gitX -> 1.2.0+gitXHuang Qiyu
1.Upgrade blktrace form 1.1.0+gitX to 1.2.0+gitX 2.Delete 0001-include-sys-types.h-for-dev_t-definition.patch, since it is integrated upstream. 3.Modify ldflags.patch, since iowatcher/Makefile has been changed. Signed-off-by: Huang Qiyu <huangqy.fnst@cn.fujitsu.com> Signed-off-by: Ross Burton <ross.burton@intel.com>
2018-01-29librsvg: 2.40.19 -> 2.40.20Huang Qiyu
Upgrade librsvg from 2.40.19 to 2.40.20. Signed-off-by: Huang Qiyu <huangqy.fnst@cn.fujitsu.com> Signed-off-by: Ross Burton <ross.burton@intel.com>
2018-01-29less: 527 -> 529Huang Qiyu
Upgrade less from 527 to 529. Signed-off-by: Huang Qiyu <huangqy.fnst@cn.fujitsu.com> Signed-off-by: Ross Burton <ross.burton@intel.com>
2018-01-29kmod: 24 -> 25Huang Qiyu
Upgrade kmod from 24 to 25. Signed-off-by: Huang Qiyu <huangqy.fnst@cn.fujitsu.com> Signed-off-by: Ross Burton <ross.burton@intel.com>
2018-01-29package_rpm.bbclass: improve reproducibility of RPM packagesJuro Bystricky
The RPM packages contain BUILDHOST based on the current build host. This breaks reproducibility if the same package is build on two different hosts. To improve reproducible builds, we always set BUILDHOST as "reproducible". Signed-off-by: Juro Bystricky <juro.bystricky@intel.com> Signed-off-by: Ross Burton <ross.burton@intel.com>
2018-01-29lsbtest: minor fixes for LSB 5.0Yi Zhao
* Remove qt4 test component in test list since qt4 isn't installed to lsb image by default. * Update package directory, server IP address and version. * Move LSB_Test.sh from /usr/bin to /opt/lsb-test. * Add lsb as runtime dependency. Signed-off-by: Yi Zhao <yi.zhao@windriver.com> Signed-off-by: Ross Burton <ross.burton@intel.com>
2018-01-29lsb: update to 5.0Yi Zhao
The LSB test packages had been updated to 5.0 in lsbtest. We also need to bump to version 5.0 for this recipe. Signed-off-by: Yi Zhao <yi.zhao@windriver.com> Signed-off-by: Ross Burton <ross.burton@intel.com>
2018-01-29distrodata: add a utility script to compare list of recipesTan Shen Joon
distrocompare.sh is added to compare the added list of recipes between two releases. The output of the script will share the information of the licenses required and other distributions that are using the package. If a single input is provided, it will compare the current branch with the provided branch/commit-ish package list. To run : distrocompare.sh <older hash> <newer hash> E.g. distrocompare.sh morty 92aa0e7 E.g. distrocompare.sh morty pyro E.g. distrocompare.sh morty output : The script will produce a file ending with new_recipe_list.txt preceeded by the branch name from input Signed-off-by: Tan Shen Joon <shen.joon.tan@intel.com> Signed-off-by: Ross Burton <ross.burton@intel.com>
2018-01-29gzip: 1.8 -> 1.9Huang Qiyu
1.Upgrade gzip from 1.8 to 1.9. 2.Delete 0001-gzip-port-zdiff-zless-to-Busybox.patch, since it is integrated upstream. 3.Modify wrong-path-fix.patch, since it is changed upstream. Signed-off-by: Huang Qiyu <huangqy.fnst@cn.fujitsu.com> Signed-off-by: Ross Burton <ross.burton@intel.com>
2018-01-29hdparm: 9.52 -> 9.53Huang Qiyu
Upgrade hdparm from 9.52 to 9.53. Signed-off-by: Huang Qiyu <huangqy.fnst@cn.fujitsu.com> Signed-off-by: Ross Burton <ross.burton@intel.com>
2018-01-29tcf-agent: update machine setting for aarch64 bigendian buildChunrong Guo
Signed-off-by: Chunrong Guo <chunrong.guo@nxp.com> Signed-off-by: Ross Burton <ross.burton@intel.com>
2018-01-29archiver: don't require that images are built using RPM to build SRPMsRoss Burton
The requirement for images being built using RPM is too strict to have access to the RPM functions, simply checking that package_rpm is in PACKAGE_CLASSES is sufficient. Also fail if SRPMs are requested but package_rpm isn't enabled, instead of silently not doing what we were asked. Signed-off-by: Ross Burton <ross.burton@intel.com>
2018-01-29package_rpm.bbclass: Fix matching of architecture independent packagesOtavio Salvador
OE-Core changes the architecture independent RPM packages to use "noarch" instead of "all". This change has been included in the commit below: ,---- | commit 341810aff923ace6b1cc1e15e19383c4f8773b51 | Author: Alexander Kanavin <alexander.kanavin@linux.intel.com> | Date: Mon Jan 9 16:37:28 2017 +0200 | | package_rpm.bbclass: make architecture-independent .rpm packages | "noarch" instead of "all" | | Too many places in dnf/rpm4 stack make that assumption; let's not | fight against it. | | Signed-off-by: Alexander Kanavin <alexander.kanavin@linux.intel.com> `---- This is causing problems with machines that has "all" inside the machine name. Reported-by: Alexandru Palalau <ioan-alexandru.palalau@nxp.com> Signed-off-by: Otavio Salvador <otavio@ossystems.com.br> Signed-off-by: Ross Burton <ross.burton@intel.com>
2018-01-29librsvg-gtk package: add gdk-pixbuf-bin RRECOMMENDSAndreas Müller
librsvg-gtk installs /usr/share/thumbnailers/librsvg.thumbnailer which contains TryExec and Exec for gdk-pixbuf-thumbnailer which is installed by gdk-pixbuf-bin. Fixes the following message in systemd-journal: raspberrypi3 org.freedesktop.thumbnails.Thumbnailer1[494]: Registered thumbailer /usr/bin/gdk-pixbuf-thumbnailer -s %s %u %o raspberrypi3 org.freedesktop.thumbnails.Thumbnailer1[494]: error: The metadata does not have a thumbnail property raspberrypi3 org.freedesktop.thumbnails.Thumbnailer1[494]: error: The metadata does not have a thumbnail property Signed-off-by: Andreas Müller <schnitzeltony@gmail.com> Signed-off-by: Ross Burton <ross.burton@intel.com>
2018-01-29screen: upgrade to version 4.6.2Maxin B. John
4.6.1 -> 4.6.2 As suggested by AUH Signed-off-by: Maxin B. John <maxin.john@intel.com> Signed-off-by: Ross Burton <ross.burton@intel.com>
2018-01-29pango: upgrade to version 1.40.14Maxin B. John
Upgrading to stable version 1.40.14 Signed-off-by: Maxin B. John <maxin.john@intel.com> Signed-off-by: Ross Burton <ross.burton@intel.com>
2018-01-29libsoup-2.4: upgrade to version 2.60.3Maxin B. John
2.60.2 -> 2.60.3 Signed-off-by: Maxin B. John <maxin.john@intel.com> Signed-off-by: Ross Burton <ross.burton@intel.com>
2018-01-29busybox.inc: Add sanity check to test if the suid binary provides shNathan Rossi
Add a sanity check during the do_compile task to fail if the suid busybox provides /bin/sh. This is considered as a hard fail since not only is providing sh as suid problematic for security reasons but also because the sh configured for suid is less functional than the nosuid configured sh and breaks a number of required features (e.g. 64-bit test). Signed-off-by: Nathan Rossi <nathan@nathanrossi.com> Signed-off-by: Ross Burton <ross.burton@intel.com>
2018-01-29oe-pkgdata-util: Include colon when searching for variablesAmanda Brindle
When searching for variables, include colon to ensure the script doesn't find a variable that starts with the same name. Signed-off-by: Amanda Brindle <amanda.r.brindle@intel.com> Signed-off-by: Ross Burton <ross.burton@intel.com>
2018-01-26gcc: Upgrade 7.2 -> 7.3Richard Purdie
The static PIE patch was updated by Juro Bystricky <juro.bystricky@intel.com> to work with gcc 7.3. This update from the stable gcc 7 branch includes the retpoline functionality which is useful to assist with recent security issues. Two backported patches were dropped as they're included in 7.3. Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2018-01-26linux-yocto/4.12: update to v4.12.19Bruce Ashfield
Integrating the -stable update from Paul Gortmaker which comprises the following commits: 4aff9b16f4ba Linux 4.12.19 28f16fcc84f9 Bluetooth: Prevent stack info leak from the EFS element. a430cb040780 loop: fix concurrent lo_open/lo_release 4dd428f5965c net: ipv4: fix for a race condition in raw_sendmsg 4428a99052e6 bpf: fix lockdep splat 686f16d77fee bpf/verifier: Fix states_equal() comparison of pointer and UNKNOWN 2c4577f1274b bpf: fix branch pruning logic d16a3b7b0642 bpf: reject out-of-bounds stack pointer calculation a1177b36876f x86/microcode/AMD: Add support for fam17h microcode loading 19be0f0937af iommu/arm-smmu-v3: Cope with duplicated Stream IDs 2e9834fd3352 iommu/arm-smmu-v3: Don't free page table ops twice 1e67d5342bde KVM: X86: Fix load RFLAGS w/o the fixed bit b45b19d6e92d KVM: PPC: Book3S HV: Fix pending_pri value in kvmppc_xive_get_icp() ce4ad56d8b44 KVM: PPC: Book3S: fix XIVE migration of pending interrupts 721f59a0bf4f KVM: arm/arm64: Fix HYP unmapping going off limits a7dbd1b73e6c arm64: kvm: Prevent restoring stale PMSCR_EL1 for vcpu 3e4266c9ea63 KVM: arm/arm64: vgic-its: Preserve the revious read from the pending table c15b6348058e x86/asm: Use register variable to get stack pointer value 19af84ace857 x86/asm: Fix inline asm call constraints for GCC 4.4 78d54c1f3ac1 x86/asm: Fix inline asm call constraints for Clang 9a6d78ff4fb7 arm64: prevent regressions in compressed kernel image size when upgrading to binutils 2.27 3af55325636e mm: Handle 0 flags in _calc_vm_trans() macro f951c9e762b6 arm-ccn: perf: Prevent module unload while PMU is in use 21bc2a95624c arm64: fix CONFIG_DEBUG_WX address reporting a2fb441f8cbd arm64: Initialise high_memory global variable earlier 2b2e733345b0 kbuild: do not call cc-option before KBUILD_CFLAGS initialization 4c67bceb55f4 jump_label: Invoke jump_label_test() via early_initcall() 7cdf334210c3 ARM: BUG if jumping to usermode address in kernel mode 77358b0b4d2f arm64: SW PAN: Update saved ttbr0 value on enter_lazy_tlb 09bddb96452b arm64: SW PAN: Point saved ttbr0 at the zero page when switching to init_mm f451d0e885e1 arm64: fpsimd: Prevent registers leaking from dead tasks bf4bfcfd1780 KVM: arm/arm64: vgic-its: Check result of allocation before use bdd70c122339 KVM: arm/arm64: vgic: Preserve the revious read from the pending table 6b99a8c8cdc0 KVM: arm/arm64: Fix broken GICH_ELRSR big endian conversion eadaba010c36 KVM: VMX: remove I/O port 0x80 bypass on Intel hosts b31b0eb03c2c arm: KVM: Fix VTTBR_BADDR_MASK BUG_ON off-by-one 7c5a020deec8 arm64: KVM: fix VTTBR_BADDR_MASK BUG_ON off-by-one e1d48f51262e KVM: x86: fix APIC page invalidation 4465b8b94411 x86/PCI: Make broadcom_postcore_init() check acpi_disabled 74d50f1ac954 perf tools: Fix leaking rec_argv in error cases a8698071c4ba KVM: lapic: Fixup LDR on load in x2apic 18db8c0cd612 KVM: lapic: Split out x2apic ldr calculation 06e79931a082 KVM: x86: inject exceptions produced by x86_decode_insn 1c7ccddc0a60 KVM: x86: Exit to user-mode on #UD intercept when emulator requires 933a293d5925 KVM: x86: pvclock: Handle first-time write to pvclock-page contains random junk 27a37b1b39b5 mm/madvise.c: fix madvise() infinite loop under special circumstances 9a415da9c31c mm, hugetlbfs: introduce ->split() to vm_operations_struct ab1e80ae2b42 mm: fix device-dax pud write-faults triggered by get_user_pages() 84392a1ffc54 mm/cma: fix alloc_contig_range ret code/potential leak 390e49975c0c mm, thp: Do not make page table dirty unconditionally in touch_p[mu]d() c9d8192b4165 mm, oom_reaper: gather each vma to prevent leaking TLB entry 557cc85757eb mm, memory_hotplug: do not back off draining pcp free pages from kworker context e7f78f55bdcb KVM: SVM: obey guest PAT eee1b36f5bd8 KVM: nVMX: set IDTR and GDTR limits when loading L1 host state eca2c0a4f6fd KVM: PPC: Book3S HV: Don't call real-mode XICS hypercall handlers if not enabled 139c8678fb65 x86/decoder: Add new TEST instruction pattern f06e373ee93d RDS: Heap OOB write in rds_message_alloc_sgs() 4f72d5339c6f RDS: null pointer dereference in rds_atomic_free_op 3911496c7b54 net: Fix double free and memory corruption in get_net_ns_by_id() 5c9f58b167bd MIPS: math-emu: do not use bools for arithmetic a756ea350c02 crypto: salsa20 - fix blkcipher_walk API usage 632cfeb3cb42 crypto: hmac - require that the underlying hash algorithm is unkeyed fdd279fd5561 netlink: Add netns check on taps c142151947e9 dccp: CVE-2017-8824: use-after-free in DCCP code edd820b4ba76 media: hdpvr: Fix an error handling path in hdpvr_probe() aa0327d3dddc powerpc/tm: Add commandline option to disable hardware transactional memory Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>