From: Greg Kroah-Hartman Date: Thu, 22 Feb 2018 14:41:16 +0000 (+0100) Subject: Linux 4.15.5 X-Git-Tag: v4.15.5^0 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=cd8024673523c6861556d60a8cfc468085ff763d;p=thirdparty%2Fkernel%2Fstable-queue.git Linux 4.15.5 --- diff --git a/queue-4.9/mmc-sdhci-of-esdhc-fix-emmc-couldn-t-work-after-kexec.patch b/queue-4.9/mmc-sdhci-of-esdhc-fix-emmc-couldn-t-work-after-kexec.patch deleted file mode 100644 index e7ef7bf70a7..00000000000 --- a/queue-4.9/mmc-sdhci-of-esdhc-fix-emmc-couldn-t-work-after-kexec.patch +++ /dev/null @@ -1,36 +0,0 @@ -From 97618aca1440b5addc5c3d78659d3e176be23b80 Mon Sep 17 00:00:00 2001 -From: "yinbo.zhu" -Date: Wed, 8 Nov 2017 17:09:50 +0800 -Subject: mmc: sdhci-of-esdhc: fix eMMC couldn't work after kexec - -From: yinbo.zhu - -commit 97618aca1440b5addc5c3d78659d3e176be23b80 upstream. - -The bit eSDHC_TBCTL[TB_EN] couldn't be reset by eSDHC_SYSCTL[RSTA] which is -used to reset for all. The driver should make sure it's cleared before card -initialization, otherwise the initialization would fail. - -Signed-off-by: yinbo.zhu -Acked-by: Adrian Hunter -Signed-off-by: Ulf Hansson -Cc: Rasmus Villemoes -Signed-off-by: Greg Kroah-Hartman - ---- - drivers/mmc/host/sdhci-of-esdhc.c | 4 ++++ - 1 file changed, 4 insertions(+) - ---- a/drivers/mmc/host/sdhci-of-esdhc.c -+++ b/drivers/mmc/host/sdhci-of-esdhc.c -@@ -584,6 +584,10 @@ static void esdhc_init(struct platform_d - pltfm_host = sdhci_priv(host); - esdhc = sdhci_pltfm_priv(pltfm_host); - -+ val = sdhci_readl(host, ESDHC_TBCTL); -+ val &= ~ESDHC_TB_EN; -+ sdhci_writel(host, val, ESDHC_TBCTL); -+ - host_ver = sdhci_readw(host, SDHCI_HOST_VERSION); - esdhc->vendor_ver = (host_ver & SDHCI_VENDOR_VER_MASK) >> - SDHCI_VENDOR_VER_SHIFT; diff --git a/queue-4.9/mmc-sdhci-of-esdhc-fix-the-mmc-error-after-sleep-on-ls1046ardb.patch b/queue-4.9/mmc-sdhci-of-esdhc-fix-the-mmc-error-after-sleep-on-ls1046ardb.patch deleted file mode 100644 index 0e22f459b67..00000000000 --- a/queue-4.9/mmc-sdhci-of-esdhc-fix-the-mmc-error-after-sleep-on-ls1046ardb.patch +++ /dev/null @@ -1,57 +0,0 @@ -From f2bc600008bd6f7f5d0b6b56238d14f95cd454d2 Mon Sep 17 00:00:00 2001 -From: "yinbo.zhu" -Date: Fri, 1 Dec 2017 15:09:34 +0800 -Subject: mmc: sdhci-of-esdhc: fix the mmc error after sleep on ls1046ardb - -From: yinbo.zhu - -commit f2bc600008bd6f7f5d0b6b56238d14f95cd454d2 upstream. - -When system wakes up from sleep on ls1046ardb, the SD operation fails -with mmc error messages since ESDHC_TB_EN bit couldn't be cleaned by -eSDHC_SYSCTL[RSTA]. It's proper to clean this bit in esdhc_reset() -rather than in probe. - -Signed-off-by: yinbo.zhu -Acked-by: Yangbo Lu -Acked-by: Adrian Hunter -Signed-off-by: Ulf Hansson -Cc: Rasmus Villemoes -Signed-off-by: Greg Kroah-Hartman - ---- - drivers/mmc/host/sdhci-of-esdhc.c | 12 ++++++++---- - 1 file changed, 8 insertions(+), 4 deletions(-) - ---- a/drivers/mmc/host/sdhci-of-esdhc.c -+++ b/drivers/mmc/host/sdhci-of-esdhc.c -@@ -489,10 +489,18 @@ static void esdhc_pltfm_set_bus_width(st - - static void esdhc_reset(struct sdhci_host *host, u8 mask) - { -+ u32 val; -+ - sdhci_reset(host, mask); - - sdhci_writel(host, host->ier, SDHCI_INT_ENABLE); - sdhci_writel(host, host->ier, SDHCI_SIGNAL_ENABLE); -+ -+ if (mask & SDHCI_RESET_ALL) { -+ val = sdhci_readl(host, ESDHC_TBCTL); -+ val &= ~ESDHC_TB_EN; -+ sdhci_writel(host, val, ESDHC_TBCTL); -+ } - } - - #ifdef CONFIG_PM_SLEEP -@@ -584,10 +592,6 @@ static void esdhc_init(struct platform_d - pltfm_host = sdhci_priv(host); - esdhc = sdhci_pltfm_priv(pltfm_host); - -- val = sdhci_readl(host, ESDHC_TBCTL); -- val &= ~ESDHC_TB_EN; -- sdhci_writel(host, val, ESDHC_TBCTL); -- - host_ver = sdhci_readw(host, SDHCI_HOST_VERSION); - esdhc->vendor_ver = (host_ver & SDHCI_VENDOR_VER_MASK) >> - SDHCI_VENDOR_VER_SHIFT; diff --git a/queue-4.9/series b/queue-4.9/series index 31371174a2d..c89ced206b2 100644 --- a/queue-4.9/series +++ b/queue-4.9/series @@ -73,5 +73,3 @@ arm-dts-s5pv210-add-interrupt-parent-for-ohci.patch arm-dts-mt2701-add-reset-cells.patch arm-dts-delete-bogus-reference-to-the-charlcd.patch media-r820t-fix-r820t_write_reg-for-kasan.patch -mmc-sdhci-of-esdhc-fix-emmc-couldn-t-work-after-kexec.patch -mmc-sdhci-of-esdhc-fix-the-mmc-error-after-sleep-on-ls1046ardb.patch diff --git a/queue-4.15/9p-trans_virtio-discard-zero-length-reply.patch b/releases/4.15.5/9p-trans_virtio-discard-zero-length-reply.patch similarity index 100% rename from queue-4.15/9p-trans_virtio-discard-zero-length-reply.patch rename to releases/4.15.5/9p-trans_virtio-discard-zero-length-reply.patch diff --git a/queue-4.15/alsa-hda-fix-headset-mic-detection-problem-for-two-dell-machines.patch b/releases/4.15.5/alsa-hda-fix-headset-mic-detection-problem-for-two-dell-machines.patch similarity index 100% rename from queue-4.15/alsa-hda-fix-headset-mic-detection-problem-for-two-dell-machines.patch rename to releases/4.15.5/alsa-hda-fix-headset-mic-detection-problem-for-two-dell-machines.patch diff --git a/queue-4.15/alsa-hda-realtek-add-headset-mode-support-for-dell-laptop.patch b/releases/4.15.5/alsa-hda-realtek-add-headset-mode-support-for-dell-laptop.patch similarity index 100% rename from queue-4.15/alsa-hda-realtek-add-headset-mode-support-for-dell-laptop.patch rename to releases/4.15.5/alsa-hda-realtek-add-headset-mode-support-for-dell-laptop.patch diff --git a/queue-4.15/alsa-hda-realtek-enable-thinkpad-dock-device-for-alc298-platform.patch b/releases/4.15.5/alsa-hda-realtek-enable-thinkpad-dock-device-for-alc298-platform.patch similarity index 100% rename from queue-4.15/alsa-hda-realtek-enable-thinkpad-dock-device-for-alc298-platform.patch rename to releases/4.15.5/alsa-hda-realtek-enable-thinkpad-dock-device-for-alc298-platform.patch diff --git a/queue-4.15/alsa-hda-realtek-pci-quirk-for-fujitsu-u7x7.patch b/releases/4.15.5/alsa-hda-realtek-pci-quirk-for-fujitsu-u7x7.patch similarity index 100% rename from queue-4.15/alsa-hda-realtek-pci-quirk-for-fujitsu-u7x7.patch rename to releases/4.15.5/alsa-hda-realtek-pci-quirk-for-fujitsu-u7x7.patch diff --git a/queue-4.15/alsa-seq-fix-racy-pool-initializations.patch b/releases/4.15.5/alsa-seq-fix-racy-pool-initializations.patch similarity index 100% rename from queue-4.15/alsa-seq-fix-racy-pool-initializations.patch rename to releases/4.15.5/alsa-seq-fix-racy-pool-initializations.patch diff --git a/queue-4.15/alsa-usb-add-more-device-quirks-for-usb-dsd-devices.patch b/releases/4.15.5/alsa-usb-add-more-device-quirks-for-usb-dsd-devices.patch similarity index 100% rename from queue-4.15/alsa-usb-add-more-device-quirks-for-usb-dsd-devices.patch rename to releases/4.15.5/alsa-usb-add-more-device-quirks-for-usb-dsd-devices.patch diff --git a/queue-4.15/alsa-usb-audio-add-implicit-fb-quirk-for-behringer-ufx1204.patch b/releases/4.15.5/alsa-usb-audio-add-implicit-fb-quirk-for-behringer-ufx1204.patch similarity index 100% rename from queue-4.15/alsa-usb-audio-add-implicit-fb-quirk-for-behringer-ufx1204.patch rename to releases/4.15.5/alsa-usb-audio-add-implicit-fb-quirk-for-behringer-ufx1204.patch diff --git a/queue-4.15/alsa-usb-audio-fix-uac2-get_ctl-request-with-a-range-attribute.patch b/releases/4.15.5/alsa-usb-audio-fix-uac2-get_ctl-request-with-a-range-attribute.patch similarity index 100% rename from queue-4.15/alsa-usb-audio-fix-uac2-get_ctl-request-with-a-range-attribute.patch rename to releases/4.15.5/alsa-usb-audio-fix-uac2-get_ctl-request-with-a-range-attribute.patch diff --git a/queue-4.15/arm-dts-delete-bogus-reference-to-the-charlcd.patch b/releases/4.15.5/arm-dts-delete-bogus-reference-to-the-charlcd.patch similarity index 100% rename from queue-4.15/arm-dts-delete-bogus-reference-to-the-charlcd.patch rename to releases/4.15.5/arm-dts-delete-bogus-reference-to-the-charlcd.patch diff --git a/queue-4.15/arm-dts-exynos-fix-rtc-interrupt-for-exynos5410.patch b/releases/4.15.5/arm-dts-exynos-fix-rtc-interrupt-for-exynos5410.patch similarity index 100% rename from queue-4.15/arm-dts-exynos-fix-rtc-interrupt-for-exynos5410.patch rename to releases/4.15.5/arm-dts-exynos-fix-rtc-interrupt-for-exynos5410.patch diff --git a/queue-4.15/arm-dts-mt2701-add-reset-cells.patch b/releases/4.15.5/arm-dts-mt2701-add-reset-cells.patch similarity index 100% rename from queue-4.15/arm-dts-mt2701-add-reset-cells.patch rename to releases/4.15.5/arm-dts-mt2701-add-reset-cells.patch diff --git a/queue-4.15/arm-dts-mt7623-fix-card-detection-issue-on-bananapi-r2.patch b/releases/4.15.5/arm-dts-mt7623-fix-card-detection-issue-on-bananapi-r2.patch similarity index 100% rename from queue-4.15/arm-dts-mt7623-fix-card-detection-issue-on-bananapi-r2.patch rename to releases/4.15.5/arm-dts-mt7623-fix-card-detection-issue-on-bananapi-r2.patch diff --git a/queue-4.15/arm-dts-mt7623-update-ethsys-binding.patch b/releases/4.15.5/arm-dts-mt7623-update-ethsys-binding.patch similarity index 100% rename from queue-4.15/arm-dts-mt7623-update-ethsys-binding.patch rename to releases/4.15.5/arm-dts-mt7623-update-ethsys-binding.patch diff --git a/queue-4.15/arm-dts-nomadik-add-interrupt-parent-for-clcd.patch b/releases/4.15.5/arm-dts-nomadik-add-interrupt-parent-for-clcd.patch similarity index 100% rename from queue-4.15/arm-dts-nomadik-add-interrupt-parent-for-clcd.patch rename to releases/4.15.5/arm-dts-nomadik-add-interrupt-parent-for-clcd.patch diff --git a/queue-4.15/arm-dts-s5pv210-add-interrupt-parent-for-ohci.patch b/releases/4.15.5/arm-dts-s5pv210-add-interrupt-parent-for-ohci.patch similarity index 100% rename from queue-4.15/arm-dts-s5pv210-add-interrupt-parent-for-ohci.patch rename to releases/4.15.5/arm-dts-s5pv210-add-interrupt-parent-for-ohci.patch diff --git a/queue-4.15/arm-dts-sti-add-gpio-polarity-for-hdmi-hpd-gpio-property.patch b/releases/4.15.5/arm-dts-sti-add-gpio-polarity-for-hdmi-hpd-gpio-property.patch similarity index 100% rename from queue-4.15/arm-dts-sti-add-gpio-polarity-for-hdmi-hpd-gpio-property.patch rename to releases/4.15.5/arm-dts-sti-add-gpio-polarity-for-hdmi-hpd-gpio-property.patch diff --git a/queue-4.15/arm-lpc3250-fix-uda1380-gpio-numbers.patch b/releases/4.15.5/arm-lpc3250-fix-uda1380-gpio-numbers.patch similarity index 100% rename from queue-4.15/arm-lpc3250-fix-uda1380-gpio-numbers.patch rename to releases/4.15.5/arm-lpc3250-fix-uda1380-gpio-numbers.patch diff --git a/queue-4.15/arm-pxa-tosa-bt-add-module_license-tag.patch b/releases/4.15.5/arm-pxa-tosa-bt-add-module_license-tag.patch similarity index 100% rename from queue-4.15/arm-pxa-tosa-bt-add-module_license-tag.patch rename to releases/4.15.5/arm-pxa-tosa-bt-add-module_license-tag.patch diff --git a/queue-4.15/arm-spear13xx-fix-dmas-cells.patch b/releases/4.15.5/arm-spear13xx-fix-dmas-cells.patch similarity index 100% rename from queue-4.15/arm-spear13xx-fix-dmas-cells.patch rename to releases/4.15.5/arm-spear13xx-fix-dmas-cells.patch diff --git a/queue-4.15/arm-spear13xx-fix-spics-gpio-controller-s-warning.patch b/releases/4.15.5/arm-spear13xx-fix-spics-gpio-controller-s-warning.patch similarity index 100% rename from queue-4.15/arm-spear13xx-fix-spics-gpio-controller-s-warning.patch rename to releases/4.15.5/arm-spear13xx-fix-spics-gpio-controller-s-warning.patch diff --git a/queue-4.15/arm-spear600-add-missing-interrupt-parent-of-rtc.patch b/releases/4.15.5/arm-spear600-add-missing-interrupt-parent-of-rtc.patch similarity index 100% rename from queue-4.15/arm-spear600-add-missing-interrupt-parent-of-rtc.patch rename to releases/4.15.5/arm-spear600-add-missing-interrupt-parent-of-rtc.patch diff --git a/queue-4.15/arm64-add-missing-falkor-part-number-for-branch-predictor-hardening.patch b/releases/4.15.5/arm64-add-missing-falkor-part-number-for-branch-predictor-hardening.patch similarity index 100% rename from queue-4.15/arm64-add-missing-falkor-part-number-for-branch-predictor-hardening.patch rename to releases/4.15.5/arm64-add-missing-falkor-part-number-for-branch-predictor-hardening.patch diff --git a/queue-4.15/arm64-dts-msm8916-add-missing-phy-cells.patch b/releases/4.15.5/arm64-dts-msm8916-add-missing-phy-cells.patch similarity index 100% rename from queue-4.15/arm64-dts-msm8916-add-missing-phy-cells.patch rename to releases/4.15.5/arm64-dts-msm8916-add-missing-phy-cells.patch diff --git a/queue-4.15/arm64-dts-msm8916-correct-ipc-references-for-smsm.patch b/releases/4.15.5/arm64-dts-msm8916-correct-ipc-references-for-smsm.patch similarity index 100% rename from queue-4.15/arm64-dts-msm8916-correct-ipc-references-for-smsm.patch rename to releases/4.15.5/arm64-dts-msm8916-correct-ipc-references-for-smsm.patch diff --git a/queue-4.15/arm64-proc-set-pte_ng-for-table-entries-to-avoid-traversing-them-twice.patch b/releases/4.15.5/arm64-proc-set-pte_ng-for-table-entries-to-avoid-traversing-them-twice.patch similarity index 100% rename from queue-4.15/arm64-proc-set-pte_ng-for-table-entries-to-avoid-traversing-them-twice.patch rename to releases/4.15.5/arm64-proc-set-pte_ng-for-table-entries-to-avoid-traversing-them-twice.patch diff --git a/queue-4.15/blk-wbt-account-flush-requests-correctly.patch b/releases/4.15.5/blk-wbt-account-flush-requests-correctly.patch similarity index 100% rename from queue-4.15/blk-wbt-account-flush-requests-correctly.patch rename to releases/4.15.5/blk-wbt-account-flush-requests-correctly.patch diff --git a/queue-4.15/btrfs-fix-btrfs_evict_inode-to-handle-abnormal-inodes-correctly.patch b/releases/4.15.5/btrfs-fix-btrfs_evict_inode-to-handle-abnormal-inodes-correctly.patch similarity index 100% rename from queue-4.15/btrfs-fix-btrfs_evict_inode-to-handle-abnormal-inodes-correctly.patch rename to releases/4.15.5/btrfs-fix-btrfs_evict_inode-to-handle-abnormal-inodes-correctly.patch diff --git a/queue-4.15/btrfs-fix-crash-due-to-not-cleaning-up-tree-log-block-s-dirty-bits.patch b/releases/4.15.5/btrfs-fix-crash-due-to-not-cleaning-up-tree-log-block-s-dirty-bits.patch similarity index 100% rename from queue-4.15/btrfs-fix-crash-due-to-not-cleaning-up-tree-log-block-s-dirty-bits.patch rename to releases/4.15.5/btrfs-fix-crash-due-to-not-cleaning-up-tree-log-block-s-dirty-bits.patch diff --git a/queue-4.15/btrfs-fix-deadlock-in-run_delalloc_nocow.patch b/releases/4.15.5/btrfs-fix-deadlock-in-run_delalloc_nocow.patch similarity index 100% rename from queue-4.15/btrfs-fix-deadlock-in-run_delalloc_nocow.patch rename to releases/4.15.5/btrfs-fix-deadlock-in-run_delalloc_nocow.patch diff --git a/queue-4.15/btrfs-fix-extent-state-leak-from-tree-log.patch b/releases/4.15.5/btrfs-fix-extent-state-leak-from-tree-log.patch similarity index 100% rename from queue-4.15/btrfs-fix-extent-state-leak-from-tree-log.patch rename to releases/4.15.5/btrfs-fix-extent-state-leak-from-tree-log.patch diff --git a/queue-4.15/btrfs-fix-unexpected-eexist-when-creating-new-inode.patch b/releases/4.15.5/btrfs-fix-unexpected-eexist-when-creating-new-inode.patch similarity index 100% rename from queue-4.15/btrfs-fix-unexpected-eexist-when-creating-new-inode.patch rename to releases/4.15.5/btrfs-fix-unexpected-eexist-when-creating-new-inode.patch diff --git a/queue-4.15/btrfs-fix-use-after-free-on-root-orphan_block_rsv.patch b/releases/4.15.5/btrfs-fix-use-after-free-on-root-orphan_block_rsv.patch similarity index 100% rename from queue-4.15/btrfs-fix-use-after-free-on-root-orphan_block_rsv.patch rename to releases/4.15.5/btrfs-fix-use-after-free-on-root-orphan_block_rsv.patch diff --git a/queue-4.15/compiler-gcc.h-__nostackprotector-needs-gcc-4.4-and-up.patch b/releases/4.15.5/compiler-gcc.h-__nostackprotector-needs-gcc-4.4-and-up.patch similarity index 100% rename from queue-4.15/compiler-gcc.h-__nostackprotector-needs-gcc-4.4-and-up.patch rename to releases/4.15.5/compiler-gcc.h-__nostackprotector-needs-gcc-4.4-and-up.patch diff --git a/queue-4.15/compiler-gcc.h-introduce-__optimize-function-attribute.patch b/releases/4.15.5/compiler-gcc.h-introduce-__optimize-function-attribute.patch similarity index 100% rename from queue-4.15/compiler-gcc.h-introduce-__optimize-function-attribute.patch rename to releases/4.15.5/compiler-gcc.h-introduce-__optimize-function-attribute.patch diff --git a/queue-4.15/console-dummy-leave-.con_font_get-set-to-null.patch b/releases/4.15.5/console-dummy-leave-.con_font_get-set-to-null.patch similarity index 100% rename from queue-4.15/console-dummy-leave-.con_font_get-set-to-null.patch rename to releases/4.15.5/console-dummy-leave-.con_font_get-set-to-null.patch diff --git a/queue-4.15/cpufreq-powernv-dont-assume-distinct-pstate-values-for-nominal-and-pmin.patch b/releases/4.15.5/cpufreq-powernv-dont-assume-distinct-pstate-values-for-nominal-and-pmin.patch similarity index 100% rename from queue-4.15/cpufreq-powernv-dont-assume-distinct-pstate-values-for-nominal-and-pmin.patch rename to releases/4.15.5/cpufreq-powernv-dont-assume-distinct-pstate-values-for-nominal-and-pmin.patch diff --git a/queue-4.15/crypto-sun4i_ss_prng-convert-lock-to-_bh-in-sun4i_ss_prng_generate.patch b/releases/4.15.5/crypto-sun4i_ss_prng-convert-lock-to-_bh-in-sun4i_ss_prng_generate.patch similarity index 100% rename from queue-4.15/crypto-sun4i_ss_prng-convert-lock-to-_bh-in-sun4i_ss_prng_generate.patch rename to releases/4.15.5/crypto-sun4i_ss_prng-convert-lock-to-_bh-in-sun4i_ss_prng_generate.patch diff --git a/queue-4.15/crypto-sun4i_ss_prng-fix-return-value-of-sun4i_ss_prng_generate.patch b/releases/4.15.5/crypto-sun4i_ss_prng-fix-return-value-of-sun4i_ss_prng_generate.patch similarity index 100% rename from queue-4.15/crypto-sun4i_ss_prng-fix-return-value-of-sun4i_ss_prng_generate.patch rename to releases/4.15.5/crypto-sun4i_ss_prng-fix-return-value-of-sun4i_ss_prng_generate.patch diff --git a/queue-4.15/dm-correctly-handle-chained-bios-in-dec_pending.patch b/releases/4.15.5/dm-correctly-handle-chained-bios-in-dec_pending.patch similarity index 100% rename from queue-4.15/dm-correctly-handle-chained-bios-in-dec_pending.patch rename to releases/4.15.5/dm-correctly-handle-chained-bios-in-dec_pending.patch diff --git a/queue-4.15/dma-buf-fix-reservation_object_wait_timeout_rcu-once-more-v2.patch b/releases/4.15.5/dma-buf-fix-reservation_object_wait_timeout_rcu-once-more-v2.patch similarity index 100% rename from queue-4.15/dma-buf-fix-reservation_object_wait_timeout_rcu-once-more-v2.patch rename to releases/4.15.5/dma-buf-fix-reservation_object_wait_timeout_rcu-once-more-v2.patch diff --git a/queue-4.15/drm-amd-powerplay-fix-smu_table_entry.handle-type.patch b/releases/4.15.5/drm-amd-powerplay-fix-smu_table_entry.handle-type.patch similarity index 100% rename from queue-4.15/drm-amd-powerplay-fix-smu_table_entry.handle-type.patch rename to releases/4.15.5/drm-amd-powerplay-fix-smu_table_entry.handle-type.patch diff --git a/queue-4.15/drm-ast-load-lut-in-crtc_commit.patch b/releases/4.15.5/drm-ast-load-lut-in-crtc_commit.patch similarity index 100% rename from queue-4.15/drm-ast-load-lut-in-crtc_commit.patch rename to releases/4.15.5/drm-ast-load-lut-in-crtc_commit.patch diff --git a/queue-4.15/drm-check-for-lessee-in-drop_master-ioctl.patch b/releases/4.15.5/drm-check-for-lessee-in-drop_master-ioctl.patch similarity index 100% rename from queue-4.15/drm-check-for-lessee-in-drop_master-ioctl.patch rename to releases/4.15.5/drm-check-for-lessee-in-drop_master-ioctl.patch diff --git a/queue-4.15/drm-qxl-reapply-cursor-after-resetting-primary.patch b/releases/4.15.5/drm-qxl-reapply-cursor-after-resetting-primary.patch similarity index 100% rename from queue-4.15/drm-qxl-reapply-cursor-after-resetting-primary.patch rename to releases/4.15.5/drm-qxl-reapply-cursor-after-resetting-primary.patch diff --git a/queue-4.15/drm-qxl-unref-cursor-bo-when-finished-with-it.patch b/releases/4.15.5/drm-qxl-unref-cursor-bo-when-finished-with-it.patch similarity index 100% rename from queue-4.15/drm-qxl-unref-cursor-bo-when-finished-with-it.patch rename to releases/4.15.5/drm-qxl-unref-cursor-bo-when-finished-with-it.patch diff --git a/queue-4.15/drm-radeon-add-dpm-quirk-for-jet-pro-v2.patch b/releases/4.15.5/drm-radeon-add-dpm-quirk-for-jet-pro-v2.patch similarity index 100% rename from queue-4.15/drm-radeon-add-dpm-quirk-for-jet-pro-v2.patch rename to releases/4.15.5/drm-radeon-add-dpm-quirk-for-jet-pro-v2.patch diff --git a/queue-4.15/drm-radeon-adjust-tested-variable.patch b/releases/4.15.5/drm-radeon-adjust-tested-variable.patch similarity index 100% rename from queue-4.15/drm-radeon-adjust-tested-variable.patch rename to releases/4.15.5/drm-radeon-adjust-tested-variable.patch diff --git a/queue-4.15/drm-ttm-don-t-add-swapped-bos-to-swap-lru-list.patch b/releases/4.15.5/drm-ttm-don-t-add-swapped-bos-to-swap-lru-list.patch similarity index 100% rename from queue-4.15/drm-ttm-don-t-add-swapped-bos-to-swap-lru-list.patch rename to releases/4.15.5/drm-ttm-don-t-add-swapped-bos-to-swap-lru-list.patch diff --git a/queue-4.15/drm-ttm-fix-buf-pointer-update-in-ttm_bo_vm_access_kmap-v2.patch b/releases/4.15.5/drm-ttm-fix-buf-pointer-update-in-ttm_bo_vm_access_kmap-v2.patch similarity index 100% rename from queue-4.15/drm-ttm-fix-buf-pointer-update-in-ttm_bo_vm_access_kmap-v2.patch rename to releases/4.15.5/drm-ttm-fix-buf-pointer-update-in-ttm_bo_vm_access_kmap-v2.patch diff --git a/queue-4.15/ext4-correct-documentation-for-grpid-mount-option.patch b/releases/4.15.5/ext4-correct-documentation-for-grpid-mount-option.patch similarity index 100% rename from queue-4.15/ext4-correct-documentation-for-grpid-mount-option.patch rename to releases/4.15.5/ext4-correct-documentation-for-grpid-mount-option.patch diff --git a/queue-4.15/ext4-fix-a-race-in-the-ext4-shutdown-path.patch b/releases/4.15.5/ext4-fix-a-race-in-the-ext4-shutdown-path.patch similarity index 100% rename from queue-4.15/ext4-fix-a-race-in-the-ext4-shutdown-path.patch rename to releases/4.15.5/ext4-fix-a-race-in-the-ext4-shutdown-path.patch diff --git a/queue-4.15/ext4-save-error-to-disk-in-__ext4_grp_locked_error.patch b/releases/4.15.5/ext4-save-error-to-disk-in-__ext4_grp_locked_error.patch similarity index 100% rename from queue-4.15/ext4-save-error-to-disk-in-__ext4_grp_locked_error.patch rename to releases/4.15.5/ext4-save-error-to-disk-in-__ext4_grp_locked_error.patch diff --git a/queue-4.15/gfs2-fixes-to-implement-iomap-for-block_map.patch b/releases/4.15.5/gfs2-fixes-to-implement-iomap-for-block_map.patch similarity index 100% rename from queue-4.15/gfs2-fixes-to-implement-iomap-for-block_map.patch rename to releases/4.15.5/gfs2-fixes-to-implement-iomap-for-block_map.patch diff --git a/queue-4.15/ib-core-avoid-a-potential-oops-for-an-unused-optional-parameter.patch b/releases/4.15.5/ib-core-avoid-a-potential-oops-for-an-unused-optional-parameter.patch similarity index 100% rename from queue-4.15/ib-core-avoid-a-potential-oops-for-an-unused-optional-parameter.patch rename to releases/4.15.5/ib-core-avoid-a-potential-oops-for-an-unused-optional-parameter.patch diff --git a/queue-4.15/ib-core-fix-ib_wc-structure-size-to-remain-in-64-bytes-boundary.patch b/releases/4.15.5/ib-core-fix-ib_wc-structure-size-to-remain-in-64-bytes-boundary.patch similarity index 100% rename from queue-4.15/ib-core-fix-ib_wc-structure-size-to-remain-in-64-bytes-boundary.patch rename to releases/4.15.5/ib-core-fix-ib_wc-structure-size-to-remain-in-64-bytes-boundary.patch diff --git a/queue-4.15/ib-core-fix-two-kernel-warnings-triggered-by-rxe-registration.patch b/releases/4.15.5/ib-core-fix-two-kernel-warnings-triggered-by-rxe-registration.patch similarity index 100% rename from queue-4.15/ib-core-fix-two-kernel-warnings-triggered-by-rxe-registration.patch rename to releases/4.15.5/ib-core-fix-two-kernel-warnings-triggered-by-rxe-registration.patch diff --git a/queue-4.15/ib-mlx4-fix-incorrectly-releasing-steerable-ud-qps-when-have-only-eth-ports.patch b/releases/4.15.5/ib-mlx4-fix-incorrectly-releasing-steerable-ud-qps-when-have-only-eth-ports.patch similarity index 100% rename from queue-4.15/ib-mlx4-fix-incorrectly-releasing-steerable-ud-qps-when-have-only-eth-ports.patch rename to releases/4.15.5/ib-mlx4-fix-incorrectly-releasing-steerable-ud-qps-when-have-only-eth-ports.patch diff --git a/queue-4.15/ib-qib-fix-comparison-error-with-qperf-compare-swap-test.patch b/releases/4.15.5/ib-qib-fix-comparison-error-with-qperf-compare-swap-test.patch similarity index 100% rename from queue-4.15/ib-qib-fix-comparison-error-with-qperf-compare-swap-test.patch rename to releases/4.15.5/ib-qib-fix-comparison-error-with-qperf-compare-swap-test.patch diff --git a/queue-4.15/ib-umad-fix-use-of-unprotected-device-pointer.patch b/releases/4.15.5/ib-umad-fix-use-of-unprotected-device-pointer.patch similarity index 100% rename from queue-4.15/ib-umad-fix-use-of-unprotected-device-pointer.patch rename to releases/4.15.5/ib-umad-fix-use-of-unprotected-device-pointer.patch diff --git a/queue-4.15/iscsi-target-make-sure-to-wake-up-sleeping-login-worker.patch b/releases/4.15.5/iscsi-target-make-sure-to-wake-up-sleeping-login-worker.patch similarity index 100% rename from queue-4.15/iscsi-target-make-sure-to-wake-up-sleeping-login-worker.patch rename to releases/4.15.5/iscsi-target-make-sure-to-wake-up-sleeping-login-worker.patch diff --git a/queue-4.15/jbd2-fix-sphinx-kernel-doc-build-warnings.patch b/releases/4.15.5/jbd2-fix-sphinx-kernel-doc-build-warnings.patch similarity index 100% rename from queue-4.15/jbd2-fix-sphinx-kernel-doc-build-warnings.patch rename to releases/4.15.5/jbd2-fix-sphinx-kernel-doc-build-warnings.patch diff --git a/queue-4.15/kselftest-fix-oom-in-memory-compaction-test.patch b/releases/4.15.5/kselftest-fix-oom-in-memory-compaction-test.patch similarity index 100% rename from queue-4.15/kselftest-fix-oom-in-memory-compaction-test.patch rename to releases/4.15.5/kselftest-fix-oom-in-memory-compaction-test.patch diff --git a/queue-4.15/kvm-nvmx-set-the-cpu_based_use_msr_bitmaps-if-we-have-a-valid-l02-msr-bitmap.patch b/releases/4.15.5/kvm-nvmx-set-the-cpu_based_use_msr_bitmaps-if-we-have-a-valid-l02-msr-bitmap.patch similarity index 100% rename from queue-4.15/kvm-nvmx-set-the-cpu_based_use_msr_bitmaps-if-we-have-a-valid-l02-msr-bitmap.patch rename to releases/4.15.5/kvm-nvmx-set-the-cpu_based_use_msr_bitmaps-if-we-have-a-valid-l02-msr-bitmap.patch diff --git a/queue-4.15/kvm-x86-reduce-retpoline-performance-impact-in-slot_handle_level_range-by-always-inlining-iterator-helper-methods.patch b/releases/4.15.5/kvm-x86-reduce-retpoline-performance-impact-in-slot_handle_level_range-by-always-inlining-iterator-helper-methods.patch similarity index 100% rename from queue-4.15/kvm-x86-reduce-retpoline-performance-impact-in-slot_handle_level_range-by-always-inlining-iterator-helper-methods.patch rename to releases/4.15.5/kvm-x86-reduce-retpoline-performance-impact-in-slot_handle_level_range-by-always-inlining-iterator-helper-methods.patch diff --git a/queue-4.15/mbcache-initialize-entry-e_referenced-in-mb_cache_entry_create.patch b/releases/4.15.5/mbcache-initialize-entry-e_referenced-in-mb_cache_entry_create.patch similarity index 100% rename from queue-4.15/mbcache-initialize-entry-e_referenced-in-mb_cache_entry_create.patch rename to releases/4.15.5/mbcache-initialize-entry-e_referenced-in-mb_cache_entry_create.patch diff --git a/queue-4.15/media-r820t-fix-r820t_write_reg-for-kasan.patch b/releases/4.15.5/media-r820t-fix-r820t_write_reg-for-kasan.patch similarity index 100% rename from queue-4.15/media-r820t-fix-r820t_write_reg-for-kasan.patch rename to releases/4.15.5/media-r820t-fix-r820t_write_reg-for-kasan.patch diff --git a/queue-4.15/mips-cps-fix-mips_isa_level_raw-fallout.patch b/releases/4.15.5/mips-cps-fix-mips_isa_level_raw-fallout.patch similarity index 100% rename from queue-4.15/mips-cps-fix-mips_isa_level_raw-fallout.patch rename to releases/4.15.5/mips-cps-fix-mips_isa_level_raw-fallout.patch diff --git a/queue-4.15/mips-fix-incorrect-mem-x-y-handling.patch b/releases/4.15.5/mips-fix-incorrect-mem-x-y-handling.patch similarity index 100% rename from queue-4.15/mips-fix-incorrect-mem-x-y-handling.patch rename to releases/4.15.5/mips-fix-incorrect-mem-x-y-handling.patch diff --git a/queue-4.15/mips-fix-typo-big_endian-to-cpu_big_endian.patch b/releases/4.15.5/mips-fix-typo-big_endian-to-cpu_big_endian.patch similarity index 100% rename from queue-4.15/mips-fix-typo-big_endian-to-cpu_big_endian.patch rename to releases/4.15.5/mips-fix-typo-big_endian-to-cpu_big_endian.patch diff --git a/queue-4.15/mlx5-fix-mlx5_get_vector_affinity-to-start-from-completion-vector-0.patch b/releases/4.15.5/mlx5-fix-mlx5_get_vector_affinity-to-start-from-completion-vector-0.patch similarity index 100% rename from queue-4.15/mlx5-fix-mlx5_get_vector_affinity-to-start-from-completion-vector-0.patch rename to releases/4.15.5/mlx5-fix-mlx5_get_vector_affinity-to-start-from-completion-vector-0.patch diff --git a/queue-4.15/mm-fix-memory-size-alignment-in-devm_memremap_pages_release.patch b/releases/4.15.5/mm-fix-memory-size-alignment-in-devm_memremap_pages_release.patch similarity index 100% rename from queue-4.15/mm-fix-memory-size-alignment-in-devm_memremap_pages_release.patch rename to releases/4.15.5/mm-fix-memory-size-alignment-in-devm_memremap_pages_release.patch diff --git a/queue-4.15/mm-hide-a-warning-for-compile_test.patch b/releases/4.15.5/mm-hide-a-warning-for-compile_test.patch similarity index 100% rename from queue-4.15/mm-hide-a-warning-for-compile_test.patch rename to releases/4.15.5/mm-hide-a-warning-for-compile_test.patch diff --git a/queue-4.15/mm-memory_hotplug-fix-memmap-initialization.patch b/releases/4.15.5/mm-memory_hotplug-fix-memmap-initialization.patch similarity index 100% rename from queue-4.15/mm-memory_hotplug-fix-memmap-initialization.patch rename to releases/4.15.5/mm-memory_hotplug-fix-memmap-initialization.patch diff --git a/queue-4.15/mmc-bcm2835-don-t-overwrite-max-frequency-unconditionally.patch b/releases/4.15.5/mmc-bcm2835-don-t-overwrite-max-frequency-unconditionally.patch similarity index 100% rename from queue-4.15/mmc-bcm2835-don-t-overwrite-max-frequency-unconditionally.patch rename to releases/4.15.5/mmc-bcm2835-don-t-overwrite-max-frequency-unconditionally.patch diff --git a/queue-4.15/mmc-sdhci-implement-an-sdhci-specific-bounce-buffer.patch b/releases/4.15.5/mmc-sdhci-implement-an-sdhci-specific-bounce-buffer.patch similarity index 100% rename from queue-4.15/mmc-sdhci-implement-an-sdhci-specific-bounce-buffer.patch rename to releases/4.15.5/mmc-sdhci-implement-an-sdhci-specific-bounce-buffer.patch diff --git a/queue-4.15/mmc-sdhci-of-esdhc-fix-emmc-couldn-t-work-after-kexec.patch b/releases/4.15.5/mmc-sdhci-of-esdhc-fix-emmc-couldn-t-work-after-kexec.patch similarity index 100% rename from queue-4.15/mmc-sdhci-of-esdhc-fix-emmc-couldn-t-work-after-kexec.patch rename to releases/4.15.5/mmc-sdhci-of-esdhc-fix-emmc-couldn-t-work-after-kexec.patch diff --git a/queue-4.15/mmc-sdhci-of-esdhc-fix-the-mmc-error-after-sleep-on-ls1046ardb.patch b/releases/4.15.5/mmc-sdhci-of-esdhc-fix-the-mmc-error-after-sleep-on-ls1046ardb.patch similarity index 100% rename from queue-4.15/mmc-sdhci-of-esdhc-fix-the-mmc-error-after-sleep-on-ls1046ardb.patch rename to releases/4.15.5/mmc-sdhci-of-esdhc-fix-the-mmc-error-after-sleep-on-ls1046ardb.patch diff --git a/queue-4.15/mpls-nospec-sanitize-array-index-in-mpls_label_ok.patch b/releases/4.15.5/mpls-nospec-sanitize-array-index-in-mpls_label_ok.patch similarity index 100% rename from queue-4.15/mpls-nospec-sanitize-array-index-in-mpls_label_ok.patch rename to releases/4.15.5/mpls-nospec-sanitize-array-index-in-mpls_label_ok.patch diff --git a/queue-4.15/mtd-nand-vf610-set-correct-ooblayout.patch b/releases/4.15.5/mtd-nand-vf610-set-correct-ooblayout.patch similarity index 100% rename from queue-4.15/mtd-nand-vf610-set-correct-ooblayout.patch rename to releases/4.15.5/mtd-nand-vf610-set-correct-ooblayout.patch diff --git a/queue-4.15/mvpp2-fix-multicast-address-filter.patch b/releases/4.15.5/mvpp2-fix-multicast-address-filter.patch similarity index 100% rename from queue-4.15/mvpp2-fix-multicast-address-filter.patch rename to releases/4.15.5/mvpp2-fix-multicast-address-filter.patch diff --git a/queue-4.15/mwifiex-resolve-reset-vs.-remove-shutdown-deadlocks.patch b/releases/4.15.5/mwifiex-resolve-reset-vs.-remove-shutdown-deadlocks.patch similarity index 100% rename from queue-4.15/mwifiex-resolve-reset-vs.-remove-shutdown-deadlocks.patch rename to releases/4.15.5/mwifiex-resolve-reset-vs.-remove-shutdown-deadlocks.patch diff --git a/queue-4.15/nospec-move-array_index_nospec-parameter-checking-into-separate-macro.patch b/releases/4.15.5/nospec-move-array_index_nospec-parameter-checking-into-separate-macro.patch similarity index 100% rename from queue-4.15/nospec-move-array_index_nospec-parameter-checking-into-separate-macro.patch rename to releases/4.15.5/nospec-move-array_index_nospec-parameter-checking-into-separate-macro.patch diff --git a/queue-4.15/objtool-fix-segfault-in-ignore_unreachable_insn.patch b/releases/4.15.5/objtool-fix-segfault-in-ignore_unreachable_insn.patch similarity index 100% rename from queue-4.15/objtool-fix-segfault-in-ignore_unreachable_insn.patch rename to releases/4.15.5/objtool-fix-segfault-in-ignore_unreachable_insn.patch diff --git a/queue-4.15/ocfs2-try-a-blocking-lock-before-return-aop_truncated_page.patch b/releases/4.15.5/ocfs2-try-a-blocking-lock-before-return-aop_truncated_page.patch similarity index 100% rename from queue-4.15/ocfs2-try-a-blocking-lock-before-return-aop_truncated_page.patch rename to releases/4.15.5/ocfs2-try-a-blocking-lock-before-return-aop_truncated_page.patch diff --git a/queue-4.15/pci-disable-msi-for-hisilicon-hip06-hip07-only-in-root-port-mode.patch b/releases/4.15.5/pci-disable-msi-for-hisilicon-hip06-hip07-only-in-root-port-mode.patch similarity index 100% rename from queue-4.15/pci-disable-msi-for-hisilicon-hip06-hip07-only-in-root-port-mode.patch rename to releases/4.15.5/pci-disable-msi-for-hisilicon-hip06-hip07-only-in-root-port-mode.patch diff --git a/queue-4.15/pci-iproc-fix-null-pointer-dereference-for-bcma.patch b/releases/4.15.5/pci-iproc-fix-null-pointer-dereference-for-bcma.patch similarity index 100% rename from queue-4.15/pci-iproc-fix-null-pointer-dereference-for-bcma.patch rename to releases/4.15.5/pci-iproc-fix-null-pointer-dereference-for-bcma.patch diff --git a/queue-4.15/pci-keystone-fix-interrupt-controller-node-lookup.patch b/releases/4.15.5/pci-keystone-fix-interrupt-controller-node-lookup.patch similarity index 100% rename from queue-4.15/pci-keystone-fix-interrupt-controller-node-lookup.patch rename to releases/4.15.5/pci-keystone-fix-interrupt-controller-node-lookup.patch diff --git a/queue-4.15/pci-pciehp-assume-nocompl-for-thunderbolt-ports.patch b/releases/4.15.5/pci-pciehp-assume-nocompl-for-thunderbolt-ports.patch similarity index 100% rename from queue-4.15/pci-pciehp-assume-nocompl-for-thunderbolt-ports.patch rename to releases/4.15.5/pci-pciehp-assume-nocompl-for-thunderbolt-ports.patch diff --git a/queue-4.15/platform-x86-wmi-fix-off-by-one-write-in-wmi_dev_probe.patch b/releases/4.15.5/platform-x86-wmi-fix-off-by-one-write-in-wmi_dev_probe.patch similarity index 100% rename from queue-4.15/platform-x86-wmi-fix-off-by-one-write-in-wmi_dev_probe.patch rename to releases/4.15.5/platform-x86-wmi-fix-off-by-one-write-in-wmi_dev_probe.patch diff --git a/queue-4.15/pm-cpuidle-fix-cpuidle_poll_state_init-prototype.patch b/releases/4.15.5/pm-cpuidle-fix-cpuidle_poll_state_init-prototype.patch similarity index 100% rename from queue-4.15/pm-cpuidle-fix-cpuidle_poll_state_init-prototype.patch rename to releases/4.15.5/pm-cpuidle-fix-cpuidle_poll_state_init-prototype.patch diff --git a/queue-4.15/pm-devfreq-propagate-error-from-devfreq_add_device.patch b/releases/4.15.5/pm-devfreq-propagate-error-from-devfreq_add_device.patch similarity index 100% rename from queue-4.15/pm-devfreq-propagate-error-from-devfreq_add_device.patch rename to releases/4.15.5/pm-devfreq-propagate-error-from-devfreq_add_device.patch diff --git a/queue-4.15/pm-runtime-update-links_count-also-if-config_srcu.patch b/releases/4.15.5/pm-runtime-update-links_count-also-if-config_srcu.patch similarity index 100% rename from queue-4.15/pm-runtime-update-links_count-also-if-config_srcu.patch rename to releases/4.15.5/pm-runtime-update-links_count-also-if-config_srcu.patch diff --git a/queue-4.15/powerpc-kernel-block-interrupts-when-updating-tidr.patch b/releases/4.15.5/powerpc-kernel-block-interrupts-when-updating-tidr.patch similarity index 100% rename from queue-4.15/powerpc-kernel-block-interrupts-when-updating-tidr.patch rename to releases/4.15.5/powerpc-kernel-block-interrupts-when-updating-tidr.patch diff --git a/queue-4.15/powerpc-mm-flush-radix-process-translations-when-setting-mmu-type.patch b/releases/4.15.5/powerpc-mm-flush-radix-process-translations-when-setting-mmu-type.patch similarity index 100% rename from queue-4.15/powerpc-mm-flush-radix-process-translations-when-setting-mmu-type.patch rename to releases/4.15.5/powerpc-mm-flush-radix-process-translations-when-setting-mmu-type.patch diff --git a/queue-4.15/powerpc-mm-radix-split-linear-mapping-on-hot-unplug.patch b/releases/4.15.5/powerpc-mm-radix-split-linear-mapping-on-hot-unplug.patch similarity index 100% rename from queue-4.15/powerpc-mm-radix-split-linear-mapping-on-hot-unplug.patch rename to releases/4.15.5/powerpc-mm-radix-split-linear-mapping-on-hot-unplug.patch diff --git a/queue-4.15/powerpc-numa-invalidate-numa_cpu_lookup_table-on-cpu-remove.patch b/releases/4.15.5/powerpc-numa-invalidate-numa_cpu_lookup_table-on-cpu-remove.patch similarity index 100% rename from queue-4.15/powerpc-numa-invalidate-numa_cpu_lookup_table-on-cpu-remove.patch rename to releases/4.15.5/powerpc-numa-invalidate-numa_cpu_lookup_table-on-cpu-remove.patch diff --git a/queue-4.15/powerpc-radix-remove-trace_tlbie-call-from-radix__flush_tlb_all.patch b/releases/4.15.5/powerpc-radix-remove-trace_tlbie-call-from-radix__flush_tlb_all.patch similarity index 100% rename from queue-4.15/powerpc-radix-remove-trace_tlbie-call-from-radix__flush_tlb_all.patch rename to releases/4.15.5/powerpc-radix-remove-trace_tlbie-call-from-radix__flush_tlb_all.patch diff --git a/queue-4.15/powerpc-vas-don-t-set-uses_vas-for-kernel-windows.patch b/releases/4.15.5/powerpc-vas-don-t-set-uses_vas-for-kernel-windows.patch similarity index 100% rename from queue-4.15/powerpc-vas-don-t-set-uses_vas-for-kernel-windows.patch rename to releases/4.15.5/powerpc-vas-don-t-set-uses_vas-for-kernel-windows.patch diff --git a/queue-4.15/powerpc-xive-use-hw-cpu-ids-when-configuring-the-cpu-queues.patch b/releases/4.15.5/powerpc-xive-use-hw-cpu-ids-when-configuring-the-cpu-queues.patch similarity index 100% rename from queue-4.15/powerpc-xive-use-hw-cpu-ids-when-configuring-the-cpu-queues.patch rename to releases/4.15.5/powerpc-xive-use-hw-cpu-ids-when-configuring-the-cpu-queues.patch diff --git a/queue-4.15/rbd-whitelist-rbd_feature_operations-feature-bit.patch b/releases/4.15.5/rbd-whitelist-rbd_feature_operations-feature-bit.patch similarity index 100% rename from queue-4.15/rbd-whitelist-rbd_feature_operations-feature-bit.patch rename to releases/4.15.5/rbd-whitelist-rbd_feature_operations-feature-bit.patch diff --git a/queue-4.15/rdma-rxe-fix-a-race-condition-in-rxe_requester.patch b/releases/4.15.5/rdma-rxe-fix-a-race-condition-in-rxe_requester.patch similarity index 100% rename from queue-4.15/rdma-rxe-fix-a-race-condition-in-rxe_requester.patch rename to releases/4.15.5/rdma-rxe-fix-a-race-condition-in-rxe_requester.patch diff --git a/queue-4.15/rdma-rxe-fix-a-race-condition-related-to-the-qp-error-state.patch b/releases/4.15.5/rdma-rxe-fix-a-race-condition-related-to-the-qp-error-state.patch similarity index 100% rename from queue-4.15/rdma-rxe-fix-a-race-condition-related-to-the-qp-error-state.patch rename to releases/4.15.5/rdma-rxe-fix-a-race-condition-related-to-the-qp-error-state.patch diff --git a/queue-4.15/rdma-rxe-fix-rxe_qp_cleanup.patch b/releases/4.15.5/rdma-rxe-fix-rxe_qp_cleanup.patch similarity index 100% rename from queue-4.15/rdma-rxe-fix-rxe_qp_cleanup.patch rename to releases/4.15.5/rdma-rxe-fix-rxe_qp_cleanup.patch diff --git a/queue-4.15/revert-apple-gmux-lock-igp-io-to-protect-from-vgaarb-changes.patch b/releases/4.15.5/revert-apple-gmux-lock-igp-io-to-protect-from-vgaarb-changes.patch similarity index 100% rename from queue-4.15/revert-apple-gmux-lock-igp-io-to-protect-from-vgaarb-changes.patch rename to releases/4.15.5/revert-apple-gmux-lock-igp-io-to-protect-from-vgaarb-changes.patch diff --git a/queue-4.15/revert-mmc-meson-gx-include-tx-phase-in-the-tuning-process.patch b/releases/4.15.5/revert-mmc-meson-gx-include-tx-phase-in-the-tuning-process.patch similarity index 100% rename from queue-4.15/revert-mmc-meson-gx-include-tx-phase-in-the-tuning-process.patch rename to releases/4.15.5/revert-mmc-meson-gx-include-tx-phase-in-the-tuning-process.patch diff --git a/queue-4.15/revert-x86-speculation-simplify-indirect_branch_prediction_barrier.patch b/releases/4.15.5/revert-x86-speculation-simplify-indirect_branch_prediction_barrier.patch similarity index 100% rename from queue-4.15/revert-x86-speculation-simplify-indirect_branch_prediction_barrier.patch rename to releases/4.15.5/revert-x86-speculation-simplify-indirect_branch_prediction_barrier.patch diff --git a/queue-4.15/rtc-opal-fix-handling-of-firmware-error-codes-prevent-busy-loops.patch b/releases/4.15.5/rtc-opal-fix-handling-of-firmware-error-codes-prevent-busy-loops.patch similarity index 100% rename from queue-4.15/rtc-opal-fix-handling-of-firmware-error-codes-prevent-busy-loops.patch rename to releases/4.15.5/rtc-opal-fix-handling-of-firmware-error-codes-prevent-busy-loops.patch diff --git a/queue-4.15/rtlwifi-rtl8821ae-fix-connection-lost-problem-correctly.patch b/releases/4.15.5/rtlwifi-rtl8821ae-fix-connection-lost-problem-correctly.patch similarity index 100% rename from queue-4.15/rtlwifi-rtl8821ae-fix-connection-lost-problem-correctly.patch rename to releases/4.15.5/rtlwifi-rtl8821ae-fix-connection-lost-problem-correctly.patch diff --git a/queue-4.15/s390-fix-handling-of-1-in-set-fs-id16-syscalls.patch b/releases/4.15.5/s390-fix-handling-of-1-in-set-fs-id16-syscalls.patch similarity index 100% rename from queue-4.15/s390-fix-handling-of-1-in-set-fs-id16-syscalls.patch rename to releases/4.15.5/s390-fix-handling-of-1-in-set-fs-id16-syscalls.patch diff --git a/queue-4.15/scsi-smartpqi-allow-static-build-built-in.patch b/releases/4.15.5/scsi-smartpqi-allow-static-build-built-in.patch similarity index 100% rename from queue-4.15/scsi-smartpqi-allow-static-build-built-in.patch rename to releases/4.15.5/scsi-smartpqi-allow-static-build-built-in.patch diff --git a/queue-4.15/selftests-seccomp-fix-compile-error-seccomp_bpf.patch b/releases/4.15.5/selftests-seccomp-fix-compile-error-seccomp_bpf.patch similarity index 100% rename from queue-4.15/selftests-seccomp-fix-compile-error-seccomp_bpf.patch rename to releases/4.15.5/selftests-seccomp-fix-compile-error-seccomp_bpf.patch diff --git a/queue-4.15/selftests-x86-clean-up-and-document-sscanf-usage.patch b/releases/4.15.5/selftests-x86-clean-up-and-document-sscanf-usage.patch similarity index 100% rename from queue-4.15/selftests-x86-clean-up-and-document-sscanf-usage.patch rename to releases/4.15.5/selftests-x86-clean-up-and-document-sscanf-usage.patch diff --git a/queue-4.15/selftests-x86-disable-tests-requiring-32-bit-support-on-pure-64-bit-systems.patch b/releases/4.15.5/selftests-x86-disable-tests-requiring-32-bit-support-on-pure-64-bit-systems.patch similarity index 100% rename from queue-4.15/selftests-x86-disable-tests-requiring-32-bit-support-on-pure-64-bit-systems.patch rename to releases/4.15.5/selftests-x86-disable-tests-requiring-32-bit-support-on-pure-64-bit-systems.patch diff --git a/queue-4.15/selftests-x86-do-not-rely-on-int-0x80-in-single_step_syscall.c.patch b/releases/4.15.5/selftests-x86-do-not-rely-on-int-0x80-in-single_step_syscall.c.patch similarity index 100% rename from queue-4.15/selftests-x86-do-not-rely-on-int-0x80-in-single_step_syscall.c.patch rename to releases/4.15.5/selftests-x86-do-not-rely-on-int-0x80-in-single_step_syscall.c.patch diff --git a/queue-4.15/selftests-x86-do-not-rely-on-int-0x80-in-test_mremap_vdso.c.patch b/releases/4.15.5/selftests-x86-do-not-rely-on-int-0x80-in-test_mremap_vdso.c.patch similarity index 100% rename from queue-4.15/selftests-x86-do-not-rely-on-int-0x80-in-test_mremap_vdso.c.patch rename to releases/4.15.5/selftests-x86-do-not-rely-on-int-0x80-in-test_mremap_vdso.c.patch diff --git a/queue-4.15/selftests-x86-fix-build-bug-caused-by-the-5lvl-test-which-has-been-moved-to-the-vm-directory.patch b/releases/4.15.5/selftests-x86-fix-build-bug-caused-by-the-5lvl-test-which-has-been-moved-to-the-vm-directory.patch similarity index 100% rename from queue-4.15/selftests-x86-fix-build-bug-caused-by-the-5lvl-test-which-has-been-moved-to-the-vm-directory.patch rename to releases/4.15.5/selftests-x86-fix-build-bug-caused-by-the-5lvl-test-which-has-been-moved-to-the-vm-directory.patch diff --git a/queue-4.15/selftests-x86-fix-vdso-selftest-segfault-for-vsyscall-none.patch b/releases/4.15.5/selftests-x86-fix-vdso-selftest-segfault-for-vsyscall-none.patch similarity index 100% rename from queue-4.15/selftests-x86-fix-vdso-selftest-segfault-for-vsyscall-none.patch rename to releases/4.15.5/selftests-x86-fix-vdso-selftest-segfault-for-vsyscall-none.patch diff --git a/queue-4.15/selftests-x86-mpx-fix-incorrect-bounds-with-old-_sigfault.patch b/releases/4.15.5/selftests-x86-mpx-fix-incorrect-bounds-with-old-_sigfault.patch similarity index 100% rename from queue-4.15/selftests-x86-mpx-fix-incorrect-bounds-with-old-_sigfault.patch rename to releases/4.15.5/selftests-x86-mpx-fix-incorrect-bounds-with-old-_sigfault.patch diff --git a/queue-4.15/selftests-x86-pkeys-remove-unused-functions.patch b/releases/4.15.5/selftests-x86-pkeys-remove-unused-functions.patch similarity index 100% rename from queue-4.15/selftests-x86-pkeys-remove-unused-functions.patch rename to releases/4.15.5/selftests-x86-pkeys-remove-unused-functions.patch diff --git a/queue-4.15/seq_file-fix-incomplete-reset-on-read-from-zero-offset.patch b/releases/4.15.5/seq_file-fix-incomplete-reset-on-read-from-zero-offset.patch similarity index 100% rename from queue-4.15/seq_file-fix-incomplete-reset-on-read-from-zero-offset.patch rename to releases/4.15.5/seq_file-fix-incomplete-reset-on-read-from-zero-offset.patch diff --git a/queue-4.15/series b/releases/4.15.5/series similarity index 100% rename from queue-4.15/series rename to releases/4.15.5/series diff --git a/queue-4.15/swiotlb-suppress-warning-when-__gfp_nowarn-is-set.patch b/releases/4.15.5/swiotlb-suppress-warning-when-__gfp_nowarn-is-set.patch similarity index 100% rename from queue-4.15/swiotlb-suppress-warning-when-__gfp_nowarn-is-set.patch rename to releases/4.15.5/swiotlb-suppress-warning-when-__gfp_nowarn-is-set.patch diff --git a/queue-4.15/target-iscsi-avoid-null-dereference-in-chap-auth-error-path.patch b/releases/4.15.5/target-iscsi-avoid-null-dereference-in-chap-auth-error-path.patch similarity index 100% rename from queue-4.15/target-iscsi-avoid-null-dereference-in-chap-auth-error-path.patch rename to releases/4.15.5/target-iscsi-avoid-null-dereference-in-chap-auth-error-path.patch diff --git a/queue-4.15/trace_uprobe-display-correct-offset-in-uprobe_events.patch b/releases/4.15.5/trace_uprobe-display-correct-offset-in-uprobe_events.patch similarity index 100% rename from queue-4.15/trace_uprobe-display-correct-offset-in-uprobe_events.patch rename to releases/4.15.5/trace_uprobe-display-correct-offset-in-uprobe_events.patch diff --git a/queue-4.15/tracing-fix-parsing-of-globs-with-a-wildcard-at-the-beginning.patch b/releases/4.15.5/tracing-fix-parsing-of-globs-with-a-wildcard-at-the-beginning.patch similarity index 100% rename from queue-4.15/tracing-fix-parsing-of-globs-with-a-wildcard-at-the-beginning.patch rename to releases/4.15.5/tracing-fix-parsing-of-globs-with-a-wildcard-at-the-beginning.patch diff --git a/queue-4.15/usb-move-usb_uhci_big_endian_-out-of-usb_support.patch b/releases/4.15.5/usb-move-usb_uhci_big_endian_-out-of-usb_support.patch similarity index 100% rename from queue-4.15/usb-move-usb_uhci_big_endian_-out-of-usb_support.patch rename to releases/4.15.5/usb-move-usb_uhci_big_endian_-out-of-usb_support.patch diff --git a/queue-4.15/video-fbdev-atmel_lcdfb-fix-display-timings-lookup.patch b/releases/4.15.5/video-fbdev-atmel_lcdfb-fix-display-timings-lookup.patch similarity index 100% rename from queue-4.15/video-fbdev-atmel_lcdfb-fix-display-timings-lookup.patch rename to releases/4.15.5/video-fbdev-atmel_lcdfb-fix-display-timings-lookup.patch diff --git a/queue-4.15/x86-cpu-change-type-of-x86_cache_size-variable-to-unsigned-int.patch b/releases/4.15.5/x86-cpu-change-type-of-x86_cache_size-variable-to-unsigned-int.patch similarity index 100% rename from queue-4.15/x86-cpu-change-type-of-x86_cache_size-variable-to-unsigned-int.patch rename to releases/4.15.5/x86-cpu-change-type-of-x86_cache_size-variable-to-unsigned-int.patch diff --git a/queue-4.15/x86-cpu-rename-cpu_data.x86_mask-to-cpu_data.x86_stepping.patch b/releases/4.15.5/x86-cpu-rename-cpu_data.x86_mask-to-cpu_data.x86_stepping.patch similarity index 100% rename from queue-4.15/x86-cpu-rename-cpu_data.x86_mask-to-cpu_data.x86_stepping.patch rename to releases/4.15.5/x86-cpu-rename-cpu_data.x86_mask-to-cpu_data.x86_stepping.patch diff --git a/queue-4.15/x86-debug-objtool-annotate-warn-related-ud2-as-reachable.patch b/releases/4.15.5/x86-debug-objtool-annotate-warn-related-ud2-as-reachable.patch similarity index 100% rename from queue-4.15/x86-debug-objtool-annotate-warn-related-ud2-as-reachable.patch rename to releases/4.15.5/x86-debug-objtool-annotate-warn-related-ud2-as-reachable.patch diff --git a/queue-4.15/x86-debug-use-ud2-for-warn.patch b/releases/4.15.5/x86-debug-use-ud2-for-warn.patch similarity index 100% rename from queue-4.15/x86-debug-use-ud2-for-warn.patch rename to releases/4.15.5/x86-debug-use-ud2-for-warn.patch diff --git a/queue-4.15/x86-entry-64-clear-extra-registers-beyond-syscall-arguments-to-reduce-speculation-attack-surface.patch b/releases/4.15.5/x86-entry-64-clear-extra-registers-beyond-syscall-arguments-to-reduce-speculation-attack-surface.patch similarity index 100% rename from queue-4.15/x86-entry-64-clear-extra-registers-beyond-syscall-arguments-to-reduce-speculation-attack-surface.patch rename to releases/4.15.5/x86-entry-64-clear-extra-registers-beyond-syscall-arguments-to-reduce-speculation-attack-surface.patch diff --git a/queue-4.15/x86-entry-64-clear-registers-for-exceptions-interrupts-to-reduce-speculation-attack-surface.patch b/releases/4.15.5/x86-entry-64-clear-registers-for-exceptions-interrupts-to-reduce-speculation-attack-surface.patch similarity index 100% rename from queue-4.15/x86-entry-64-clear-registers-for-exceptions-interrupts-to-reduce-speculation-attack-surface.patch rename to releases/4.15.5/x86-entry-64-clear-registers-for-exceptions-interrupts-to-reduce-speculation-attack-surface.patch diff --git a/queue-4.15/x86-entry-64-compat-clear-registers-for-compat-syscalls-to-reduce-speculation-attack-surface.patch b/releases/4.15.5/x86-entry-64-compat-clear-registers-for-compat-syscalls-to-reduce-speculation-attack-surface.patch similarity index 100% rename from queue-4.15/x86-entry-64-compat-clear-registers-for-compat-syscalls-to-reduce-speculation-attack-surface.patch rename to releases/4.15.5/x86-entry-64-compat-clear-registers-for-compat-syscalls-to-reduce-speculation-attack-surface.patch diff --git a/queue-4.15/x86-entry-64-fix-cr3-restore-in-paranoid_exit.patch b/releases/4.15.5/x86-entry-64-fix-cr3-restore-in-paranoid_exit.patch similarity index 100% rename from queue-4.15/x86-entry-64-fix-cr3-restore-in-paranoid_exit.patch rename to releases/4.15.5/x86-entry-64-fix-cr3-restore-in-paranoid_exit.patch diff --git a/queue-4.15/x86-entry-64-fix-paranoid_entry-frame-pointer-warning.patch b/releases/4.15.5/x86-entry-64-fix-paranoid_entry-frame-pointer-warning.patch similarity index 100% rename from queue-4.15/x86-entry-64-fix-paranoid_entry-frame-pointer-warning.patch rename to releases/4.15.5/x86-entry-64-fix-paranoid_entry-frame-pointer-warning.patch diff --git a/queue-4.15/x86-entry-64-get-rid-of-the-alloc_pt_gpregs_on_stack-and-save_and_clear_regs-macros.patch b/releases/4.15.5/x86-entry-64-get-rid-of-the-alloc_pt_gpregs_on_stack-and-save_and_clear_regs-macros.patch similarity index 100% rename from queue-4.15/x86-entry-64-get-rid-of-the-alloc_pt_gpregs_on_stack-and-save_and_clear_regs-macros.patch rename to releases/4.15.5/x86-entry-64-get-rid-of-the-alloc_pt_gpregs_on_stack-and-save_and_clear_regs-macros.patch diff --git a/queue-4.15/x86-entry-64-indent-push_and_clear_regs-and-pop_regs-properly.patch b/releases/4.15.5/x86-entry-64-indent-push_and_clear_regs-and-pop_regs-properly.patch similarity index 100% rename from queue-4.15/x86-entry-64-indent-push_and_clear_regs-and-pop_regs-properly.patch rename to releases/4.15.5/x86-entry-64-indent-push_and_clear_regs-and-pop_regs-properly.patch diff --git a/queue-4.15/x86-entry-64-interleave-xor-register-clearing-with-push-instructions.patch b/releases/4.15.5/x86-entry-64-interleave-xor-register-clearing-with-push-instructions.patch similarity index 100% rename from queue-4.15/x86-entry-64-interleave-xor-register-clearing-with-push-instructions.patch rename to releases/4.15.5/x86-entry-64-interleave-xor-register-clearing-with-push-instructions.patch diff --git a/queue-4.15/x86-entry-64-introduce-the-push_and_clean_regs-macro.patch b/releases/4.15.5/x86-entry-64-introduce-the-push_and_clean_regs-macro.patch similarity index 100% rename from queue-4.15/x86-entry-64-introduce-the-push_and_clean_regs-macro.patch rename to releases/4.15.5/x86-entry-64-introduce-the-push_and_clean_regs-macro.patch diff --git a/queue-4.15/x86-entry-64-merge-save_c_regs-and-save_extra_regs-remove-unused-extensions.patch b/releases/4.15.5/x86-entry-64-merge-save_c_regs-and-save_extra_regs-remove-unused-extensions.patch similarity index 100% rename from queue-4.15/x86-entry-64-merge-save_c_regs-and-save_extra_regs-remove-unused-extensions.patch rename to releases/4.15.5/x86-entry-64-merge-save_c_regs-and-save_extra_regs-remove-unused-extensions.patch diff --git a/queue-4.15/x86-entry-64-merge-the-pop_c_regs-and-pop_extra_regs-macros-into-a-single-pop_regs-macro.patch b/releases/4.15.5/x86-entry-64-merge-the-pop_c_regs-and-pop_extra_regs-macros-into-a-single-pop_regs-macro.patch similarity index 100% rename from queue-4.15/x86-entry-64-merge-the-pop_c_regs-and-pop_extra_regs-macros-into-a-single-pop_regs-macro.patch rename to releases/4.15.5/x86-entry-64-merge-the-pop_c_regs-and-pop_extra_regs-macros-into-a-single-pop_regs-macro.patch diff --git a/queue-4.15/x86-entry-64-remove-the-unused-icebp-macro.patch b/releases/4.15.5/x86-entry-64-remove-the-unused-icebp-macro.patch similarity index 100% rename from queue-4.15/x86-entry-64-remove-the-unused-icebp-macro.patch rename to releases/4.15.5/x86-entry-64-remove-the-unused-icebp-macro.patch diff --git a/queue-4.15/x86-entry-64-use-push_and_clean_regs-in-more-cases.patch b/releases/4.15.5/x86-entry-64-use-push_and_clean_regs-in-more-cases.patch similarity index 100% rename from queue-4.15/x86-entry-64-use-push_and_clean_regs-in-more-cases.patch rename to releases/4.15.5/x86-entry-64-use-push_and_clean_regs-in-more-cases.patch diff --git a/queue-4.15/x86-gpu-add-cfl-to-early-quirks.patch b/releases/4.15.5/x86-gpu-add-cfl-to-early-quirks.patch similarity index 100% rename from queue-4.15/x86-gpu-add-cfl-to-early-quirks.patch rename to releases/4.15.5/x86-gpu-add-cfl-to-early-quirks.patch diff --git a/queue-4.15/x86-kexec-make-kexec-mostly-work-in-5-level-paging-mode.patch b/releases/4.15.5/x86-kexec-make-kexec-mostly-work-in-5-level-paging-mode.patch similarity index 100% rename from queue-4.15/x86-kexec-make-kexec-mostly-work-in-5-level-paging-mode.patch rename to releases/4.15.5/x86-kexec-make-kexec-mostly-work-in-5-level-paging-mode.patch diff --git a/queue-4.15/x86-mm-mm-hwpoison-don-t-unconditionally-unmap-kernel-1-1-pages.patch b/releases/4.15.5/x86-mm-mm-hwpoison-don-t-unconditionally-unmap-kernel-1-1-pages.patch similarity index 100% rename from queue-4.15/x86-mm-mm-hwpoison-don-t-unconditionally-unmap-kernel-1-1-pages.patch rename to releases/4.15.5/x86-mm-mm-hwpoison-don-t-unconditionally-unmap-kernel-1-1-pages.patch diff --git a/queue-4.15/x86-mm-pti-fix-pti-comment-in-entry_syscall_64.patch b/releases/4.15.5/x86-mm-pti-fix-pti-comment-in-entry_syscall_64.patch similarity index 100% rename from queue-4.15/x86-mm-pti-fix-pti-comment-in-entry_syscall_64.patch rename to releases/4.15.5/x86-mm-pti-fix-pti-comment-in-entry_syscall_64.patch diff --git a/queue-4.15/x86-mm-rename-flush_tlb_single-and-flush_tlb_one-to-__flush_tlb_one_.patch b/releases/4.15.5/x86-mm-rename-flush_tlb_single-and-flush_tlb_one-to-__flush_tlb_one_.patch similarity index 100% rename from queue-4.15/x86-mm-rename-flush_tlb_single-and-flush_tlb_one-to-__flush_tlb_one_.patch rename to releases/4.15.5/x86-mm-rename-flush_tlb_single-and-flush_tlb_one-to-__flush_tlb_one_.patch diff --git a/queue-4.15/x86-nvmx-properly-set-spec_ctrl-and-pred_cmd-before-merging-msrs.patch b/releases/4.15.5/x86-nvmx-properly-set-spec_ctrl-and-pred_cmd-before-merging-msrs.patch similarity index 100% rename from queue-4.15/x86-nvmx-properly-set-spec_ctrl-and-pred_cmd-before-merging-msrs.patch rename to releases/4.15.5/x86-nvmx-properly-set-spec_ctrl-and-pred_cmd-before-merging-msrs.patch diff --git a/queue-4.15/x86-pm-make-apm-idle-driver-initialize-polling-state.patch b/releases/4.15.5/x86-pm-make-apm-idle-driver-initialize-polling-state.patch similarity index 100% rename from queue-4.15/x86-pm-make-apm-idle-driver-initialize-polling-state.patch rename to releases/4.15.5/x86-pm-make-apm-idle-driver-initialize-polling-state.patch diff --git a/queue-4.15/x86-smpboot-fix-uncore_pci_remove-indexing-bug-when-hot-removing-a-physical-cpu.patch b/releases/4.15.5/x86-smpboot-fix-uncore_pci_remove-indexing-bug-when-hot-removing-a-physical-cpu.patch similarity index 100% rename from queue-4.15/x86-smpboot-fix-uncore_pci_remove-indexing-bug-when-hot-removing-a-physical-cpu.patch rename to releases/4.15.5/x86-smpboot-fix-uncore_pci_remove-indexing-bug-when-hot-removing-a-physical-cpu.patch diff --git a/queue-4.15/x86-spectre-fix-an-error-message.patch b/releases/4.15.5/x86-spectre-fix-an-error-message.patch similarity index 100% rename from queue-4.15/x86-spectre-fix-an-error-message.patch rename to releases/4.15.5/x86-spectre-fix-an-error-message.patch diff --git a/queue-4.15/x86-speculation-add-asm-msr-index.h-dependency.patch b/releases/4.15.5/x86-speculation-add-asm-msr-index.h-dependency.patch similarity index 100% rename from queue-4.15/x86-speculation-add-asm-msr-index.h-dependency.patch rename to releases/4.15.5/x86-speculation-add-asm-msr-index.h-dependency.patch diff --git a/queue-4.15/x86-speculation-clean-up-various-spectre-related-details.patch b/releases/4.15.5/x86-speculation-clean-up-various-spectre-related-details.patch similarity index 100% rename from queue-4.15/x86-speculation-clean-up-various-spectre-related-details.patch rename to releases/4.15.5/x86-speculation-clean-up-various-spectre-related-details.patch diff --git a/queue-4.15/x86-speculation-correct-speculation-control-microcode-blacklist-again.patch b/releases/4.15.5/x86-speculation-correct-speculation-control-microcode-blacklist-again.patch similarity index 100% rename from queue-4.15/x86-speculation-correct-speculation-control-microcode-blacklist-again.patch rename to releases/4.15.5/x86-speculation-correct-speculation-control-microcode-blacklist-again.patch diff --git a/queue-4.15/x86-speculation-fix-up-array_index_nospec_mask-asm-constraint.patch b/releases/4.15.5/x86-speculation-fix-up-array_index_nospec_mask-asm-constraint.patch similarity index 100% rename from queue-4.15/x86-speculation-fix-up-array_index_nospec_mask-asm-constraint.patch rename to releases/4.15.5/x86-speculation-fix-up-array_index_nospec_mask-asm-constraint.patch diff --git a/queue-4.15/x86-speculation-update-speculation-control-microcode-blacklist.patch b/releases/4.15.5/x86-speculation-update-speculation-control-microcode-blacklist.patch similarity index 100% rename from queue-4.15/x86-speculation-update-speculation-control-microcode-blacklist.patch rename to releases/4.15.5/x86-speculation-update-speculation-control-microcode-blacklist.patch diff --git a/queue-4.15/x86-xen-init-gs-very-early-to-avoid-page-faults-with-stack-protector.patch b/releases/4.15.5/x86-xen-init-gs-very-early-to-avoid-page-faults-with-stack-protector.patch similarity index 100% rename from queue-4.15/x86-xen-init-gs-very-early-to-avoid-page-faults-with-stack-protector.patch rename to releases/4.15.5/x86-xen-init-gs-very-early-to-avoid-page-faults-with-stack-protector.patch diff --git a/queue-4.15/xen-fix-set-clear-_foreign_p2m_mapping-on-autotranslating-guests.patch b/releases/4.15.5/xen-fix-set-clear-_foreign_p2m_mapping-on-autotranslating-guests.patch similarity index 100% rename from queue-4.15/xen-fix-set-clear-_foreign_p2m_mapping-on-autotranslating-guests.patch rename to releases/4.15.5/xen-fix-set-clear-_foreign_p2m_mapping-on-autotranslating-guests.patch diff --git a/queue-4.15/xenbus-track-caller-request-id.patch b/releases/4.15.5/xenbus-track-caller-request-id.patch similarity index 100% rename from queue-4.15/xenbus-track-caller-request-id.patch rename to releases/4.15.5/xenbus-track-caller-request-id.patch diff --git a/queue-4.15/xprtrdma-fix-bug-after-a-device-removal.patch b/releases/4.15.5/xprtrdma-fix-bug-after-a-device-removal.patch similarity index 100% rename from queue-4.15/xprtrdma-fix-bug-after-a-device-removal.patch rename to releases/4.15.5/xprtrdma-fix-bug-after-a-device-removal.patch diff --git a/queue-4.15/xprtrdma-fix-calculation-of-ri_max_send_sges.patch b/releases/4.15.5/xprtrdma-fix-calculation-of-ri_max_send_sges.patch similarity index 100% rename from queue-4.15/xprtrdma-fix-calculation-of-ri_max_send_sges.patch rename to releases/4.15.5/xprtrdma-fix-calculation-of-ri_max_send_sges.patch