commit:     38998b11f08ace9a90e12480a430f866564ac863
Author:     Alice Ferrazzi <alicef <AT> gentoo <DOT> org>
AuthorDate: Mon Mar  5 02:52:16 2018 +0000
Commit:     Alice Ferrazzi <alicef <AT> gentoo <DOT> org>
CommitDate: Mon Mar  5 02:52:16 2018 +0000
URL:        https://gitweb.gentoo.org/proj/linux-patches.git/commit/?id=38998b11

linux kernel 4.4.120

 0000_README              |    4 +
 1119_linux-4.4.120.patch | 1104 ++++++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 1108 insertions(+)

diff --git a/0000_README b/0000_README
index e349b72..39de3c4 100644
--- a/0000_README
+++ b/0000_README
@@ -519,6 +519,10 @@ Patch:  1118_linux-4.4.119.patch
 From:   http://www.kernel.org
 Desc:   Linux 4.4.119
 
+Patch:  1119_linux-4.4.120.patch
+From:   http://www.kernel.org
+Desc:   Linux 4.4.120
+
 Patch:  1500_XATTR_USER_PREFIX.patch
 From:   https://bugs.gentoo.org/show_bug.cgi?id=470644
 Desc:   Support for namespace user.pax.* on tmpfs.

diff --git a/1119_linux-4.4.120.patch b/1119_linux-4.4.120.patch
new file mode 100644
index 0000000..c9ab6d4
--- /dev/null
+++ b/1119_linux-4.4.120.patch
@@ -0,0 +1,1104 @@
+diff --git a/Makefile b/Makefile
+index 87f925192c77..d874d7de0cde 100644
+--- a/Makefile
++++ b/Makefile
+@@ -1,6 +1,6 @@
+ VERSION = 4
+ PATCHLEVEL = 4
+-SUBLEVEL = 119
++SUBLEVEL = 120
+ EXTRAVERSION =
+ NAME = Blurry Fish Butt
+ 
+diff --git a/arch/arm/boot/dts/ls1021a-qds.dts 
b/arch/arm/boot/dts/ls1021a-qds.dts
+index 0521e6864cb7..76fce89d4f69 100644
+--- a/arch/arm/boot/dts/ls1021a-qds.dts
++++ b/arch/arm/boot/dts/ls1021a-qds.dts
+@@ -215,7 +215,7 @@
+                               reg = <0x2a>;
+                               VDDA-supply = <&reg_3p3v>;
+                               VDDIO-supply = <&reg_3p3v>;
+-                              clocks = <&sys_mclk 1>;
++                              clocks = <&sys_mclk>;
+                       };
+               };
+       };
+diff --git a/arch/arm/boot/dts/ls1021a-twr.dts 
b/arch/arm/boot/dts/ls1021a-twr.dts
+index fbb89d13401e..674df87629bd 100644
+--- a/arch/arm/boot/dts/ls1021a-twr.dts
++++ b/arch/arm/boot/dts/ls1021a-twr.dts
+@@ -167,7 +167,7 @@
+               reg = <0x0a>;
+               VDDA-supply = <&reg_3p3v>;
+               VDDIO-supply = <&reg_3p3v>;
+-              clocks = <&sys_mclk 1>;
++              clocks = <&sys_mclk>;
+       };
+ };
+ 
+diff --git a/arch/arm/lib/csumpartialcopyuser.S 
b/arch/arm/lib/csumpartialcopyuser.S
+index 1712f132b80d..b83fdc06286a 100644
+--- a/arch/arm/lib/csumpartialcopyuser.S
++++ b/arch/arm/lib/csumpartialcopyuser.S
+@@ -85,7 +85,11 @@
+               .pushsection .text.fixup,"ax"
+               .align  4
+ 9001:         mov     r4, #-EFAULT
++#ifdef CONFIG_CPU_SW_DOMAIN_PAN
++              ldr     r5, [sp, #9*4]          @ *err_ptr
++#else
+               ldr     r5, [sp, #8*4]          @ *err_ptr
++#endif
+               str     r4, [r5]
+               ldmia   sp, {r1, r2}            @ retrieve dst, len
+               add     r2, r2, r1
+diff --git a/arch/mips/lib/Makefile b/arch/mips/lib/Makefile
+index 0344e575f522..fba4ca56e46a 100644
+--- a/arch/mips/lib/Makefile
++++ b/arch/mips/lib/Makefile
+@@ -15,4 +15,5 @@ obj-$(CONFIG_CPU_R3000)              += r3k_dump_tlb.o
+ obj-$(CONFIG_CPU_TX39XX)      += r3k_dump_tlb.o
+ 
+ # libgcc-style stuff needed in the kernel
+-obj-y += ashldi3.o ashrdi3.o bswapsi.o bswapdi.o cmpdi2.o lshrdi3.o ucmpdi2.o
++obj-y += ashldi3.o ashrdi3.o bswapsi.o bswapdi.o cmpdi2.o lshrdi3.o multi3.o \
++       ucmpdi2.o
+diff --git a/arch/mips/lib/libgcc.h b/arch/mips/lib/libgcc.h
+index 05909d58e2fe..56ea0df60a44 100644
+--- a/arch/mips/lib/libgcc.h
++++ b/arch/mips/lib/libgcc.h
+@@ -9,10 +9,18 @@ typedef int word_type __attribute__ ((mode (__word__)));
+ struct DWstruct {
+       int high, low;
+ };
++
++struct TWstruct {
++      long long high, low;
++};
+ #elif defined(__LITTLE_ENDIAN)
+ struct DWstruct {
+       int low, high;
+ };
++
++struct TWstruct {
++      long long low, high;
++};
+ #else
+ #error I feel sick.
+ #endif
+@@ -22,4 +30,13 @@ typedef union {
+       long long ll;
+ } DWunion;
+ 
++#if defined(CONFIG_64BIT) && defined(CONFIG_CPU_MIPSR6)
++typedef int ti_type __attribute__((mode(TI)));
++
++typedef union {
++      struct TWstruct s;
++      ti_type ti;
++} TWunion;
++#endif
++
+ #endif /* __ASM_LIBGCC_H */
+diff --git a/arch/mips/lib/multi3.c b/arch/mips/lib/multi3.c
+new file mode 100644
+index 000000000000..111ad475aa0c
+--- /dev/null
++++ b/arch/mips/lib/multi3.c
+@@ -0,0 +1,54 @@
++// SPDX-License-Identifier: GPL-2.0
++#include <linux/export.h>
++
++#include "libgcc.h"
++
++/*
++ * GCC 7 suboptimally generates __multi3 calls for mips64r6, so for that
++ * specific case only we'll implement it here.
++ *
++ * See https://gcc.gnu.org/bugzilla/show_bug.cgi?id=82981
++ */
++#if defined(CONFIG_64BIT) && defined(CONFIG_CPU_MIPSR6) && (__GNUC__ == 7)
++
++/* multiply 64-bit values, low 64-bits returned */
++static inline long long notrace dmulu(long long a, long long b)
++{
++      long long res;
++
++      asm ("dmulu %0,%1,%2" : "=r" (res) : "r" (a), "r" (b));
++      return res;
++}
++
++/* multiply 64-bit unsigned values, high 64-bits of 128-bit result returned */
++static inline long long notrace dmuhu(long long a, long long b)
++{
++      long long res;
++
++      asm ("dmuhu %0,%1,%2" : "=r" (res) : "r" (a), "r" (b));
++      return res;
++}
++
++/* multiply 128-bit values, low 128-bits returned */
++ti_type notrace __multi3(ti_type a, ti_type b)
++{
++      TWunion res, aa, bb;
++
++      aa.ti = a;
++      bb.ti = b;
++
++      /*
++       * a * b =           (a.lo * b.lo)
++       *         + 2^64  * (a.hi * b.lo + a.lo * b.hi)
++       *        [+ 2^128 * (a.hi * b.hi)]
++       */
++      res.s.low = dmulu(aa.s.low, bb.s.low);
++      res.s.high = dmuhu(aa.s.low, bb.s.low);
++      res.s.high += dmulu(aa.s.high, bb.s.low);
++      res.s.high += dmulu(aa.s.low, bb.s.high);
++
++      return res.ti;
++}
++EXPORT_SYMBOL(__multi3);
++
++#endif /* 64BIT && CPU_MIPSR6 && GCC7 */
+diff --git a/arch/sh/boards/mach-se/770x/setup.c 
b/arch/sh/boards/mach-se/770x/setup.c
+index 658326f44df8..5e0267624d8d 100644
+--- a/arch/sh/boards/mach-se/770x/setup.c
++++ b/arch/sh/boards/mach-se/770x/setup.c
+@@ -8,6 +8,7 @@
+  */
+ #include <linux/init.h>
+ #include <linux/platform_device.h>
++#include <linux/sh_eth.h>
+ #include <mach-se/mach/se.h>
+ #include <mach-se/mach/mrshpc.h>
+ #include <asm/machvec.h>
+@@ -114,6 +115,11 @@ static struct platform_device heartbeat_device = {
+ #if defined(CONFIG_CPU_SUBTYPE_SH7710) ||\
+       defined(CONFIG_CPU_SUBTYPE_SH7712)
+ /* SH771X Ethernet driver */
++static struct sh_eth_plat_data sh_eth_plat = {
++      .phy = PHY_ID,
++      .phy_interface = PHY_INTERFACE_MODE_MII,
++};
++
+ static struct resource sh_eth0_resources[] = {
+       [0] = {
+               .start = SH_ETH0_BASE,
+@@ -131,7 +137,7 @@ static struct platform_device sh_eth0_device = {
+       .name = "sh771x-ether",
+       .id = 0,
+       .dev = {
+-              .platform_data = PHY_ID,
++              .platform_data = &sh_eth_plat,
+       },
+       .num_resources = ARRAY_SIZE(sh_eth0_resources),
+       .resource = sh_eth0_resources,
+@@ -154,7 +160,7 @@ static struct platform_device sh_eth1_device = {
+       .name = "sh771x-ether",
+       .id = 1,
+       .dev = {
+-              .platform_data = PHY_ID,
++              .platform_data = &sh_eth_plat,
+       },
+       .num_resources = ARRAY_SIZE(sh_eth1_resources),
+       .resource = sh_eth1_resources,
+diff --git a/drivers/gpu/drm/nouveau/nvkm/subdev/pci/base.c 
b/drivers/gpu/drm/nouveau/nvkm/subdev/pci/base.c
+index 4896474da320..3021fcd0a3df 100644
+--- a/drivers/gpu/drm/nouveau/nvkm/subdev/pci/base.c
++++ b/drivers/gpu/drm/nouveau/nvkm/subdev/pci/base.c
+@@ -127,6 +127,13 @@ nvkm_pci_init(struct nvkm_subdev *subdev)
+               return ret;
+ 
+       pci->irq = pdev->irq;
++
++      /* Ensure MSI interrupts are armed, for the case where there are
++       * already interrupts pending (for whatever reason) at load time.
++       */
++      if (pci->msi)
++              pci->func->msi_rearm(pci);
++
+       return ret;
+ }
+ 
+diff --git a/drivers/gpu/drm/ttm/ttm_page_alloc.c 
b/drivers/gpu/drm/ttm/ttm_page_alloc.c
+index 5d8dfe027b30..75d51ec98e06 100644
+--- a/drivers/gpu/drm/ttm/ttm_page_alloc.c
++++ b/drivers/gpu/drm/ttm/ttm_page_alloc.c
+@@ -818,6 +818,8 @@ int ttm_page_alloc_init(struct ttm_mem_global *glob, 
unsigned max_pages)
+       pr_info("Initializing pool allocator\n");
+ 
+       _manager = kzalloc(sizeof(*_manager), GFP_KERNEL);
++      if (!_manager)
++              return -ENOMEM;
+ 
+       ttm_page_pool_init_locked(&_manager->wc_pool, GFP_HIGHUSER, "wc");
+ 
+diff --git a/drivers/infiniband/hw/mlx4/mr.c b/drivers/infiniband/hw/mlx4/mr.c
+index 4d1e1c632603..ce87e9cc7eff 100644
+--- a/drivers/infiniband/hw/mlx4/mr.c
++++ b/drivers/infiniband/hw/mlx4/mr.c
+@@ -424,7 +424,6 @@ struct ib_mr *mlx4_ib_alloc_mr(struct ib_pd *pd,
+               goto err_free_mr;
+ 
+       mr->max_pages = max_num_sg;
+-
+       err = mlx4_mr_enable(dev->dev, &mr->mmr);
+       if (err)
+               goto err_free_pl;
+@@ -435,6 +434,7 @@ struct ib_mr *mlx4_ib_alloc_mr(struct ib_pd *pd,
+       return &mr->ibmr;
+ 
+ err_free_pl:
++      mr->ibmr.device = pd->device;
+       mlx4_free_priv_pages(mr);
+ err_free_mr:
+       (void) mlx4_mr_free(dev->dev, &mr->mmr);
+diff --git a/drivers/infiniband/ulp/ipoib/ipoib_main.c 
b/drivers/infiniband/ulp/ipoib/ipoib_main.c
+index bad76eed06b3..5c653669e736 100644
+--- a/drivers/infiniband/ulp/ipoib/ipoib_main.c
++++ b/drivers/infiniband/ulp/ipoib/ipoib_main.c
+@@ -844,8 +844,8 @@ static int path_rec_start(struct net_device *dev,
+       return 0;
+ }
+ 
+-static void neigh_add_path(struct sk_buff *skb, u8 *daddr,
+-                         struct net_device *dev)
++static struct ipoib_neigh *neigh_add_path(struct sk_buff *skb, u8 *daddr,
++                                        struct net_device *dev)
+ {
+       struct ipoib_dev_priv *priv = netdev_priv(dev);
+       struct ipoib_path *path;
+@@ -858,7 +858,15 @@ static void neigh_add_path(struct sk_buff *skb, u8 *daddr,
+               spin_unlock_irqrestore(&priv->lock, flags);
+               ++dev->stats.tx_dropped;
+               dev_kfree_skb_any(skb);
+-              return;
++              return NULL;
++      }
++
++      /* To avoid race condition, make sure that the
++       * neigh will be added only once.
++       */
++      if (unlikely(!list_empty(&neigh->list))) {
++              spin_unlock_irqrestore(&priv->lock, flags);
++              return neigh;
+       }
+ 
+       path = __path_find(dev, daddr + 4);
+@@ -896,7 +904,7 @@ static void neigh_add_path(struct sk_buff *skb, u8 *daddr,
+                       spin_unlock_irqrestore(&priv->lock, flags);
+                       ipoib_send(dev, skb, path->ah, IPOIB_QPN(daddr));
+                       ipoib_neigh_put(neigh);
+-                      return;
++                      return NULL;
+               }
+       } else {
+               neigh->ah  = NULL;
+@@ -913,7 +921,7 @@ static void neigh_add_path(struct sk_buff *skb, u8 *daddr,
+ 
+       spin_unlock_irqrestore(&priv->lock, flags);
+       ipoib_neigh_put(neigh);
+-      return;
++      return NULL;
+ 
+ err_path:
+       ipoib_neigh_free(neigh);
+@@ -923,6 +931,8 @@ err_drop:
+ 
+       spin_unlock_irqrestore(&priv->lock, flags);
+       ipoib_neigh_put(neigh);
++
++      return NULL;
+ }
+ 
+ static void unicast_arp_send(struct sk_buff *skb, struct net_device *dev,
+@@ -1028,8 +1038,9 @@ static int ipoib_start_xmit(struct sk_buff *skb, struct 
net_device *dev)
+       case htons(ETH_P_TIPC):
+               neigh = ipoib_neigh_get(dev, phdr->hwaddr);
+               if (unlikely(!neigh)) {
+-                      neigh_add_path(skb, phdr->hwaddr, dev);
+-                      return NETDEV_TX_OK;
++                      neigh = neigh_add_path(skb, phdr->hwaddr, dev);
++                      if (likely(!neigh))
++                              return NETDEV_TX_OK;
+               }
+               break;
+       case htons(ETH_P_ARP):
+diff --git a/drivers/infiniband/ulp/ipoib/ipoib_multicast.c 
b/drivers/infiniband/ulp/ipoib/ipoib_multicast.c
+index 5580ab0b5781..8bf48165f32c 100644
+--- a/drivers/infiniband/ulp/ipoib/ipoib_multicast.c
++++ b/drivers/infiniband/ulp/ipoib/ipoib_multicast.c
+@@ -775,7 +775,10 @@ void ipoib_mcast_send(struct net_device *dev, u8 *daddr, 
struct sk_buff *skb)
+               spin_lock_irqsave(&priv->lock, flags);
+               if (!neigh) {
+                       neigh = ipoib_neigh_alloc(daddr, dev);
+-                      if (neigh) {
++                      /* Make sure that the neigh will be added only
++                       * once to mcast list.
++                       */
++                      if (neigh && list_empty(&neigh->list)) {
+                               kref_get(&mcast->ah->ref);
+                               neigh->ah       = mcast->ah;
+                               list_add_tail(&neigh->list, &mcast->neigh_list);
+diff --git a/drivers/leds/led-core.c b/drivers/leds/led-core.c
+index c1c3af089634..92b6798ef5b3 100644
+--- a/drivers/leds/led-core.c
++++ b/drivers/leds/led-core.c
+@@ -149,7 +149,7 @@ void led_blink_set(struct led_classdev *led_cdev,
+                  unsigned long *delay_on,
+                  unsigned long *delay_off)
+ {
+-      del_timer_sync(&led_cdev->blink_timer);
++      led_stop_software_blink(led_cdev);
+ 
+       led_cdev->flags &= ~LED_BLINK_ONESHOT;
+       led_cdev->flags &= ~LED_BLINK_ONESHOT_STOP;
+diff --git a/drivers/mtd/nand/gpmi-nand/gpmi-nand.c 
b/drivers/mtd/nand/gpmi-nand/gpmi-nand.c
+index 2064adac1d17..e2a239c1f40b 100644
+--- a/drivers/mtd/nand/gpmi-nand/gpmi-nand.c
++++ b/drivers/mtd/nand/gpmi-nand/gpmi-nand.c
+@@ -1029,9 +1029,6 @@ static int gpmi_ecc_read_page(struct mtd_info *mtd, 
struct nand_chip *chip,
+               return ret;
+       }
+ 
+-      /* handle the block mark swapping */
+-      block_mark_swapping(this, payload_virt, auxiliary_virt);
+-
+       /* Loop over status bytes, accumulating ECC status. */
+       status = auxiliary_virt + nfc_geo->auxiliary_status_offset;
+ 
+@@ -1047,6 +1044,9 @@ static int gpmi_ecc_read_page(struct mtd_info *mtd, 
struct nand_chip *chip,
+               max_bitflips = max_t(unsigned int, max_bitflips, *status);
+       }
+ 
++      /* handle the block mark swapping */
++      block_mark_swapping(this, buf, auxiliary_virt);
++
+       if (oob_required) {
+               /*
+                * It's time to deliver the OOB bytes. See gpmi_ecc_read_oob()
+diff --git a/drivers/net/can/flexcan.c b/drivers/net/can/flexcan.c
+index 16f7cadda5c3..47f43bdecd51 100644
+--- a/drivers/net/can/flexcan.c
++++ b/drivers/net/can/flexcan.c
+@@ -493,7 +493,7 @@ static int flexcan_start_xmit(struct sk_buff *skb, struct 
net_device *dev)
+               data = be32_to_cpup((__be32 *)&cf->data[0]);
+               flexcan_write(data, &regs->mb[FLEXCAN_TX_BUF_ID].data[0]);
+       }
+-      if (cf->can_dlc > 3) {
++      if (cf->can_dlc > 4) {
+               data = be32_to_cpup((__be32 *)&cf->data[4]);
+               flexcan_write(data, &regs->mb[FLEXCAN_TX_BUF_ID].data[1]);
+       }
+diff --git a/drivers/net/ethernet/arc/emac_main.c 
b/drivers/net/ethernet/arc/emac_main.c
+index abe1eabc0171..9cc5daed13ed 100644
+--- a/drivers/net/ethernet/arc/emac_main.c
++++ b/drivers/net/ethernet/arc/emac_main.c
+@@ -250,39 +250,48 @@ static int arc_emac_rx(struct net_device *ndev, int 
budget)
+                       continue;
+               }
+ 
+-              pktlen = info & LEN_MASK;
+-              stats->rx_packets++;
+-              stats->rx_bytes += pktlen;
+-              skb = rx_buff->skb;
+-              skb_put(skb, pktlen);
+-              skb->dev = ndev;
+-              skb->protocol = eth_type_trans(skb, ndev);
+-
+-              dma_unmap_single(&ndev->dev, dma_unmap_addr(rx_buff, addr),
+-                               dma_unmap_len(rx_buff, len), DMA_FROM_DEVICE);
+-
+-              /* Prepare the BD for next cycle */
+-              rx_buff->skb = netdev_alloc_skb_ip_align(ndev,
+-                                                       EMAC_BUFFER_SIZE);
+-              if (unlikely(!rx_buff->skb)) {
++              /* Prepare the BD for next cycle. netif_receive_skb()
++               * only if new skb was allocated and mapped to avoid holes
++               * in the RX fifo.
++               */
++              skb = netdev_alloc_skb_ip_align(ndev, EMAC_BUFFER_SIZE);
++              if (unlikely(!skb)) {
++                      if (net_ratelimit())
++                              netdev_err(ndev, "cannot allocate skb\n");
++                      /* Return ownership to EMAC */
++                      rxbd->info = cpu_to_le32(FOR_EMAC | EMAC_BUFFER_SIZE);
+                       stats->rx_errors++;
+-                      /* Because receive_skb is below, increment rx_dropped */
+                       stats->rx_dropped++;
+                       continue;
+               }
+ 
+-              /* receive_skb only if new skb was allocated to avoid holes */
+-              netif_receive_skb(skb);
+-
+-              addr = dma_map_single(&ndev->dev, (void *)rx_buff->skb->data,
++              addr = dma_map_single(&ndev->dev, (void *)skb->data,
+                                     EMAC_BUFFER_SIZE, DMA_FROM_DEVICE);
+               if (dma_mapping_error(&ndev->dev, addr)) {
+                       if (net_ratelimit())
+-                              netdev_err(ndev, "cannot dma map\n");
+-                      dev_kfree_skb(rx_buff->skb);
++                              netdev_err(ndev, "cannot map dma buffer\n");
++                      dev_kfree_skb(skb);
++                      /* Return ownership to EMAC */
++                      rxbd->info = cpu_to_le32(FOR_EMAC | EMAC_BUFFER_SIZE);
+                       stats->rx_errors++;
++                      stats->rx_dropped++;
+                       continue;
+               }
++
++              /* unmap previosly mapped skb */
++              dma_unmap_single(&ndev->dev, dma_unmap_addr(rx_buff, addr),
++                               dma_unmap_len(rx_buff, len), DMA_FROM_DEVICE);
++
++              pktlen = info & LEN_MASK;
++              stats->rx_packets++;
++              stats->rx_bytes += pktlen;
++              skb_put(rx_buff->skb, pktlen);
++              rx_buff->skb->dev = ndev;
++              rx_buff->skb->protocol = eth_type_trans(rx_buff->skb, ndev);
++
++              netif_receive_skb(rx_buff->skb);
++
++              rx_buff->skb = skb;
+               dma_unmap_addr_set(rx_buff, addr, addr);
+               dma_unmap_len_set(rx_buff, len, EMAC_BUFFER_SIZE);
+ 
+diff --git a/drivers/net/ethernet/broadcom/bnx2x/bnx2x_cmn.c 
b/drivers/net/ethernet/broadcom/bnx2x/bnx2x_cmn.c
+index e5911ccb2148..74bece5897c9 100644
+--- a/drivers/net/ethernet/broadcom/bnx2x/bnx2x_cmn.c
++++ b/drivers/net/ethernet/broadcom/bnx2x/bnx2x_cmn.c
+@@ -3052,7 +3052,7 @@ int bnx2x_nic_unload(struct bnx2x *bp, int unload_mode, 
bool keep_link)
+ 
+       del_timer_sync(&bp->timer);
+ 
+-      if (IS_PF(bp)) {
++      if (IS_PF(bp) && !BP_NOMCP(bp)) {
+               /* Set ALWAYS_ALIVE bit in shmem */
+               bp->fw_drv_pulse_wr_seq |= DRV_PULSE_ALWAYS_ALIVE;
+               bnx2x_drv_pulse(bp);
+@@ -3134,7 +3134,7 @@ int bnx2x_nic_unload(struct bnx2x *bp, int unload_mode, 
bool keep_link)
+       bp->cnic_loaded = false;
+ 
+       /* Clear driver version indication in shmem */
+-      if (IS_PF(bp))
++      if (IS_PF(bp) && !BP_NOMCP(bp))
+               bnx2x_update_mng_version(bp);
+ 
+       /* Check if there are pending parity attentions. If there are - set
+diff --git a/drivers/net/ethernet/broadcom/bnx2x/bnx2x_main.c 
b/drivers/net/ethernet/broadcom/bnx2x/bnx2x_main.c
+index abb3ff6498dc..8ddb68a3fdb6 100644
+--- a/drivers/net/ethernet/broadcom/bnx2x/bnx2x_main.c
++++ b/drivers/net/ethernet/broadcom/bnx2x/bnx2x_main.c
+@@ -9570,6 +9570,15 @@ static int bnx2x_init_shmem(struct bnx2x *bp)
+ 
+       do {
+               bp->common.shmem_base = REG_RD(bp, MISC_REG_SHARED_MEM_ADDR);
++
++              /* If we read all 0xFFs, means we are in PCI error state and
++               * should bail out to avoid crashes on adapter's FW reads.
++               */
++              if (bp->common.shmem_base == 0xFFFFFFFF) {
++                      bp->flags |= NO_MCP_FLAG;
++                      return -ENODEV;
++              }
++
+               if (bp->common.shmem_base) {
+                       val = SHMEM_RD(bp, validity_map[BP_PORT(bp)]);
+                       if (val & SHR_MEM_VALIDITY_MB)
+@@ -14214,7 +14223,10 @@ static pci_ers_result_t bnx2x_io_slot_reset(struct 
pci_dev *pdev)
+               BNX2X_ERR("IO slot reset --> driver unload\n");
+ 
+               /* MCP should have been reset; Need to wait for validity */
+-              bnx2x_init_shmem(bp);
++              if (bnx2x_init_shmem(bp)) {
++                      rtnl_unlock();
++                      return PCI_ERS_RESULT_DISCONNECT;
++              }
+ 
+               if (IS_PF(bp) && SHMEM2_HAS(bp, drv_capabilities_flag)) {
+                       u32 v;
+diff --git a/drivers/net/ethernet/broadcom/bnxt/bnxt_sriov.c 
b/drivers/net/ethernet/broadcom/bnxt/bnxt_sriov.c
+index ea044bbcd384..3eebb57975e3 100644
+--- a/drivers/net/ethernet/broadcom/bnxt/bnxt_sriov.c
++++ b/drivers/net/ethernet/broadcom/bnxt/bnxt_sriov.c
+@@ -29,7 +29,7 @@ static int bnxt_vf_ndo_prep(struct bnxt *bp, int vf_id)
+               netdev_err(bp->dev, "vf ndo called though sriov is disabled\n");
+               return -EINVAL;
+       }
+-      if (vf_id >= bp->pf.max_vfs) {
++      if (vf_id >= bp->pf.active_vfs) {
+               netdev_err(bp->dev, "Invalid VF id %d\n", vf_id);
+               return -EINVAL;
+       }
+diff --git a/drivers/net/ethernet/broadcom/tg3.c 
b/drivers/net/ethernet/broadcom/tg3.c
+index ab53e0cfb4dc..3bba92fc9c1a 100644
+--- a/drivers/net/ethernet/broadcom/tg3.c
++++ b/drivers/net/ethernet/broadcom/tg3.c
+@@ -10051,6 +10051,16 @@ static int tg3_reset_hw(struct tg3 *tp, bool 
reset_phy)
+ 
+       tw32(GRC_MODE, tp->grc_mode | val);
+ 
++      /* On one of the AMD platform, MRRS is restricted to 4000 because of
++       * south bridge limitation. As a workaround, Driver is setting MRRS
++       * to 2048 instead of default 4096.
++       */
++      if (tp->pdev->subsystem_vendor == PCI_VENDOR_ID_DELL &&
++          tp->pdev->subsystem_device == TG3PCI_SUBDEVICE_ID_DELL_5762) {
++              val = tr32(TG3PCI_DEV_STATUS_CTRL) & ~MAX_READ_REQ_MASK;
++              tw32(TG3PCI_DEV_STATUS_CTRL, val | MAX_READ_REQ_SIZE_2048);
++      }
++
+       /* Setup the timer prescalar register.  Clock is always 66Mhz. */
+       val = tr32(GRC_MISC_CFG);
+       val &= ~0xff;
+@@ -14230,7 +14240,8 @@ static int tg3_change_mtu(struct net_device *dev, int 
new_mtu)
+        */
+       if (tg3_asic_rev(tp) == ASIC_REV_57766 ||
+           tg3_asic_rev(tp) == ASIC_REV_5717 ||
+-          tg3_asic_rev(tp) == ASIC_REV_5719)
++          tg3_asic_rev(tp) == ASIC_REV_5719 ||
++          tg3_asic_rev(tp) == ASIC_REV_5720)
+               reset_phy = true;
+ 
+       err = tg3_restart_hw(tp, reset_phy);
+diff --git a/drivers/net/ethernet/broadcom/tg3.h 
b/drivers/net/ethernet/broadcom/tg3.h
+index 31c9f8295953..19532961e173 100644
+--- a/drivers/net/ethernet/broadcom/tg3.h
++++ b/drivers/net/ethernet/broadcom/tg3.h
+@@ -95,6 +95,7 @@
+ #define TG3PCI_SUBDEVICE_ID_DELL_JAGUAR               0x0106
+ #define TG3PCI_SUBDEVICE_ID_DELL_MERLOT               0x0109
+ #define TG3PCI_SUBDEVICE_ID_DELL_SLIM_MERLOT  0x010a
++#define TG3PCI_SUBDEVICE_ID_DELL_5762         0x07f0
+ #define TG3PCI_SUBVENDOR_ID_COMPAQ            PCI_VENDOR_ID_COMPAQ
+ #define TG3PCI_SUBDEVICE_ID_COMPAQ_BANSHEE    0x007c
+ #define TG3PCI_SUBDEVICE_ID_COMPAQ_BANSHEE_2  0x009a
+@@ -280,6 +281,9 @@
+ #define TG3PCI_STD_RING_PROD_IDX      0x00000098 /* 64-bit */
+ #define TG3PCI_RCV_RET_RING_CON_IDX   0x000000a0 /* 64-bit */
+ /* 0xa8 --> 0xb8 unused */
++#define TG3PCI_DEV_STATUS_CTRL                0x000000b4
++#define  MAX_READ_REQ_SIZE_2048                0x00004000
++#define  MAX_READ_REQ_MASK             0x00007000
+ #define TG3PCI_DUAL_MAC_CTRL          0x000000b8
+ #define  DUAL_MAC_CTRL_CH_MASK                 0x00000003
+ #define  DUAL_MAC_CTRL_ID              0x00000004
+diff --git a/drivers/net/ethernet/freescale/gianfar_ptp.c 
b/drivers/net/ethernet/freescale/gianfar_ptp.c
+index b40fba929d65..d540ee190038 100644
+--- a/drivers/net/ethernet/freescale/gianfar_ptp.c
++++ b/drivers/net/ethernet/freescale/gianfar_ptp.c
+@@ -314,11 +314,10 @@ static int ptp_gianfar_adjtime(struct ptp_clock_info 
*ptp, s64 delta)
+       now = tmr_cnt_read(etsects);
+       now += delta;
+       tmr_cnt_write(etsects, now);
++      set_fipers(etsects);
+ 
+       spin_unlock_irqrestore(&etsects->lock, flags);
+ 
+-      set_fipers(etsects);
+-
+       return 0;
+ }
+ 
+diff --git a/drivers/net/ethernet/intel/e1000/e1000.h 
b/drivers/net/ethernet/intel/e1000/e1000.h
+index 98fe5a2cd6e3..481e994490ce 100644
+--- a/drivers/net/ethernet/intel/e1000/e1000.h
++++ b/drivers/net/ethernet/intel/e1000/e1000.h
+@@ -331,7 +331,8 @@ struct e1000_adapter {
+ enum e1000_state_t {
+       __E1000_TESTING,
+       __E1000_RESETTING,
+-      __E1000_DOWN
++      __E1000_DOWN,
++      __E1000_DISABLED
+ };
+ 
+ #undef pr_fmt
+diff --git a/drivers/net/ethernet/intel/e1000/e1000_main.c 
b/drivers/net/ethernet/intel/e1000/e1000_main.c
+index 068023595d84..2a1d4a9d3c19 100644
+--- a/drivers/net/ethernet/intel/e1000/e1000_main.c
++++ b/drivers/net/ethernet/intel/e1000/e1000_main.c
+@@ -940,7 +940,7 @@ static int e1000_init_hw_struct(struct e1000_adapter 
*adapter,
+ static int e1000_probe(struct pci_dev *pdev, const struct pci_device_id *ent)
+ {
+       struct net_device *netdev;
+-      struct e1000_adapter *adapter;
++      struct e1000_adapter *adapter = NULL;
+       struct e1000_hw *hw;
+ 
+       static int cards_found = 0;
+@@ -950,6 +950,7 @@ static int e1000_probe(struct pci_dev *pdev, const struct 
pci_device_id *ent)
+       u16 tmp = 0;
+       u16 eeprom_apme_mask = E1000_EEPROM_APME;
+       int bars, need_ioport;
++      bool disable_dev = false;
+ 
+       /* do not allocate ioport bars when not needed */
+       need_ioport = e1000_is_need_ioport(pdev);
+@@ -1250,11 +1251,13 @@ err_mdio_ioremap:
+       iounmap(hw->ce4100_gbe_mdio_base_virt);
+       iounmap(hw->hw_addr);
+ err_ioremap:
++      disable_dev = !test_and_set_bit(__E1000_DISABLED, &adapter->flags);
+       free_netdev(netdev);
+ err_alloc_etherdev:
+       pci_release_selected_regions(pdev, bars);
+ err_pci_reg:
+-      pci_disable_device(pdev);
++      if (!adapter || disable_dev)
++              pci_disable_device(pdev);
+       return err;
+ }
+ 
+@@ -1272,6 +1275,7 @@ static void e1000_remove(struct pci_dev *pdev)
+       struct net_device *netdev = pci_get_drvdata(pdev);
+       struct e1000_adapter *adapter = netdev_priv(netdev);
+       struct e1000_hw *hw = &adapter->hw;
++      bool disable_dev;
+ 
+       e1000_down_and_stop(adapter);
+       e1000_release_manageability(adapter);
+@@ -1290,9 +1294,11 @@ static void e1000_remove(struct pci_dev *pdev)
+               iounmap(hw->flash_address);
+       pci_release_selected_regions(pdev, adapter->bars);
+ 
++      disable_dev = !test_and_set_bit(__E1000_DISABLED, &adapter->flags);
+       free_netdev(netdev);
+ 
+-      pci_disable_device(pdev);
++      if (disable_dev)
++              pci_disable_device(pdev);
+ }
+ 
+ /**
+@@ -5135,7 +5141,8 @@ static int __e1000_shutdown(struct pci_dev *pdev, bool 
*enable_wake)
+       if (netif_running(netdev))
+               e1000_free_irq(adapter);
+ 
+-      pci_disable_device(pdev);
++      if (!test_and_set_bit(__E1000_DISABLED, &adapter->flags))
++              pci_disable_device(pdev);
+ 
+       return 0;
+ }
+@@ -5179,6 +5186,10 @@ static int e1000_resume(struct pci_dev *pdev)
+               pr_err("Cannot enable PCI device from suspend\n");
+               return err;
+       }
++
++      /* flush memory to make sure state is correct */
++      smp_mb__before_atomic();
++      clear_bit(__E1000_DISABLED, &adapter->flags);
+       pci_set_master(pdev);
+ 
+       pci_enable_wake(pdev, PCI_D3hot, 0);
+@@ -5253,7 +5264,9 @@ static pci_ers_result_t e1000_io_error_detected(struct 
pci_dev *pdev,
+ 
+       if (netif_running(netdev))
+               e1000_down(adapter);
+-      pci_disable_device(pdev);
++
++      if (!test_and_set_bit(__E1000_DISABLED, &adapter->flags))
++              pci_disable_device(pdev);
+ 
+       /* Request a slot slot reset. */
+       return PCI_ERS_RESULT_NEED_RESET;
+@@ -5281,6 +5294,10 @@ static pci_ers_result_t e1000_io_slot_reset(struct 
pci_dev *pdev)
+               pr_err("Cannot re-enable PCI device after reset.\n");
+               return PCI_ERS_RESULT_DISCONNECT;
+       }
++
++      /* flush memory to make sure state is correct */
++      smp_mb__before_atomic();
++      clear_bit(__E1000_DISABLED, &adapter->flags);
+       pci_set_master(pdev);
+ 
+       pci_enable_wake(pdev, PCI_D3hot, 0);
+diff --git a/drivers/net/phy/mdio-sun4i.c b/drivers/net/phy/mdio-sun4i.c
+index 15bc7f9ea224..afd76e07088b 100644
+--- a/drivers/net/phy/mdio-sun4i.c
++++ b/drivers/net/phy/mdio-sun4i.c
+@@ -128,8 +128,10 @@ static int sun4i_mdio_probe(struct platform_device *pdev)
+ 
+       data->regulator = devm_regulator_get(&pdev->dev, "phy");
+       if (IS_ERR(data->regulator)) {
+-              if (PTR_ERR(data->regulator) == -EPROBE_DEFER)
+-                      return -EPROBE_DEFER;
++              if (PTR_ERR(data->regulator) == -EPROBE_DEFER) {
++                      ret = -EPROBE_DEFER;
++                      goto err_out_free_mdiobus;
++              }
+ 
+               dev_info(&pdev->dev, "no regulator found\n");
+       } else {
+diff --git a/drivers/net/xen-netfront.c b/drivers/net/xen-netfront.c
+index eb7a9e62371c..0b8d2655985f 100644
+--- a/drivers/net/xen-netfront.c
++++ b/drivers/net/xen-netfront.c
+@@ -1331,6 +1331,7 @@ static struct net_device *xennet_create_dev(struct 
xenbus_device *dev)
+ 
+       netif_carrier_off(netdev);
+ 
++      xenbus_switch_state(dev, XenbusStateInitialising);
+       return netdev;
+ 
+  exit:
+diff --git a/drivers/s390/block/dasd_3990_erp.c 
b/drivers/s390/block/dasd_3990_erp.c
+index d26134713682..d05c553eb552 100644
+--- a/drivers/s390/block/dasd_3990_erp.c
++++ b/drivers/s390/block/dasd_3990_erp.c
+@@ -2743,6 +2743,16 @@ dasd_3990_erp_action(struct dasd_ccw_req * cqr)
+               erp = dasd_3990_erp_handle_match_erp(cqr, erp);
+       }
+ 
++
++      /*
++       * For path verification work we need to stick with the path that was
++       * originally chosen so that the per path configuration data is
++       * assigned correctly.
++       */
++      if (test_bit(DASD_CQR_VERIFY_PATH, &erp->flags) && cqr->lpm) {
++              erp->lpm = cqr->lpm;
++      }
++
+       if (device->features & DASD_FEATURE_ERPLOG) {
+               /* print current erp_chain */
+               dev_err(&device->cdev->dev,
+diff --git a/drivers/scsi/storvsc_drv.c b/drivers/scsi/storvsc_drv.c
+index 5e4e1ba96f10..351d81dc2200 100644
+--- a/drivers/scsi/storvsc_drv.c
++++ b/drivers/scsi/storvsc_drv.c
+@@ -890,10 +890,11 @@ static void storvsc_handle_error(struct vmscsi_request 
*vm_srb,
+               case TEST_UNIT_READY:
+                       break;
+               default:
+-                      set_host_byte(scmnd, DID_TARGET_FAILURE);
++                      set_host_byte(scmnd, DID_ERROR);
+               }
+               break;
+       case SRB_STATUS_INVALID_LUN:
++              set_host_byte(scmnd, DID_NO_CONNECT);
+               do_work = true;
+               process_err_fn = storvsc_remove_lun;
+               break;
+diff --git a/drivers/spi/spi-atmel.c b/drivers/spi/spi-atmel.c
+index 8feac599e9ab..44be6b593b30 100644
+--- a/drivers/spi/spi-atmel.c
++++ b/drivers/spi/spi-atmel.c
+@@ -1669,12 +1669,12 @@ static int atmel_spi_remove(struct platform_device 
*pdev)
+       pm_runtime_get_sync(&pdev->dev);
+ 
+       /* reset the hardware and block queue progress */
+-      spin_lock_irq(&as->lock);
+       if (as->use_dma) {
+               atmel_spi_stop_dma(as);
+               atmel_spi_release_dma(as);
+       }
+ 
++      spin_lock_irq(&as->lock);
+       spi_writel(as, CR, SPI_BIT(SWRST));
+       spi_writel(as, CR, SPI_BIT(SWRST)); /* AT91SAM9263 Rev B workaround */
+       spi_readl(as, SR);
+diff --git a/drivers/xen/gntdev.c b/drivers/xen/gntdev.c
+index a4d749665c9f..1865bcfa869b 100644
+--- a/drivers/xen/gntdev.c
++++ b/drivers/xen/gntdev.c
+@@ -378,10 +378,8 @@ static int unmap_grant_pages(struct grant_map *map, int 
offset, int pages)
+               }
+               range = 0;
+               while (range < pages) {
+-                      if (map->unmap_ops[offset+range].handle == -1) {
+-                              range--;
++                      if (map->unmap_ops[offset+range].handle == -1)
+                               break;
+-                      }
+                       range++;
+               }
+               err = __unmap_grant_pages(map, offset, range);
+@@ -876,8 +874,10 @@ unlock_out:
+ out_unlock_put:
+       mutex_unlock(&priv->lock);
+ out_put_map:
+-      if (use_ptemod)
++      if (use_ptemod) {
+               map->vma = NULL;
++              unmap_grant_pages(map, 0, map->count);
++      }
+       gntdev_put_map(priv, map);
+       return err;
+ }
+diff --git a/fs/f2fs/extent_cache.c b/fs/f2fs/extent_cache.c
+index 7ddba812e11b..6827b9c942dc 100644
+--- a/fs/f2fs/extent_cache.c
++++ b/fs/f2fs/extent_cache.c
+@@ -172,7 +172,7 @@ void f2fs_drop_largest_extent(struct inode *inode, pgoff_t 
fofs)
+       __drop_largest_extent(inode, fofs, 1);
+ }
+ 
+-void f2fs_init_extent_tree(struct inode *inode, struct f2fs_extent *i_ext)
++static void __f2fs_init_extent_tree(struct inode *inode, struct f2fs_extent 
*i_ext)
+ {
+       struct f2fs_sb_info *sbi = F2FS_I_SB(inode);
+       struct extent_tree *et;
+@@ -204,6 +204,14 @@ out:
+       write_unlock(&et->lock);
+ }
+ 
++void f2fs_init_extent_tree(struct inode *inode, struct f2fs_extent *i_ext)
++{
++      __f2fs_init_extent_tree(inode, i_ext);
++
++      if (!F2FS_I(inode)->extent_tree)
++              set_inode_flag(F2FS_I(inode), FI_NO_EXTENT);
++}
++
+ static bool f2fs_lookup_extent_tree(struct inode *inode, pgoff_t pgofs,
+                                                       struct extent_info *ei)
+ {
+diff --git a/fs/super.c b/fs/super.c
+index d4d2591b77c8..09b526a50986 100644
+--- a/fs/super.c
++++ b/fs/super.c
+@@ -497,7 +497,11 @@ retry:
+       hlist_add_head(&s->s_instances, &type->fs_supers);
+       spin_unlock(&sb_lock);
+       get_filesystem(type);
+-      register_shrinker(&s->s_shrink);
++      err = register_shrinker(&s->s_shrink);
++      if (err) {
++              deactivate_locked_super(s);
++              s = ERR_PTR(err);
++      }
+       return s;
+ }
+ 
+diff --git a/fs/xfs/xfs_qm.c b/fs/xfs/xfs_qm.c
+index 572b64a135b3..b148aa0e10f7 100644
+--- a/fs/xfs/xfs_qm.c
++++ b/fs/xfs/xfs_qm.c
+@@ -47,7 +47,7 @@
+ STATIC int    xfs_qm_init_quotainos(xfs_mount_t *);
+ STATIC int    xfs_qm_init_quotainfo(xfs_mount_t *);
+ 
+-
++STATIC void   xfs_qm_destroy_quotainos(xfs_quotainfo_t *qi);
+ STATIC void   xfs_qm_dqfree_one(struct xfs_dquot *dqp);
+ /*
+  * We use the batch lookup interface to iterate over the dquots as it
+@@ -660,9 +660,17 @@ xfs_qm_init_quotainfo(
+       qinf->qi_shrinker.scan_objects = xfs_qm_shrink_scan;
+       qinf->qi_shrinker.seeks = DEFAULT_SEEKS;
+       qinf->qi_shrinker.flags = SHRINKER_NUMA_AWARE;
+-      register_shrinker(&qinf->qi_shrinker);
++
++      error = register_shrinker(&qinf->qi_shrinker);
++      if (error)
++              goto out_free_inos;
++
+       return 0;
+ 
++out_free_inos:
++      mutex_destroy(&qinf->qi_quotaofflock);
++      mutex_destroy(&qinf->qi_tree_lock);
++      xfs_qm_destroy_quotainos(qinf);
+ out_free_lru:
+       list_lru_destroy(&qinf->qi_lru);
+ out_free_qinf:
+@@ -671,7 +679,6 @@ out_free_qinf:
+       return error;
+ }
+ 
+-
+ /*
+  * Gets called when unmounting a filesystem or when all quotas get
+  * turned off.
+@@ -688,19 +695,8 @@ xfs_qm_destroy_quotainfo(
+ 
+       unregister_shrinker(&qi->qi_shrinker);
+       list_lru_destroy(&qi->qi_lru);
+-
+-      if (qi->qi_uquotaip) {
+-              IRELE(qi->qi_uquotaip);
+-              qi->qi_uquotaip = NULL; /* paranoia */
+-      }
+-      if (qi->qi_gquotaip) {
+-              IRELE(qi->qi_gquotaip);
+-              qi->qi_gquotaip = NULL;
+-      }
+-      if (qi->qi_pquotaip) {
+-              IRELE(qi->qi_pquotaip);
+-              qi->qi_pquotaip = NULL;
+-      }
++      xfs_qm_destroy_quotainos(qi);
++      mutex_destroy(&qi->qi_tree_lock);
+       mutex_destroy(&qi->qi_quotaofflock);
+       kmem_free(qi);
+       mp->m_quotainfo = NULL;
+@@ -1561,6 +1557,24 @@ error_rele:
+       return error;
+ }
+ 
++STATIC void
++xfs_qm_destroy_quotainos(
++      xfs_quotainfo_t *qi)
++{
++      if (qi->qi_uquotaip) {
++              IRELE(qi->qi_uquotaip);
++              qi->qi_uquotaip = NULL; /* paranoia */
++      }
++      if (qi->qi_gquotaip) {
++              IRELE(qi->qi_gquotaip);
++              qi->qi_gquotaip = NULL;
++      }
++      if (qi->qi_pquotaip) {
++              IRELE(qi->qi_pquotaip);
++              qi->qi_pquotaip = NULL;
++      }
++}
++
+ STATIC void
+ xfs_qm_dqfree_one(
+       struct xfs_dquot        *dqp)
+diff --git a/kernel/time/hrtimer.c b/kernel/time/hrtimer.c
+index 323282e63865..8c4e27cbfe7f 100644
+--- a/kernel/time/hrtimer.c
++++ b/kernel/time/hrtimer.c
+@@ -1139,7 +1139,12 @@ static void __hrtimer_init(struct hrtimer *timer, 
clockid_t clock_id,
+ 
+       cpu_base = raw_cpu_ptr(&hrtimer_bases);
+ 
+-      if (clock_id == CLOCK_REALTIME && mode != HRTIMER_MODE_ABS)
++      /*
++       * POSIX magic: Relative CLOCK_REALTIME timers are not affected by
++       * clock modifications, so they needs to become CLOCK_MONOTONIC to
++       * ensure POSIX compliance.
++       */
++      if (clock_id == CLOCK_REALTIME && mode & HRTIMER_MODE_REL)
+               clock_id = CLOCK_MONOTONIC;
+ 
+       base = hrtimer_clockid_to_base(clock_id);
+diff --git a/lib/mpi/longlong.h b/lib/mpi/longlong.h
+index b90e255c2a68..d2ecf0a09180 100644
+--- a/lib/mpi/longlong.h
++++ b/lib/mpi/longlong.h
+@@ -671,7 +671,23 @@ do {                                              \
+       **************  MIPS/64  **************
+       ***************************************/
+ #if (defined(__mips) && __mips >= 3) && W_TYPE_SIZE == 64
+-#if (__GNUC__ >= 5) || (__GNUC__ >= 4 && __GNUC_MINOR__ >= 4)
++#if defined(__mips_isa_rev) && __mips_isa_rev >= 6
++/*
++ * GCC ends up emitting a __multi3 intrinsic call for MIPS64r6 with the plain 
C
++ * code below, so we special case MIPS64r6 until the compiler can do better.
++ */
++#define umul_ppmm(w1, w0, u, v)                                               
\
++do {                                                                  \
++      __asm__ ("dmulu %0,%1,%2"                                       \
++               : "=d" ((UDItype)(w0))                                 \
++               : "d" ((UDItype)(u)),                                  \
++                 "d" ((UDItype)(v)));                                 \
++      __asm__ ("dmuhu %0,%1,%2"                                       \
++               : "=d" ((UDItype)(w1))                                 \
++               : "d" ((UDItype)(u)),                                  \
++                 "d" ((UDItype)(v)));                                 \
++} while (0)
++#elif (__GNUC__ >= 5) || (__GNUC__ >= 4 && __GNUC_MINOR__ >= 4)
+ #define umul_ppmm(w1, w0, u, v) \
+ do {                                                                  \
+       typedef unsigned int __ll_UTItype __attribute__((mode(TI)));    \
+diff --git a/net/ipv6/route.c b/net/ipv6/route.c
+index 7336a7311038..48db6f5cec2c 100644
+--- a/net/ipv6/route.c
++++ b/net/ipv6/route.c
+@@ -1614,6 +1614,7 @@ struct dst_entry *icmp6_dst_alloc(struct net_device *dev,
+       }
+ 
+       rt->dst.flags |= DST_HOST;
++      rt->dst.input = ip6_input;
+       rt->dst.output  = ip6_output;
+       atomic_set(&rt->dst.__refcnt, 1);
+       rt->rt6i_gateway  = fl6->daddr;
+diff --git a/net/mac80211/rx.c b/net/mac80211/rx.c
+index 3bcabc2ba4a6..f8406c37fc1d 100644
+--- a/net/mac80211/rx.c
++++ b/net/mac80211/rx.c
+@@ -3367,6 +3367,8 @@ static bool ieee80211_accept_frame(struct 
ieee80211_rx_data *rx)
+               }
+               return true;
+       case NL80211_IFTYPE_MESH_POINT:
++              if (ether_addr_equal(sdata->vif.addr, hdr->addr2))
++                      return false;
+               if (multicast)
+                       return true;
+               return ether_addr_equal(sdata->vif.addr, hdr->addr1);
+diff --git a/net/sctp/socket.c b/net/sctp/socket.c
+index e9851198a850..df6a4b2d0728 100644
+--- a/net/sctp/socket.c
++++ b/net/sctp/socket.c
+@@ -4445,7 +4445,7 @@ static int sctp_getsockopt_autoclose(struct sock *sk, 
int len, char __user *optv
+       len = sizeof(int);
+       if (put_user(len, optlen))
+               return -EFAULT;
+-      if (copy_to_user(optval, &sctp_sk(sk)->autoclose, sizeof(int)))
++      if (copy_to_user(optval, &sctp_sk(sk)->autoclose, len))
+               return -EFAULT;
+       return 0;
+ }
+@@ -5022,6 +5022,9 @@ copy_getaddrs:
+               err = -EFAULT;
+               goto out;
+       }
++      /* XXX: We should have accounted for sizeof(struct sctp_getaddrs) too,
++       * but we can't change it anymore.
++       */
+       if (put_user(bytes_copied, optlen))
+               err = -EFAULT;
+ out:
+@@ -5458,7 +5461,7 @@ static int sctp_getsockopt_maxseg(struct sock *sk, int 
len,
+               params.assoc_id = 0;
+       } else if (len >= sizeof(struct sctp_assoc_value)) {
+               len = sizeof(struct sctp_assoc_value);
+-              if (copy_from_user(&params, optval, sizeof(params)))
++              if (copy_from_user(&params, optval, len))
+                       return -EFAULT;
+       } else
+               return -EINVAL;
+@@ -5627,7 +5630,9 @@ static int sctp_getsockopt_active_key(struct sock *sk, 
int len,
+ 
+       if (len < sizeof(struct sctp_authkeyid))
+               return -EINVAL;
+-      if (copy_from_user(&val, optval, sizeof(struct sctp_authkeyid)))
++
++      len = sizeof(struct sctp_authkeyid);
++      if (copy_from_user(&val, optval, len))
+               return -EFAULT;
+ 
+       asoc = sctp_id2assoc(sk, val.scact_assoc_id);
+@@ -5639,7 +5644,6 @@ static int sctp_getsockopt_active_key(struct sock *sk, 
int len,
+       else
+               val.scact_keynumber = ep->active_key_id;
+ 
+-      len = sizeof(struct sctp_authkeyid);
+       if (put_user(len, optlen))
+               return -EFAULT;
+       if (copy_to_user(optval, &val, len))
+@@ -5665,7 +5669,7 @@ static int sctp_getsockopt_peer_auth_chunks(struct sock 
*sk, int len,
+       if (len < sizeof(struct sctp_authchunks))
+               return -EINVAL;
+ 
+-      if (copy_from_user(&val, optval, sizeof(struct sctp_authchunks)))
++      if (copy_from_user(&val, optval, sizeof(val)))
+               return -EFAULT;
+ 
+       to = p->gauth_chunks;
+@@ -5710,7 +5714,7 @@ static int sctp_getsockopt_local_auth_chunks(struct sock 
*sk, int len,
+       if (len < sizeof(struct sctp_authchunks))
+               return -EINVAL;
+ 
+-      if (copy_from_user(&val, optval, sizeof(struct sctp_authchunks)))
++      if (copy_from_user(&val, optval, sizeof(val)))
+               return -EFAULT;
+ 
+       to = p->gauth_chunks;

Reply via email to