diff -u linux-4.4.0/arch/x86/include/asm/intel-family.h linux-4.4.0/arch/x86/include/asm/intel-family.h --- linux-4.4.0/arch/x86/include/asm/intel-family.h +++ linux-4.4.0/arch/x86/include/asm/intel-family.h @@ -12,7 +12,6 @@ */ #define INTEL_FAM6_CORE_YONAH 0x0E - #define INTEL_FAM6_CORE2_MEROM 0x0F #define INTEL_FAM6_CORE2_MEROM_L 0x16 #define INTEL_FAM6_CORE2_PENRYN 0x17 @@ -21,7 +20,6 @@ #define INTEL_FAM6_NEHALEM 0x1E #define INTEL_FAM6_NEHALEM_EP 0x1A #define INTEL_FAM6_NEHALEM_EX 0x2E - #define INTEL_FAM6_WESTMERE 0x25 #define INTEL_FAM6_WESTMERE2 0x1F #define INTEL_FAM6_WESTMERE_EP 0x2C @@ -38,9 +36,9 @@ #define INTEL_FAM6_HASWELL_GT3E 0x46 #define INTEL_FAM6_BROADWELL_CORE 0x3D +#define INTEL_FAM6_BROADWELL_XEON_D 0x56 #define INTEL_FAM6_BROADWELL_GT3E 0x47 #define INTEL_FAM6_BROADWELL_X 0x4F -#define INTEL_FAM6_BROADWELL_XEON_D 0x56 #define INTEL_FAM6_SKYLAKE_MOBILE 0x4E #define INTEL_FAM6_SKYLAKE_DESKTOP 0x5E @@ -62,7 +60,6 @@ #define INTEL_FAM6_ATOM_MOOREFIELD 0x5A /* Anniedale */ #define INTEL_FAM6_ATOM_GOLDMONT 0x5C #define INTEL_FAM6_ATOM_DENVERTON 0x5F /* Goldmont Microserver */ -#define INTEL_FAM6_ATOM_GEMINI_LAKE 0x7A /* Xeon Phi */ diff -u linux-4.4.0/arch/x86/kernel/cpu/intel.c linux-4.4.0/arch/x86/kernel/cpu/intel.c --- linux-4.4.0/arch/x86/kernel/cpu/intel.c +++ linux-4.4.0/arch/x86/kernel/cpu/intel.c @@ -26,59 +26,6 @@ #include #endif -/* - * Early microcode releases for the Spectre v2 mitigation were broken. - * Information taken from; - * - https://newsroom.intel.com/wp-content/uploads/sites/11/2018/01/microcode-update-guidance.pdf - * - https://kb.vmware.com/s/article/52345 - * - Microcode revisions observed in the wild - * - Release note from 20180108 microcode release - */ -struct sku_microcode { - u8 model; - u8 stepping; - u32 microcode; -}; -static const struct sku_microcode spectre_bad_microcodes[] = { - { INTEL_FAM6_KABYLAKE_DESKTOP, 0x0B, 0x84 }, - { INTEL_FAM6_KABYLAKE_DESKTOP, 0x0A, 0x84 }, - { INTEL_FAM6_KABYLAKE_DESKTOP, 0x09, 0x84 }, - { INTEL_FAM6_KABYLAKE_MOBILE, 0x0A, 0x84 }, - { INTEL_FAM6_KABYLAKE_MOBILE, 0x09, 0x84 }, - { INTEL_FAM6_SKYLAKE_X, 0x03, 0x0100013e }, - { INTEL_FAM6_SKYLAKE_X, 0x04, 0x0200003c }, - { INTEL_FAM6_SKYLAKE_MOBILE, 0x03, 0xc2 }, - { INTEL_FAM6_SKYLAKE_DESKTOP, 0x03, 0xc2 }, - { INTEL_FAM6_BROADWELL_CORE, 0x04, 0x28 }, - { INTEL_FAM6_BROADWELL_GT3E, 0x01, 0x1b }, - { INTEL_FAM6_BROADWELL_XEON_D, 0x02, 0x14 }, - { INTEL_FAM6_BROADWELL_XEON_D, 0x03, 0x07000011 }, - { INTEL_FAM6_BROADWELL_X, 0x01, 0x0b000025 }, - { INTEL_FAM6_HASWELL_ULT, 0x01, 0x21 }, - { INTEL_FAM6_HASWELL_GT3E, 0x01, 0x18 }, - { INTEL_FAM6_HASWELL_CORE, 0x03, 0x23 }, - { INTEL_FAM6_HASWELL_X, 0x02, 0x3b }, - { INTEL_FAM6_HASWELL_X, 0x04, 0x10 }, - { INTEL_FAM6_IVYBRIDGE_X, 0x04, 0x42a }, - /* Updated in the 20180108 release; blacklist until we know otherwise */ - { INTEL_FAM6_ATOM_GEMINI_LAKE, 0x01, 0x22 }, - /* Observed in the wild */ - { INTEL_FAM6_SANDYBRIDGE_X, 0x06, 0x61b }, - { INTEL_FAM6_SANDYBRIDGE_X, 0x07, 0x712 }, -}; - -static bool bad_spectre_microcode(struct cpuinfo_x86 *c) -{ - int i; - - for (i = 0; i < ARRAY_SIZE(spectre_bad_microcodes); i++) { - if (c->x86_model == spectre_bad_microcodes[i].model && - c->x86_mask == spectre_bad_microcodes[i].stepping) - return (c->microcode <= spectre_bad_microcodes[i].microcode); - } - return false; -} - static void early_init_intel(struct cpuinfo_x86 *c) { u64 misc_enable; @@ -105,20 +52,6 @@ rdmsr(MSR_IA32_UCODE_REV, lower_word, c->microcode); } - /* Now if any of them are set, check the blacklist and clear the lot */ - if ((cpu_has(c, X86_FEATURE_SPEC_CTRL) || - cpu_has(c, X86_FEATURE_INTEL_STIBP) || - cpu_has(c, X86_FEATURE_IBRS) || cpu_has(c, X86_FEATURE_IBPB) || - cpu_has(c, X86_FEATURE_STIBP)) && bad_spectre_microcode(c)) { - pr_warn("Intel Spectre v2 broken microcode detected; disabling Speculation Control\n"); - setup_clear_cpu_cap(X86_FEATURE_IBRS); - setup_clear_cpu_cap(X86_FEATURE_IBPB); - setup_clear_cpu_cap(X86_FEATURE_STIBP); - setup_clear_cpu_cap(X86_FEATURE_SPEC_CTRL); - setup_clear_cpu_cap(X86_FEATURE_INTEL_STIBP); - setup_clear_cpu_cap(X86_FEATURE_SSBD); - } - /* * Atom erratum AAE44/AAF40/AAG38/AAH41: * diff -u linux-4.4.0/arch/x86/kvm/cpuid.c linux-4.4.0/arch/x86/kvm/cpuid.c --- linux-4.4.0/arch/x86/kvm/cpuid.c +++ linux-4.4.0/arch/x86/kvm/cpuid.c @@ -447,7 +447,7 @@ // TSC_ADJUST is emulated entry->ebx |= F(TSC_ADJUST); entry->edx &= kvm_supported_7_0_edx_x86_features; - entry->edx &= get_scattered_cpuid_leaf(7, 0, 2); + cpuid_mask(&entry->edx, 16); } else { entry->ebx = 0; entry->edx = 0; diff -u linux-4.4.0/debian.master/changelog linux-4.4.0/debian.master/changelog --- linux-4.4.0/debian.master/changelog +++ linux-4.4.0/debian.master/changelog @@ -1,4 +1,4 @@ -linux (4.4.0-126.152) xenial; urgency=medium +linux (4.4.0-127.153) xenial; urgency=medium * CVE-2018-3639 (powerpc) - powerpc/pseries: Support firmware disable of RFI flush @@ -83,8 +83,11 @@ - SAUCE: x86/bugs: Fix __ssb_select_mitigation() return type - SAUCE: x86/bugs: Make cpu_show_common() static - x86/entry: define _TIF_ALLWORK_MASK flags explicitly + - Revert "x86/cpufeature: Blacklist SPEC_CTRL/PRED_CMD on early Spectre v2 + microcodes" + - SAUCE: kvm/cpuid: Fix CPUID_7_0.EDX handling - -- Juerg Haefliger Thu, 17 May 2018 17:07:29 +0200 + -- Stefan Bader Sat, 19 May 2018 11:58:02 +0200 linux (4.4.0-125.150) xenial; urgency=medium diff -u linux-4.4.0/debian/changelog linux-4.4.0/debian/changelog --- linux-4.4.0/debian/changelog +++ linux-4.4.0/debian/changelog @@ -1,4 +1,4 @@ -linux (4.4.0-126.152) xenial; urgency=medium +linux (4.4.0-127.153) xenial; urgency=medium * CVE-2018-3639 (powerpc) - powerpc/pseries: Support firmware disable of RFI flush @@ -83,8 +83,11 @@ - SAUCE: x86/bugs: Fix __ssb_select_mitigation() return type - SAUCE: x86/bugs: Make cpu_show_common() static - x86/entry: define _TIF_ALLWORK_MASK flags explicitly + - Revert "x86/cpufeature: Blacklist SPEC_CTRL/PRED_CMD on early Spectre v2 + microcodes" + - SAUCE: kvm/cpuid: Fix CPUID_7_0.EDX handling - -- Juerg Haefliger Thu, 17 May 2018 17:07:29 +0200 + -- Stefan Bader Sat, 19 May 2018 11:58:02 +0200 linux (4.4.0-125.150) xenial; urgency=medium diff -u linux-4.4.0/debian/control linux-4.4.0/debian/control --- linux-4.4.0/debian/control +++ linux-4.4.0/debian/control @@ -85,7 +85,7 @@ /usr/share/doc/linux-doc/00-INDEX for a list of what is contained in each file. -Package: linux-headers-4.4.0-126 +Package: linux-headers-4.4.0-127 Build-Profiles: Architecture: all Multi-Arch: foreign @@ -96,7 +96,7 @@ Description: Header files related to Linux kernel version 4.4.0 This package provides kernel header files for version 4.4.0, for sites that want the latest kernel headers. Please read - /usr/share/doc/linux-headers-4.4.0-126/debian.README.gz for details + /usr/share/doc/linux-headers-4.4.0-127/debian.README.gz for details Package: linux-libc-dev Architecture: i386 amd64 armhf arm64 x32 powerpc ppc64el s390x @@ -132,18 +132,18 @@ version locked tools (such as perf and x86_energy_perf_policy) for version PGKVER. -Package: linux-tools-4.4.0-126 +Package: linux-tools-4.4.0-127 Build-Profiles: Architecture: i386 amd64 armhf arm64 powerpc ppc64el s390x Section: devel Priority: optional Depends: ${misc:Depends}, ${shlibs:Depends}, linux-tools-common -Description: Linux kernel version specific tools for version 4.4.0-126 +Description: Linux kernel version specific tools for version 4.4.0-127 This package provides the architecture dependant parts for kernel version locked tools (such as perf and x86_energy_perf_policy) for - version 4.4.0-126 on + version 4.4.0-127 on 64 bit x86. - You probably want to install linux-tools-4.4.0-126-. + You probably want to install linux-tools-4.4.0-127-. Package: linux-cloud-tools-common Build-Profiles: @@ -165,20 +165,20 @@ This package provides the architecture independent parts for kernel version locked tools for cloud tools for version PGKVER. -Package: linux-cloud-tools-4.4.0-126 +Package: linux-cloud-tools-4.4.0-127 Build-Profiles: Architecture: i386 amd64 armhf Section: devel Priority: optional Depends: ${misc:Depends}, ${shlibs:Depends}, linux-cloud-tools-common -Description: Linux kernel version specific cloud tools for version 4.4.0-126 +Description: Linux kernel version specific cloud tools for version 4.4.0-127 This package provides the architecture dependant parts for kernel - version locked tools for cloud tools for version 4.4.0-126 on + version locked tools for cloud tools for version 4.4.0-127 on 64 bit x86. - You probably want to install linux-cloud-tools-4.4.0-126-. + You probably want to install linux-cloud-tools-4.4.0-127-. -Package: linux-image-4.4.0-126-generic +Package: linux-image-4.4.0-127-generic Build-Profiles: Architecture: i386 amd64 armhf arm64 ppc64el s390x Section: kernel @@ -186,7 +186,7 @@ Provides: linux-image, fuse-module, kvm-api-4, redhat-cluster-modules, ivtv-modules, virtualbox-guest-modules [i386 amd64 x32]${linux:rprovides} Depends: ${misc:Depends}, ${shlibs:Depends}, kmod Recommends: grub-pc [i386 amd64 x32] | grub-efi-amd64 [amd64 x32] | grub-efi-ia32 [i386 amd64 x32] | grub [i386 amd64 x32] | lilo [i386 amd64 x32] | flash-kernel [armhf arm64] | grub-ieee1275 [ppc64el], initramfs-tools | linux-initramfs-tool -Suggests: fdutils, linux-doc-4.4.0 | linux-source-4.4.0, linux-tools, linux-headers-4.4.0-126-generic +Suggests: fdutils, linux-doc-4.4.0 | linux-source-4.4.0, linux-tools, linux-headers-4.4.0-127-generic Description: Linux kernel image for version 4.4.0 on 64 bit x86 SMP This package contains the Linux kernel image for version 4.4.0 on 64 bit x86 SMP. @@ -203,12 +203,12 @@ the linux-generic meta-package, which will ensure that upgrades work correctly, and that supporting packages are also installed. -Package: linux-image-extra-4.4.0-126-generic +Package: linux-image-extra-4.4.0-127-generic Build-Profiles: Architecture: i386 amd64 armhf arm64 ppc64el s390x Section: kernel Priority: optional -Depends: ${misc:Depends}, ${shlibs:Depends}, linux-image-4.4.0-126-generic, crda | wireless-crda +Depends: ${misc:Depends}, ${shlibs:Depends}, linux-image-4.4.0-127-generic, crda | wireless-crda Description: Linux kernel extra modules for version 4.4.0 on 64 bit x86 SMP This package contains the Linux kernel extra modules for version 4.4.0 on 64 bit x86 SMP. @@ -225,21 +225,21 @@ the linux-generic meta-package, which will ensure that upgrades work correctly, and that supporting packages are also installed. -Package: linux-headers-4.4.0-126-generic +Package: linux-headers-4.4.0-127-generic Build-Profiles: Architecture: i386 amd64 armhf arm64 ppc64el s390x Section: devel Priority: optional -Depends: ${misc:Depends}, linux-headers-4.4.0-126, ${shlibs:Depends} +Depends: ${misc:Depends}, linux-headers-4.4.0-127, ${shlibs:Depends} Provides: linux-headers, linux-headers-3.0 Description: Linux kernel headers for version 4.4.0 on 64 bit x86 SMP This package provides kernel header files for version 4.4.0 on 64 bit x86 SMP. . This is for sites that want the latest kernel headers. Please read - /usr/share/doc/linux-headers-4.4.0-126/debian.README.gz for details. + /usr/share/doc/linux-headers-4.4.0-127/debian.README.gz for details. -Package: linux-image-4.4.0-126-generic-dbgsym +Package: linux-image-4.4.0-127-generic-dbgsym Build-Profiles: Architecture: i386 amd64 armhf arm64 ppc64el s390x Section: devel @@ -256,27 +256,27 @@ is uncompressed, and unstripped. This package also includes the unstripped modules. -Package: linux-tools-4.4.0-126-generic +Package: linux-tools-4.4.0-127-generic Build-Profiles: Architecture: i386 amd64 armhf arm64 ppc64el s390x Section: devel Priority: optional -Depends: ${misc:Depends}, linux-tools-4.4.0-126 -Description: Linux kernel version specific tools for version 4.4.0-126 +Depends: ${misc:Depends}, linux-tools-4.4.0-127 +Description: Linux kernel version specific tools for version 4.4.0-127 This package provides the architecture dependant parts for kernel version locked tools (such as perf and x86_energy_perf_policy) for - version 4.4.0-126 on + version 4.4.0-127 on 64 bit x86. -Package: linux-cloud-tools-4.4.0-126-generic +Package: linux-cloud-tools-4.4.0-127-generic Build-Profiles: Architecture: i386 amd64 armhf arm64 ppc64el s390x Section: devel Priority: optional -Depends: ${misc:Depends}, linux-cloud-tools-4.4.0-126 -Description: Linux kernel version specific cloud tools for version 4.4.0-126 +Depends: ${misc:Depends}, linux-cloud-tools-4.4.0-127 +Description: Linux kernel version specific cloud tools for version 4.4.0-127 This package provides the architecture dependant parts for kernel - version locked tools for cloud for version 4.4.0-126 on + version locked tools for cloud for version 4.4.0-127 on 64 bit x86. Package: linux-udebs-generic @@ -290,7 +290,7 @@ for easier version and migration tracking. -Package: linux-image-4.4.0-126-generic-lpae +Package: linux-image-4.4.0-127-generic-lpae Build-Profiles: Architecture: armhf Section: kernel @@ -298,7 +298,7 @@ Provides: linux-image, fuse-module, kvm-api-4, redhat-cluster-modules, ivtv-modules${linux:rprovides} Depends: ${misc:Depends}, ${shlibs:Depends}, kmod Recommends: flash-kernel [armhf], initramfs-tools | linux-initramfs-tool -Suggests: fdutils, linux-doc-4.4.0 | linux-source-4.4.0, linux-tools, linux-headers-4.4.0-126-generic-lpae +Suggests: fdutils, linux-doc-4.4.0 | linux-source-4.4.0, linux-tools, linux-headers-4.4.0-127-generic-lpae Description: Linux kernel image for version 4.4.0 on 64 bit x86 SMP This package contains the Linux kernel image for version 4.4.0 on 64 bit x86 SMP. @@ -315,12 +315,12 @@ the linux-generic-lpae meta-package, which will ensure that upgrades work correctly, and that supporting packages are also installed. -Package: linux-image-extra-4.4.0-126-generic-lpae +Package: linux-image-extra-4.4.0-127-generic-lpae Build-Profiles: Architecture: armhf Section: kernel Priority: optional -Depends: ${misc:Depends}, ${shlibs:Depends}, linux-image-4.4.0-126-generic-lpae, crda | wireless-crda +Depends: ${misc:Depends}, ${shlibs:Depends}, linux-image-4.4.0-127-generic-lpae, crda | wireless-crda Description: Linux kernel extra modules for version 4.4.0 on 64 bit x86 SMP This package contains the Linux kernel extra modules for version 4.4.0 on 64 bit x86 SMP. @@ -337,21 +337,21 @@ the linux-generic-lpae meta-package, which will ensure that upgrades work correctly, and that supporting packages are also installed. -Package: linux-headers-4.4.0-126-generic-lpae +Package: linux-headers-4.4.0-127-generic-lpae Build-Profiles: Architecture: armhf Section: devel Priority: optional -Depends: ${misc:Depends}, linux-headers-4.4.0-126, ${shlibs:Depends} +Depends: ${misc:Depends}, linux-headers-4.4.0-127, ${shlibs:Depends} Provides: linux-headers, linux-headers-3.0 Description: Linux kernel headers for version 4.4.0 on 64 bit x86 SMP This package provides kernel header files for version 4.4.0 on 64 bit x86 SMP. . This is for sites that want the latest kernel headers. Please read - /usr/share/doc/linux-headers-4.4.0-126/debian.README.gz for details. + /usr/share/doc/linux-headers-4.4.0-127/debian.README.gz for details. -Package: linux-image-4.4.0-126-generic-lpae-dbgsym +Package: linux-image-4.4.0-127-generic-lpae-dbgsym Build-Profiles: Architecture: armhf Section: devel @@ -368,27 +368,27 @@ is uncompressed, and unstripped. This package also includes the unstripped modules. -Package: linux-tools-4.4.0-126-generic-lpae +Package: linux-tools-4.4.0-127-generic-lpae Build-Profiles: Architecture: armhf Section: devel Priority: optional -Depends: ${misc:Depends}, linux-tools-4.4.0-126 -Description: Linux kernel version specific tools for version 4.4.0-126 +Depends: ${misc:Depends}, linux-tools-4.4.0-127 +Description: Linux kernel version specific tools for version 4.4.0-127 This package provides the architecture dependant parts for kernel version locked tools (such as perf and x86_energy_perf_policy) for - version 4.4.0-126 on + version 4.4.0-127 on 64 bit x86. -Package: linux-cloud-tools-4.4.0-126-generic-lpae +Package: linux-cloud-tools-4.4.0-127-generic-lpae Build-Profiles: Architecture: armhf Section: devel Priority: optional -Depends: ${misc:Depends}, linux-cloud-tools-4.4.0-126 -Description: Linux kernel version specific cloud tools for version 4.4.0-126 +Depends: ${misc:Depends}, linux-cloud-tools-4.4.0-127 +Description: Linux kernel version specific cloud tools for version 4.4.0-127 This package provides the architecture dependant parts for kernel - version locked tools for cloud for version 4.4.0-126 on + version locked tools for cloud for version 4.4.0-127 on 64 bit x86. Package: linux-udebs-generic-lpae @@ -402,7 +402,7 @@ for easier version and migration tracking. -Package: linux-image-4.4.0-126-lowlatency +Package: linux-image-4.4.0-127-lowlatency Build-Profiles: Architecture: i386 amd64 Section: kernel @@ -410,7 +410,7 @@ Provides: linux-image, fuse-module, kvm-api-4, redhat-cluster-modules, ivtv-modules, virtualbox-guest-modules [i386 amd64 x32]${linux:rprovides} Depends: ${misc:Depends}, ${shlibs:Depends}, kmod Recommends: grub-pc [i386 amd64 x32] | grub-efi-amd64 [amd64 x32] | grub-efi-ia32 [i386 amd64 x32] | grub [i386 amd64 x32] | lilo [i386 amd64 x32] | flash-kernel [armhf arm64], initramfs-tools | linux-initramfs-tool -Suggests: fdutils, linux-doc-4.4.0 | linux-source-4.4.0, linux-tools, linux-headers-4.4.0-126-lowlatency +Suggests: fdutils, linux-doc-4.4.0 | linux-source-4.4.0, linux-tools, linux-headers-4.4.0-127-lowlatency Description: Linux kernel image for version 4.4.0 on 64 bit x86 SMP This package contains the Linux kernel image for version 4.4.0 on 64 bit x86 SMP. @@ -427,12 +427,12 @@ the linux-lowlatency meta-package, which will ensure that upgrades work correctly, and that supporting packages are also installed. -Package: linux-image-extra-4.4.0-126-lowlatency +Package: linux-image-extra-4.4.0-127-lowlatency Build-Profiles: Architecture: i386 amd64 Section: kernel Priority: optional -Depends: ${misc:Depends}, ${shlibs:Depends}, linux-image-4.4.0-126-lowlatency, crda | wireless-crda +Depends: ${misc:Depends}, ${shlibs:Depends}, linux-image-4.4.0-127-lowlatency, crda | wireless-crda Description: Linux kernel extra modules for version 4.4.0 on 64 bit x86 SMP This package contains the Linux kernel extra modules for version 4.4.0 on 64 bit x86 SMP. @@ -449,21 +449,21 @@ the linux-lowlatency meta-package, which will ensure that upgrades work correctly, and that supporting packages are also installed. -Package: linux-headers-4.4.0-126-lowlatency +Package: linux-headers-4.4.0-127-lowlatency Build-Profiles: Architecture: i386 amd64 Section: devel Priority: optional -Depends: ${misc:Depends}, linux-headers-4.4.0-126, ${shlibs:Depends} +Depends: ${misc:Depends}, linux-headers-4.4.0-127, ${shlibs:Depends} Provides: linux-headers, linux-headers-3.0 Description: Linux kernel headers for version 4.4.0 on 64 bit x86 SMP This package provides kernel header files for version 4.4.0 on 64 bit x86 SMP. . This is for sites that want the latest kernel headers. Please read - /usr/share/doc/linux-headers-4.4.0-126/debian.README.gz for details. + /usr/share/doc/linux-headers-4.4.0-127/debian.README.gz for details. -Package: linux-image-4.4.0-126-lowlatency-dbgsym +Package: linux-image-4.4.0-127-lowlatency-dbgsym Build-Profiles: Architecture: i386 amd64 Section: devel @@ -480,27 +480,27 @@ is uncompressed, and unstripped. This package also includes the unstripped modules. -Package: linux-tools-4.4.0-126-lowlatency +Package: linux-tools-4.4.0-127-lowlatency Build-Profiles: Architecture: i386 amd64 Section: devel Priority: optional -Depends: ${misc:Depends}, linux-tools-4.4.0-126 -Description: Linux kernel version specific tools for version 4.4.0-126 +Depends: ${misc:Depends}, linux-tools-4.4.0-127 +Description: Linux kernel version specific tools for version 4.4.0-127 This package provides the architecture dependant parts for kernel version locked tools (such as perf and x86_energy_perf_policy) for - version 4.4.0-126 on + version 4.4.0-127 on 64 bit x86. -Package: linux-cloud-tools-4.4.0-126-lowlatency +Package: linux-cloud-tools-4.4.0-127-lowlatency Build-Profiles: Architecture: i386 amd64 Section: devel Priority: optional -Depends: ${misc:Depends}, linux-cloud-tools-4.4.0-126 -Description: Linux kernel version specific cloud tools for version 4.4.0-126 +Depends: ${misc:Depends}, linux-cloud-tools-4.4.0-127 +Description: Linux kernel version specific cloud tools for version 4.4.0-127 This package provides the architecture dependant parts for kernel - version locked tools for cloud for version 4.4.0-126 on + version locked tools for cloud for version 4.4.0-127 on 64 bit x86. Package: linux-udebs-lowlatency @@ -514,7 +514,7 @@ for easier version and migration tracking. -Package: linux-image-4.4.0-126-powerpc-e500mc +Package: linux-image-4.4.0-127-powerpc-e500mc Build-Profiles: Architecture: powerpc Section: kernel @@ -522,7 +522,7 @@ Provides: linux-image, fuse-module, redhat-cluster-modules, ivtv-modules${linux:rprovides} Depends: ${misc:Depends}, ${shlibs:Depends}, kmod Recommends: grub-ieee1275, initramfs-tools | linux-initramfs-tool -Suggests: fdutils, linux-doc-4.4.0 | linux-source-4.4.0, linux-tools, linux-headers-4.4.0-126-powerpc-e500mc +Suggests: fdutils, linux-doc-4.4.0 | linux-source-4.4.0, linux-tools, linux-headers-4.4.0-127-powerpc-e500mc Description: Linux kernel image for version 4.4.0 on 32-bit Freescale Power e500mc This package contains the Linux kernel image for version 4.4.0 on 32-bit Freescale Power e500mc. @@ -539,12 +539,12 @@ the linux-powerpc-e500mc meta-package, which will ensure that upgrades work correctly, and that supporting packages are also installed. -Package: linux-image-extra-4.4.0-126-powerpc-e500mc +Package: linux-image-extra-4.4.0-127-powerpc-e500mc Build-Profiles: Architecture: powerpc Section: kernel Priority: optional -Depends: ${misc:Depends}, ${shlibs:Depends}, linux-image-4.4.0-126-powerpc-e500mc, crda | wireless-crda +Depends: ${misc:Depends}, ${shlibs:Depends}, linux-image-4.4.0-127-powerpc-e500mc, crda | wireless-crda Description: Linux kernel extra modules for version 4.4.0 on 32-bit Freescale Power e500mc This package contains the Linux kernel extra modules for version 4.4.0 on 32-bit Freescale Power e500mc. @@ -561,21 +561,21 @@ the linux-powerpc-e500mc meta-package, which will ensure that upgrades work correctly, and that supporting packages are also installed. -Package: linux-headers-4.4.0-126-powerpc-e500mc +Package: linux-headers-4.4.0-127-powerpc-e500mc Build-Profiles: Architecture: powerpc Section: devel Priority: optional -Depends: ${misc:Depends}, linux-headers-4.4.0-126, ${shlibs:Depends} +Depends: ${misc:Depends}, linux-headers-4.4.0-127, ${shlibs:Depends} Provides: linux-headers, linux-headers-3.0 Description: Linux kernel headers for version 4.4.0 on 32-bit Freescale Power e500mc This package provides kernel header files for version 4.4.0 on 32-bit Freescale Power e500mc. . This is for sites that want the latest kernel headers. Please read - /usr/share/doc/linux-headers-4.4.0-126/debian.README.gz for details. + /usr/share/doc/linux-headers-4.4.0-127/debian.README.gz for details. -Package: linux-image-4.4.0-126-powerpc-e500mc-dbgsym +Package: linux-image-4.4.0-127-powerpc-e500mc-dbgsym Build-Profiles: Architecture: powerpc Section: devel @@ -592,27 +592,27 @@ is uncompressed, and unstripped. This package also includes the unstripped modules. -Package: linux-tools-4.4.0-126-powerpc-e500mc +Package: linux-tools-4.4.0-127-powerpc-e500mc Build-Profiles: Architecture: powerpc Section: devel Priority: optional -Depends: ${misc:Depends}, linux-tools-4.4.0-126 -Description: Linux kernel version specific tools for version 4.4.0-126 +Depends: ${misc:Depends}, linux-tools-4.4.0-127 +Description: Linux kernel version specific tools for version 4.4.0-127 This package provides the architecture dependant parts for kernel version locked tools (such as perf and x86_energy_perf_policy) for - version 4.4.0-126 on + version 4.4.0-127 on 64 bit x86. -Package: linux-cloud-tools-4.4.0-126-powerpc-e500mc +Package: linux-cloud-tools-4.4.0-127-powerpc-e500mc Build-Profiles: Architecture: powerpc Section: devel Priority: optional -Depends: ${misc:Depends}, linux-cloud-tools-4.4.0-126 -Description: Linux kernel version specific cloud tools for version 4.4.0-126 +Depends: ${misc:Depends}, linux-cloud-tools-4.4.0-127 +Description: Linux kernel version specific cloud tools for version 4.4.0-127 This package provides the architecture dependant parts for kernel - version locked tools for cloud for version 4.4.0-126 on + version locked tools for cloud for version 4.4.0-127 on 64 bit x86. Package: linux-udebs-powerpc-e500mc @@ -626,7 +626,7 @@ for easier version and migration tracking. -Package: linux-image-4.4.0-126-powerpc-smp +Package: linux-image-4.4.0-127-powerpc-smp Build-Profiles: Architecture: powerpc Section: kernel @@ -634,7 +634,7 @@ Provides: linux-image, fuse-module, redhat-cluster-modules, ivtv-modules${linux:rprovides} Depends: ${misc:Depends}, ${shlibs:Depends}, kmod Recommends: yaboot, initramfs-tools | linux-initramfs-tool -Suggests: fdutils, linux-doc-4.4.0 | linux-source-4.4.0, linux-tools, linux-headers-4.4.0-126-powerpc-smp +Suggests: fdutils, linux-doc-4.4.0 | linux-source-4.4.0, linux-tools, linux-headers-4.4.0-127-powerpc-smp Description: Linux kernel image for version 4.4.0 on 32-bit PowerPC SMP This package contains the Linux kernel image for version 4.4.0 on 32-bit PowerPC SMP. @@ -651,12 +651,12 @@ the linux-powerpc-smp meta-package, which will ensure that upgrades work correctly, and that supporting packages are also installed. -Package: linux-image-extra-4.4.0-126-powerpc-smp +Package: linux-image-extra-4.4.0-127-powerpc-smp Build-Profiles: Architecture: powerpc Section: kernel Priority: optional -Depends: ${misc:Depends}, ${shlibs:Depends}, linux-image-4.4.0-126-powerpc-smp, crda | wireless-crda +Depends: ${misc:Depends}, ${shlibs:Depends}, linux-image-4.4.0-127-powerpc-smp, crda | wireless-crda Description: Linux kernel extra modules for version 4.4.0 on 32-bit PowerPC SMP This package contains the Linux kernel extra modules for version 4.4.0 on 32-bit PowerPC SMP. @@ -673,21 +673,21 @@ the linux-powerpc-smp meta-package, which will ensure that upgrades work correctly, and that supporting packages are also installed. -Package: linux-headers-4.4.0-126-powerpc-smp +Package: linux-headers-4.4.0-127-powerpc-smp Build-Profiles: Architecture: powerpc Section: devel Priority: optional -Depends: ${misc:Depends}, linux-headers-4.4.0-126, ${shlibs:Depends} +Depends: ${misc:Depends}, linux-headers-4.4.0-127, ${shlibs:Depends} Provides: linux-headers, linux-headers-3.0 Description: Linux kernel headers for version 4.4.0 on 32-bit PowerPC SMP This package provides kernel header files for version 4.4.0 on 32-bit PowerPC SMP. . This is for sites that want the latest kernel headers. Please read - /usr/share/doc/linux-headers-4.4.0-126/debian.README.gz for details. + /usr/share/doc/linux-headers-4.4.0-127/debian.README.gz for details. -Package: linux-image-4.4.0-126-powerpc-smp-dbgsym +Package: linux-image-4.4.0-127-powerpc-smp-dbgsym Build-Profiles: Architecture: powerpc Section: devel @@ -704,27 +704,27 @@ is uncompressed, and unstripped. This package also includes the unstripped modules. -Package: linux-tools-4.4.0-126-powerpc-smp +Package: linux-tools-4.4.0-127-powerpc-smp Build-Profiles: Architecture: powerpc Section: devel Priority: optional -Depends: ${misc:Depends}, linux-tools-4.4.0-126 -Description: Linux kernel version specific tools for version 4.4.0-126 +Depends: ${misc:Depends}, linux-tools-4.4.0-127 +Description: Linux kernel version specific tools for version 4.4.0-127 This package provides the architecture dependant parts for kernel version locked tools (such as perf and x86_energy_perf_policy) for - version 4.4.0-126 on + version 4.4.0-127 on 64 bit x86. -Package: linux-cloud-tools-4.4.0-126-powerpc-smp +Package: linux-cloud-tools-4.4.0-127-powerpc-smp Build-Profiles: Architecture: powerpc Section: devel Priority: optional -Depends: ${misc:Depends}, linux-cloud-tools-4.4.0-126 -Description: Linux kernel version specific cloud tools for version 4.4.0-126 +Depends: ${misc:Depends}, linux-cloud-tools-4.4.0-127 +Description: Linux kernel version specific cloud tools for version 4.4.0-127 This package provides the architecture dependant parts for kernel - version locked tools for cloud for version 4.4.0-126 on + version locked tools for cloud for version 4.4.0-127 on 64 bit x86. Package: linux-udebs-powerpc-smp @@ -738,7 +738,7 @@ for easier version and migration tracking. -Package: linux-image-4.4.0-126-powerpc64-emb +Package: linux-image-4.4.0-127-powerpc64-emb Build-Profiles: Architecture: powerpc Section: kernel @@ -746,7 +746,7 @@ Provides: linux-image, fuse-module, redhat-cluster-modules, ivtv-modules${linux:rprovides} Depends: ${misc:Depends}, ${shlibs:Depends}, kmod Recommends: grub-ieee1275, initramfs-tools | linux-initramfs-tool -Suggests: fdutils, linux-doc-4.4.0 | linux-source-4.4.0, linux-tools, linux-headers-4.4.0-126-powerpc64-emb +Suggests: fdutils, linux-doc-4.4.0 | linux-source-4.4.0, linux-tools, linux-headers-4.4.0-127-powerpc64-emb Description: Linux kernel image for version 4.4.0 on 64-bit PowerPC SMP Book3E This package contains the Linux kernel image for version 4.4.0 on 64-bit PowerPC SMP Book3E. @@ -763,12 +763,12 @@ the linux-powerpc64-emb meta-package, which will ensure that upgrades work correctly, and that supporting packages are also installed. -Package: linux-image-extra-4.4.0-126-powerpc64-emb +Package: linux-image-extra-4.4.0-127-powerpc64-emb Build-Profiles: Architecture: powerpc Section: kernel Priority: optional -Depends: ${misc:Depends}, ${shlibs:Depends}, linux-image-4.4.0-126-powerpc64-emb, crda | wireless-crda +Depends: ${misc:Depends}, ${shlibs:Depends}, linux-image-4.4.0-127-powerpc64-emb, crda | wireless-crda Description: Linux kernel extra modules for version 4.4.0 on 64-bit PowerPC SMP Book3E This package contains the Linux kernel extra modules for version 4.4.0 on 64-bit PowerPC SMP Book3E. @@ -785,21 +785,21 @@ the linux-powerpc64-emb meta-package, which will ensure that upgrades work correctly, and that supporting packages are also installed. -Package: linux-headers-4.4.0-126-powerpc64-emb +Package: linux-headers-4.4.0-127-powerpc64-emb Build-Profiles: Architecture: powerpc Section: devel Priority: optional -Depends: ${misc:Depends}, linux-headers-4.4.0-126, ${shlibs:Depends} +Depends: ${misc:Depends}, linux-headers-4.4.0-127, ${shlibs:Depends} Provides: linux-headers, linux-headers-3.0 Description: Linux kernel headers for version 4.4.0 on 64-bit PowerPC SMP Book3E This package provides kernel header files for version 4.4.0 on 64-bit PowerPC SMP Book3E. . This is for sites that want the latest kernel headers. Please read - /usr/share/doc/linux-headers-4.4.0-126/debian.README.gz for details. + /usr/share/doc/linux-headers-4.4.0-127/debian.README.gz for details. -Package: linux-image-4.4.0-126-powerpc64-emb-dbgsym +Package: linux-image-4.4.0-127-powerpc64-emb-dbgsym Build-Profiles: Architecture: powerpc Section: devel @@ -816,27 +816,27 @@ is uncompressed, and unstripped. This package also includes the unstripped modules. -Package: linux-tools-4.4.0-126-powerpc64-emb +Package: linux-tools-4.4.0-127-powerpc64-emb Build-Profiles: Architecture: powerpc Section: devel Priority: optional -Depends: ${misc:Depends}, linux-tools-4.4.0-126 -Description: Linux kernel version specific tools for version 4.4.0-126 +Depends: ${misc:Depends}, linux-tools-4.4.0-127 +Description: Linux kernel version specific tools for version 4.4.0-127 This package provides the architecture dependant parts for kernel version locked tools (such as perf and x86_energy_perf_policy) for - version 4.4.0-126 on + version 4.4.0-127 on 64 bit x86. -Package: linux-cloud-tools-4.4.0-126-powerpc64-emb +Package: linux-cloud-tools-4.4.0-127-powerpc64-emb Build-Profiles: Architecture: powerpc Section: devel Priority: optional -Depends: ${misc:Depends}, linux-cloud-tools-4.4.0-126 -Description: Linux kernel version specific cloud tools for version 4.4.0-126 +Depends: ${misc:Depends}, linux-cloud-tools-4.4.0-127 +Description: Linux kernel version specific cloud tools for version 4.4.0-127 This package provides the architecture dependant parts for kernel - version locked tools for cloud for version 4.4.0-126 on + version locked tools for cloud for version 4.4.0-127 on 64 bit x86. Package: linux-udebs-powerpc64-emb @@ -850,7 +850,7 @@ for easier version and migration tracking. -Package: linux-image-4.4.0-126-powerpc64-smp +Package: linux-image-4.4.0-127-powerpc64-smp Build-Profiles: Architecture: powerpc Section: kernel @@ -858,7 +858,7 @@ Provides: linux-image, fuse-module, redhat-cluster-modules, ivtv-modules${linux:rprovides} Depends: ${misc:Depends}, ${shlibs:Depends}, kmod Recommends: yaboot, initramfs-tools | linux-initramfs-tool -Suggests: fdutils, linux-doc-4.4.0 | linux-source-4.4.0, linux-tools, linux-headers-4.4.0-126-powerpc64-smp +Suggests: fdutils, linux-doc-4.4.0 | linux-source-4.4.0, linux-tools, linux-headers-4.4.0-127-powerpc64-smp Description: Linux kernel image for version 4.4.0 on 64-bit PowerPC SMP This package contains the Linux kernel image for version 4.4.0 on 64-bit PowerPC SMP. @@ -875,12 +875,12 @@ the linux-powerpc64-smp meta-package, which will ensure that upgrades work correctly, and that supporting packages are also installed. -Package: linux-image-extra-4.4.0-126-powerpc64-smp +Package: linux-image-extra-4.4.0-127-powerpc64-smp Build-Profiles: Architecture: powerpc Section: kernel Priority: optional -Depends: ${misc:Depends}, ${shlibs:Depends}, linux-image-4.4.0-126-powerpc64-smp, crda | wireless-crda +Depends: ${misc:Depends}, ${shlibs:Depends}, linux-image-4.4.0-127-powerpc64-smp, crda | wireless-crda Description: Linux kernel extra modules for version 4.4.0 on 64-bit PowerPC SMP This package contains the Linux kernel extra modules for version 4.4.0 on 64-bit PowerPC SMP. @@ -897,21 +897,21 @@ the linux-powerpc64-smp meta-package, which will ensure that upgrades work correctly, and that supporting packages are also installed. -Package: linux-headers-4.4.0-126-powerpc64-smp +Package: linux-headers-4.4.0-127-powerpc64-smp Build-Profiles: Architecture: powerpc Section: devel Priority: optional -Depends: ${misc:Depends}, linux-headers-4.4.0-126, ${shlibs:Depends} +Depends: ${misc:Depends}, linux-headers-4.4.0-127, ${shlibs:Depends} Provides: linux-headers, linux-headers-3.0 Description: Linux kernel headers for version 4.4.0 on 64-bit PowerPC SMP This package provides kernel header files for version 4.4.0 on 64-bit PowerPC SMP. . This is for sites that want the latest kernel headers. Please read - /usr/share/doc/linux-headers-4.4.0-126/debian.README.gz for details. + /usr/share/doc/linux-headers-4.4.0-127/debian.README.gz for details. -Package: linux-image-4.4.0-126-powerpc64-smp-dbgsym +Package: linux-image-4.4.0-127-powerpc64-smp-dbgsym Build-Profiles: Architecture: powerpc Section: devel @@ -928,27 +928,27 @@ is uncompressed, and unstripped. This package also includes the unstripped modules. -Package: linux-tools-4.4.0-126-powerpc64-smp +Package: linux-tools-4.4.0-127-powerpc64-smp Build-Profiles: Architecture: powerpc Section: devel Priority: optional -Depends: ${misc:Depends}, linux-tools-4.4.0-126 -Description: Linux kernel version specific tools for version 4.4.0-126 +Depends: ${misc:Depends}, linux-tools-4.4.0-127 +Description: Linux kernel version specific tools for version 4.4.0-127 This package provides the architecture dependant parts for kernel version locked tools (such as perf and x86_energy_perf_policy) for - version 4.4.0-126 on + version 4.4.0-127 on 64 bit x86. -Package: linux-cloud-tools-4.4.0-126-powerpc64-smp +Package: linux-cloud-tools-4.4.0-127-powerpc64-smp Build-Profiles: Architecture: powerpc Section: devel Priority: optional -Depends: ${misc:Depends}, linux-cloud-tools-4.4.0-126 -Description: Linux kernel version specific cloud tools for version 4.4.0-126 +Depends: ${misc:Depends}, linux-cloud-tools-4.4.0-127 +Description: Linux kernel version specific cloud tools for version 4.4.0-127 This package provides the architecture dependant parts for kernel - version locked tools for cloud for version 4.4.0-126 on + version locked tools for cloud for version 4.4.0-127 on 64 bit x86. Package: linux-udebs-powerpc64-smp