Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Unverified Commit 94d5e769 authored by Nathan Chancellor's avatar Nathan Chancellor
Browse files

Merge 4.4.162 into kernel.lnx.4.4.r27-rel



Changes in 4.4.162: (48 commits)
        ASoC: wm8804: Add ACPI support
        ASoC: sigmadsp: safeload should not have lower byte limit
        selftests/efivarfs: add required kernel configs
        mfd: omap-usb-host: Fix dts probe of children
        sound: enable interrupt after dma buffer initialization
        stmmac: fix valid numbers of unicast filter entries
        net: macb: disable scatter-gather for macb on sama5d3
        ARM: dts: at91: add new compatibility string for macb on sama5d3
        drm/amdgpu: Fix SDMA HQD destroy error on gfx_v7
        ext4: add corruption check in ext4_xattr_set_entry()
        mm/vmstat.c: fix outdated vmstat_text
        mach64: detect the dot clock divider correctly on sparc
        perf script python: Fix export-to-postgresql.py occasional failure
        i2c: i2c-scmi: fix for i2c_smbus_write_block_data
        xhci: Don't print a warning when setting link state for disabled ports
        jffs2: return -ERANGE when xattr buffer is too small
        bnxt_en: Fix TX timeout during netpoll.
        bonding: avoid possible dead-lock
        ip6_tunnel: be careful when accessing the inner header
        ip_tunnel: be careful when accessing the inner header
        ipv4: fix use-after-free in ip_cmsg_recv_dstaddr()
        net: ipv4: update fnhe_pmtu when first hop's MTU changes
        net/ipv6: Display all addresses in output of /proc/net/if_inet6
        netlabel: check for IPV4MASK in addrinfo_get
        net/usb: cancel pending work when unbinding smsc75xx
        qlcnic: fix Tx descriptor corruption on 82xx devices
        team: Forbid enslaving team device to itself
        net: mvpp2: Extract the correct ethtype from the skb for tx csum offload
        net: systemport: Fix wake-up interrupt race during resume
        rtnl: limit IFLA_NUM_TX_QUEUES and IFLA_NUM_RX_QUEUES to 4096
        KVM: x86: remove eager_fpu field of struct kvm_vcpu_arch
        x86/fpu: Remove use_eager_fpu()
        x86/fpu: Remove struct fpu::counter
        x86/fpu: Finish excising 'eagerfpu'
        media: af9035: prevent buffer overflow on write
        clocksource/drivers/ti-32k: Add CLOCK_SOURCE_SUSPEND_NONSTOP flag for non-am43 SoCs
        Input: atakbd - fix Atari keymap
        Input: atakbd - fix Atari CapsLock behaviour
        net/mlx4: Use cpumask_available for eq->affinity_mask
        powerpc/tm: Fix userspace r13 corruption
        powerpc/tm: Avoid possible userspace r1 corruption on reclaim
        ARC: build: Get rid of toolchain check
        usb: gadget: serial: fix oops when data rx'd after close
        Drivers: hv: utils: Invoke the poll function after handshake
        Drivers: hv: util: Pass the channel information during the init call
        Drivers: hv: kvp: fix IP Failover
        HV: properly delay KVP packets when negotiation is in progress
        Linux 4.4.162

Signed-off-by: default avatarNathan Chancellor <natechancellor@gmail.com>
parents 7484d008 24c2342b
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -8,6 +8,7 @@ Required properties:
  Use "cdns,pc302-gem" for Picochip picoXcell pc302 and later devices based on
  the Cadence GEM, or the generic form: "cdns,gem".
  Use "atmel,sama5d2-gem" for the GEM IP (10/100) available on Atmel sama5d2 SoCs.
  Use "atmel,sama5d3-macb" for the 10/100Mbit IP available on Atmel sama5d3 SoCs.
  Use "atmel,sama5d3-gem" for the Gigabit IP available on Atmel sama5d3 SoCs.
  Use "atmel,sama5d4-gem" for the GEM IP (10/100) available on Atmel sama5d4 SoCs.
  Use "cdns,zynqmp-gem" for Zynq Ultrascale+ MPSoC.
+0 −5
Original line number Diff line number Diff line
@@ -977,11 +977,6 @@ bytes respectively. Such letter suffixes can also be entirely omitted.
			See Documentation/x86/intel_mpx.txt for more
			information about the feature.

	eagerfpu=	[X86]
			on	enable eager fpu restore
			off	disable eager fpu restore
			auto	selects the default scheme, which automatically
				enables eagerfpu restore for xsaveopt.

	module.async_probe [KNL]
			Enable asynchronous probe on this module.
+1 −1
Original line number Diff line number Diff line
VERSION = 4
PATCHLEVEL = 4
SUBLEVEL = 161
SUBLEVEL = 162
EXTRAVERSION =
NAME = Blurry Fish Butt

+0 −14
Original line number Diff line number Diff line
@@ -18,20 +18,6 @@ cflags-y += -fno-common -pipe -fno-builtin -mmedium-calls -D__linux__
cflags-$(CONFIG_ISA_ARCOMPACT)	+= -mA7
cflags-$(CONFIG_ISA_ARCV2)	+= -mcpu=archs

is_700 = $(shell $(CC) -dM -E - < /dev/null | grep -q "ARC700" && echo 1 || echo 0)

ifdef CONFIG_ISA_ARCOMPACT
ifeq ($(is_700), 0)
    $(error Toolchain not configured for ARCompact builds)
endif
endif

ifdef CONFIG_ISA_ARCV2
ifeq ($(is_700), 1)
    $(error Toolchain not configured for ARCv2 builds)
endif
endif

ifdef CONFIG_ARC_CURR_IN_REG
# For a global register defintion, make sure it gets passed to every file
# We had a customer reported bug where some code built in kernel was NOT using
+1 −1
Original line number Diff line number Diff line
@@ -41,7 +41,7 @@
			};

			macb1: ethernet@f802c000 {
				compatible = "cdns,at91sam9260-macb", "cdns,macb";
				compatible = "atmel,sama5d3-macb", "cdns,at91sam9260-macb", "cdns,macb";
				reg = <0xf802c000 0x100>;
				interrupts = <35 IRQ_TYPE_LEVEL_HIGH 3>;
				pinctrl-names = "default";
Loading