linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
To: linux-kernel@vger.kernel.org
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
	stable@vger.kernel.org, Nicholas Mc Guire <der.herr@hofr.at>,
	Jonathan Cameron <jic23@kernel.org>,
	Sasha Levin <alexander.levin@microsoft.com>
Subject: [PATCH 4.9 043/310] iio: pressure: zpa2326: report interrupted case as failure
Date: Wed, 11 Apr 2018 20:33:02 +0200	[thread overview]
Message-ID: <20180411183624.119278368@linuxfoundation.org> (raw)
In-Reply-To: <20180411183622.305902791@linuxfoundation.org>

4.9-stable review patch.  If anyone has any objections, please let me know.

------------------

From: Nicholas Mc Guire <der.herr@hofr.at>


[ Upstream commit e7215fe4d51e69c9d2608ad0c409d48e844d0adc ]

If the timeout-case prints a warning message then probably the interrupted
case should also. Further, wait_for_completion_interruptible_timeout()
returns long not int.

Fixes: commit 03b262f2bbf4 ("iio:pressure: initial zpa2326 barometer support")
Signed-off-by: Nicholas Mc Guire <der.herr@hofr.at>
Signed-off-by: Jonathan Cameron <jic23@kernel.org>
Signed-off-by: Sasha Levin <alexander.levin@microsoft.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
---
 drivers/iio/pressure/zpa2326.c |   18 +++++++++++-------
 1 file changed, 11 insertions(+), 7 deletions(-)

--- a/drivers/iio/pressure/zpa2326.c
+++ b/drivers/iio/pressure/zpa2326.c
@@ -871,12 +871,13 @@ static int zpa2326_wait_oneshot_completi
 {
 	int          ret;
 	unsigned int val;
+	long     timeout;
 
 	zpa2326_dbg(indio_dev, "waiting for one shot completion interrupt");
 
-	ret = wait_for_completion_interruptible_timeout(
+	timeout = wait_for_completion_interruptible_timeout(
 		&private->data_ready, ZPA2326_CONVERSION_JIFFIES);
-	if (ret > 0)
+	if (timeout > 0)
 		/*
 		 * Interrupt handler completed before timeout: return operation
 		 * status.
@@ -886,13 +887,16 @@ static int zpa2326_wait_oneshot_completi
 	/* Clear all interrupts just to be sure. */
 	regmap_read(private->regmap, ZPA2326_INT_SOURCE_REG, &val);
 
-	if (!ret)
+	if (!timeout) {
 		/* Timed out. */
+		zpa2326_warn(indio_dev, "no one shot interrupt occurred (%ld)",
+			     timeout);
 		ret = -ETIME;
-
-	if (ret != -ERESTARTSYS)
-		zpa2326_warn(indio_dev, "no one shot interrupt occurred (%d)",
-			     ret);
+	} else if (timeout < 0) {
+		zpa2326_warn(indio_dev,
+			     "wait for one shot interrupt cancelled");
+		ret = -ERESTARTSYS;
+	}
 
 	return ret;
 }

  parent reply	other threads:[~2018-04-11 18:54 UTC|newest]

Thread overview: 325+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-04-11 18:32 [PATCH 4.9 000/310] 4.9.94-stable review Greg Kroah-Hartman
2018-04-11 18:32 ` [PATCH 4.9 001/310] qed: Fix overriding of supported autoneg value Greg Kroah-Hartman
2018-04-11 18:32 ` [PATCH 4.9 002/310] cfg80211: make RATE_INFO_BW_20 the default Greg Kroah-Hartman
2018-04-11 18:32 ` [PATCH 4.9 003/310] md/raid5: make use of spin_lock_irq over local_irq_disable + spin_lock Greg Kroah-Hartman
2018-04-11 18:32 ` [PATCH 4.9 004/310] rtc: snvs: fix an incorrect check of return value Greg Kroah-Hartman
2018-04-11 18:32 ` [PATCH 4.9 005/310] x86/asm: Dont use RBP as a temporary register in csum_partial_copy_generic() Greg Kroah-Hartman
2018-04-11 18:32 ` [PATCH 4.9 006/310] x86/mm/kaslr: Use the _ASM_MUL macro for multiplication to work around Clang incompatibility Greg Kroah-Hartman
2018-04-11 18:32 ` [PATCH 4.9 007/310] ovl: persistent inode numbers for upper hardlinks Greg Kroah-Hartman
2018-04-11 18:32 ` [PATCH 4.9 008/310] NFSv4.1: RECLAIM_COMPLETE must handle NFS4ERR_CONN_NOT_BOUND_TO_SESSION Greg Kroah-Hartman
2018-04-11 18:32 ` [PATCH 4.9 009/310] x86/boot: Declare error() as noreturn Greg Kroah-Hartman
2018-04-11 18:32 ` [PATCH 4.9 010/310] IB/srpt: Fix abort handling Greg Kroah-Hartman
2018-04-11 18:32 ` [PATCH 4.9 011/310] IB/srpt: Avoid that aborting a command triggers a kernel warning Greg Kroah-Hartman
2018-04-11 18:32 ` [PATCH 4.9 012/310] af_key: Fix slab-out-of-bounds in pfkey_compile_policy Greg Kroah-Hartman
2018-04-11 18:32 ` [PATCH 4.9 013/310] mac80211: bail out from prep_connection() if a reconfig is ongoing Greg Kroah-Hartman
2018-04-11 18:32 ` [PATCH 4.9 014/310] bna: Avoid reading past end of buffer Greg Kroah-Hartman
2018-04-11 18:32 ` [PATCH 4.9 015/310] qlge: " Greg Kroah-Hartman
2018-04-11 18:32 ` [PATCH 4.9 016/310] ubi: fastmap: Fix slab corruption Greg Kroah-Hartman
2018-04-11 18:32 ` [PATCH 4.9 017/310] ipmi_ssif: unlock on allocation failure Greg Kroah-Hartman
2018-04-11 18:32 ` [PATCH 4.9 018/310] net: cdc_ncm: Fix TX zero padding Greg Kroah-Hartman
2018-04-11 18:32 ` [PATCH 4.9 019/310] net: ethernet: ti: cpsw: adjust cpsw fifos depth for fullduplex flow control Greg Kroah-Hartman
2018-04-11 18:32 ` [PATCH 4.9 020/310] lockd: fix lockd shutdown race Greg Kroah-Hartman
2018-04-11 18:32 ` [PATCH 4.9 021/310] drivers/misc/vmw_vmci/vmci_queue_pair.c: fix a couple integer overflow tests Greg Kroah-Hartman
2018-04-11 18:32 ` [PATCH 4.9 022/310] pidns: disable pid allocation if pid_ns_prepare_proc() is failed in alloc_pid() Greg Kroah-Hartman
2018-04-11 19:27   ` Eric W. Biederman
2018-04-12  8:25     ` Greg Kroah-Hartman
2018-04-11 18:32 ` [PATCH 4.9 023/310] s390: move _text symbol to address higher than zero Greg Kroah-Hartman
2018-04-11 18:32 ` [PATCH 4.9 024/310] net/mlx4_en: Avoid adding steering rules with invalid ring Greg Kroah-Hartman
2018-04-11 18:32 ` [PATCH 4.9 025/310] qed: Correct doorbell configuration for !4Kb pages Greg Kroah-Hartman
2018-04-11 18:32 ` [PATCH 4.9 026/310] NFSv4.1: Work around a Linux server bug Greg Kroah-Hartman
2018-04-11 18:32 ` [PATCH 4.9 027/310] CIFS: silence lockdep splat in cifs_relock_file() Greg Kroah-Hartman
2018-04-11 18:32 ` [PATCH 4.9 028/310] perf/callchain: Force USER_DS when invoking perf_callchain_user() Greg Kroah-Hartman
2018-04-11 18:32 ` [PATCH 4.9 029/310] blk-mq: NVMe 512B/4K+T10 DIF/DIX format returns I/O error on dd with split op Greg Kroah-Hartman
2018-04-11 18:32 ` [PATCH 4.9 030/310] net: qca_spi: Fix alignment issues in rx path Greg Kroah-Hartman
2018-04-11 18:32 ` [PATCH 4.9 031/310] netxen_nic: set rcode to the return status from the call to netxen_issue_cmd Greg Kroah-Hartman
2018-04-11 18:32 ` [PATCH 4.9 032/310] mdio: mux: Correct mdio_mux_init error path issues Greg Kroah-Hartman
2018-04-11 18:32 ` [PATCH 4.9 033/310] Input: elan_i2c - check if device is there before really probing Greg Kroah-Hartman
2018-04-11 18:32 ` [PATCH 4.9 034/310] Input: elantech - force relative mode on a certain module Greg Kroah-Hartman
2018-04-11 18:32 ` [PATCH 4.9 035/310] KVM: PPC: Book3S PR: Check copy_to/from_user return values Greg Kroah-Hartman
2018-04-11 18:32 ` [PATCH 4.9 036/310] irqchip/mbigen: Fix the clear register offset calculation Greg Kroah-Hartman
2018-04-11 18:32 ` [PATCH 4.9 037/310] vmxnet3: ensure that adapter is in proper state during force_close Greg Kroah-Hartman
2018-04-11 18:32 ` [PATCH 4.9 038/310] mm, vmstat: Remove spurious WARN() during zoneinfo print Greg Kroah-Hartman
2018-04-11 18:32 ` [PATCH 4.9 039/310] SMB2: Fix share type handling Greg Kroah-Hartman
2018-04-11 18:32 ` [PATCH 4.9 040/310] bus: brcmstb_gisb: Use register offsets with writes too Greg Kroah-Hartman
2018-04-11 18:33 ` [PATCH 4.9 041/310] bus: brcmstb_gisb: correct support for 64-bit address output Greg Kroah-Hartman
2018-04-11 18:33 ` [PATCH 4.9 042/310] PowerCap: Fix an error code in powercap_register_zone() Greg Kroah-Hartman
2018-04-11 18:33 ` Greg Kroah-Hartman [this message]
2018-04-11 18:33 ` [PATCH 4.9 044/310] ARM: dts: imx53-qsrb: Pulldown PMIC IRQ pin Greg Kroah-Hartman
2018-04-11 18:33 ` [PATCH 4.9 045/310] staging: wlan-ng: prism2mgmt.c: fixed a double endian conversion before calling hfa384x_drvr_setconfig16, also fixes relative sparse warning Greg Kroah-Hartman
2018-04-11 18:33 ` [PATCH 4.9 046/310] clk: renesas: rcar-gen2: Fix PLL0 on R-Car V2H and E2 Greg Kroah-Hartman
2018-04-11 18:33 ` [PATCH 4.9 047/310] x86/tsc: Provide tsc=unstable boot parameter Greg Kroah-Hartman
2018-04-11 18:33 ` [PATCH 4.9 048/310] powerpc/modules: If mprofile-kernel is enabled add it to vermagic Greg Kroah-Hartman
2018-04-11 18:33 ` [PATCH 4.9 049/310] ARM: dts: imx6qdl-wandboard: Fix audio channel swap Greg Kroah-Hartman
2018-04-11 18:33 ` [PATCH 4.9 050/310] i2c: mux: reg: put away the parent i2c adapter on probe failure Greg Kroah-Hartman
2018-04-11 18:33 ` [PATCH 4.9 051/310] arm64: perf: Ignore exclude_hv when kernel is running in HYP Greg Kroah-Hartman
2018-04-11 18:33 ` [PATCH 4.9 052/310] mdio: mux: fix device_node_continue.cocci warnings Greg Kroah-Hartman
2018-04-11 18:33 ` [PATCH 4.9 053/310] ipv6: avoid dad-failures for addresses with NODAD Greg Kroah-Hartman
2018-04-11 18:33 ` [PATCH 4.9 054/310] async_tx: Fix DMA_PREP_FENCE usage in do_async_gen_syndrome() Greg Kroah-Hartman
2018-04-11 18:33 ` [PATCH 4.9 055/310] KVM: arm: Restore banked registers and physical timer access on hyp_panic() Greg Kroah-Hartman
2018-04-11 18:33 ` [PATCH 4.9 056/310] KVM: arm64: Restore host " Greg Kroah-Hartman
2018-04-11 18:33 ` [PATCH 4.9 057/310] usb: dwc3: keystone: check return value Greg Kroah-Hartman
2018-04-11 18:33 ` [PATCH 4.9 058/310] btrfs: fix incorrect error return ret being passed to mapping_set_error Greg Kroah-Hartman
2018-04-11 18:33 ` [PATCH 4.9 059/310] ata: libahci: properly propagate return value of platform_get_irq() Greg Kroah-Hartman
2018-04-11 18:33 ` [PATCH 4.9 060/310] ipmr: vrf: Find VIFs using the actual device Greg Kroah-Hartman
2018-04-11 18:33 ` [PATCH 4.9 061/310] uio: fix incorrect memory leak cleanup Greg Kroah-Hartman
2018-04-11 18:33 ` [PATCH 4.9 062/310] neighbour: update neigh timestamps iff update is effective Greg Kroah-Hartman
2018-04-11 18:33 ` [PATCH 4.9 063/310] arp: honour gratuitous ARP _replies_ Greg Kroah-Hartman
2018-04-11 18:33 ` [PATCH 4.9 064/310] ARM: dts: rockchip: fix rk322x i2s1 pinctrl error Greg Kroah-Hartman
2018-04-11 18:33 ` [PATCH 4.9 065/310] usb: chipidea: properly handle host or gadget initialization failure Greg Kroah-Hartman
2018-04-11 18:33 ` [PATCH 4.9 066/310] [media] pxa_camera: fix module remove codepath for v4l2 clock Greg Kroah-Hartman
2018-04-11 18:33 ` [PATCH 4.9 067/310] USB: ene_usb6250: fix first command execution Greg Kroah-Hartman
2018-04-11 18:33 ` [PATCH 4.9 068/310] net: x25: fix one potential use-after-free issue Greg Kroah-Hartman
2018-04-11 18:33 ` [PATCH 4.9 069/310] USB: ene_usb6250: fix SCSI residue overwriting Greg Kroah-Hartman
2018-04-11 18:33 ` [PATCH 4.9 070/310] serial: 8250: omap: Disable DMA for console UART Greg Kroah-Hartman
2018-04-11 18:33 ` [PATCH 4.9 071/310] serial: sh-sci: Fix race condition causing garbage during shutdown Greg Kroah-Hartman
2018-04-11 18:33 ` [PATCH 4.9 072/310] net/wan/fsl_ucc_hdlc: fix unitialized variable warnings Greg Kroah-Hartman
2018-04-11 18:33 ` [PATCH 4.9 073/310] net/wan/fsl_ucc_hdlc: fix incorrect memory allocation Greg Kroah-Hartman
2018-04-11 18:33 ` [PATCH 4.9 074/310] fsl/qe: add bit description for SYNL register for GUMR Greg Kroah-Hartman
2018-04-11 18:33 ` [PATCH 4.9 075/310] sh_eth: Use platform device for printing before register_netdev() Greg Kroah-Hartman
2018-04-11 18:33 ` [PATCH 4.9 076/310] mlxsw: spectrum: Avoid possible NULL pointer dereference Greg Kroah-Hartman
2018-04-11 18:33 ` [PATCH 4.9 077/310] scsi: csiostor: fix use after free in csio_hw_use_fwconfig() Greg Kroah-Hartman
2018-04-11 18:33 ` [PATCH 4.9 078/310] powerpc/mm: Fix virt_addr_valid() etc. on 64-bit hash Greg Kroah-Hartman
2018-04-11 18:33 ` [PATCH 4.9 079/310] ath5k: fix memory leak on buf on failed eeprom read Greg Kroah-Hartman
2018-04-11 18:33 ` [PATCH 4.9 080/310] selftests/powerpc: Fix TM resched DSCR test with some compilers Greg Kroah-Hartman
2018-04-11 18:33 ` [PATCH 4.9 081/310] xfrm: fix state migration copy replay sequence numbers Greg Kroah-Hartman
2018-04-11 18:33 ` [PATCH 4.9 082/310] ASoC: simple-card: fix mic jack initialization Greg Kroah-Hartman
2018-04-11 18:33 ` [PATCH 4.9 083/310] iio: hi8435: avoid garbage event at first enable Greg Kroah-Hartman
2018-04-11 18:33 ` [PATCH 4.9 084/310] iio: hi8435: cleanup reset gpio Greg Kroah-Hartman
2018-04-11 18:33 ` [PATCH 4.9 085/310] iio: light: rpr0521 poweroff for probe fails Greg Kroah-Hartman
2018-04-11 18:33 ` [PATCH 4.9 086/310] ext4: handle the rest of ext4_mb_load_buddy() ENOMEM errors Greg Kroah-Hartman
2018-04-11 18:33 ` [PATCH 4.9 087/310] md-cluster: fix potential lock issue in add_new_disk Greg Kroah-Hartman
2018-04-11 18:33 ` [PATCH 4.9 088/310] ARM: davinci: da8xx: Create DSP device only when assigned memory Greg Kroah-Hartman
2018-04-11 18:33 ` [PATCH 4.9 089/310] ray_cs: Avoid reading past end of buffer Greg Kroah-Hartman
2018-04-11 18:33 ` [PATCH 4.9 090/310] net/wan/fsl_ucc_hdlc: fix muram allocation error Greg Kroah-Hartman
2018-04-11 18:33 ` [PATCH 4.9 091/310] leds: pca955x: Correct I2C Functionality Greg Kroah-Hartman
2018-04-11 18:33 ` [PATCH 4.9 092/310] perf/core: Fix error handling in perf_event_alloc() Greg Kroah-Hartman
2018-04-11 18:33 ` [PATCH 4.9 093/310] sched/numa: Use down_read_trylock() for the mmap_sem Greg Kroah-Hartman
2018-04-11 18:33 ` [PATCH 4.9 094/310] gpio: crystalcove: Do not write regular gpio registers for virtual GPIOs Greg Kroah-Hartman
2018-04-11 18:33 ` [PATCH 4.9 095/310] net/mlx5: Tolerate irq_set_affinity_hint() failures Greg Kroah-Hartman
2018-04-11 18:33 ` [PATCH 4.9 096/310] selinux: do not check open permission on sockets Greg Kroah-Hartman
2018-04-11 18:33 ` [PATCH 4.9 097/310] block: fix an error code in add_partition() Greg Kroah-Hartman
2018-04-11 18:33 ` [PATCH 4.9 098/310] mlx5: fix bug reading rss_hash_type from CQE Greg Kroah-Hartman
2018-04-11 18:33 ` [PATCH 4.9 099/310] net: ieee802154: fix net_device reference release too early Greg Kroah-Hartman
2018-04-11 18:33 ` [PATCH 4.9 100/310] libceph: NULL deref on crush_decode() error path Greg Kroah-Hartman
2018-04-11 18:34 ` [PATCH 4.9 101/310] perf report: Fix off-by-one for non-activation frames Greg Kroah-Hartman
2018-04-11 18:34 ` [PATCH 4.9 102/310] netfilter: ctnetlink: fix incorrect nf_ct_put during hash resize Greg Kroah-Hartman
2018-04-11 18:34 ` [PATCH 4.9 103/310] pNFS/flexfiles: missing error code in ff_layout_alloc_lseg() Greg Kroah-Hartman
2018-04-11 18:34 ` [PATCH 4.9 104/310] ASoC: rsnd: SSI PIO adjust to 24bit mode Greg Kroah-Hartman
2018-04-11 18:34 ` [PATCH 4.9 105/310] scsi: bnx2fc: fix race condition in bnx2fc_get_host_stats() Greg Kroah-Hartman
2018-04-11 18:34 ` [PATCH 4.9 106/310] fix race in drivers/char/random.c:get_reg() Greg Kroah-Hartman
2018-04-11 18:34 ` [PATCH 4.9 107/310] ext4: fix off-by-one on max nr_pages in ext4_find_unwritten_pgoff() Greg Kroah-Hartman
2018-04-11 18:34 ` [PATCH 4.9 108/310] ARM64: PCI: Fix struct acpi_pci_root_ops allocation failure path Greg Kroah-Hartman
2018-04-11 18:34 ` [PATCH 4.9 109/310] tcp: better validation of received ack sequences Greg Kroah-Hartman
2018-04-11 18:34 ` [PATCH 4.9 110/310] net: move somaxconn init from sysctl code Greg Kroah-Hartman
2018-04-11 18:34 ` [PATCH 4.9 111/310] Input: elan_i2c - clear INT before resetting controller Greg Kroah-Hartman
2018-04-11 18:34 ` [PATCH 4.9 112/310] bonding: Dont update slave->link until ready to commit Greg Kroah-Hartman
2018-04-11 18:34 ` [PATCH 4.9 113/310] cpuhotplug: Link lock stacks for hotplug callbacks Greg Kroah-Hartman
2018-04-11 18:34 ` [PATCH 4.9 114/310] PCI/msi: fix the pci_alloc_irq_vectors_affinity stub Greg Kroah-Hartman
2018-04-11 18:34 ` [PATCH 4.9 115/310] KVM: X86: Fix preempt the preemption timer cancel Greg Kroah-Hartman
2018-04-11 18:34 ` [PATCH 4.9 116/310] KVM: nVMX: Fix handling of lmsw instruction Greg Kroah-Hartman
2018-04-11 18:34 ` [PATCH 4.9 117/310] net: llc: add lock_sock in llc_ui_bind to avoid a race condition Greg Kroah-Hartman
2018-04-11 18:34 ` [PATCH 4.9 118/310] drm/msm: Take the mutex before calling msm_gem_new_impl Greg Kroah-Hartman
2018-04-11 18:34 ` [PATCH 4.9 119/310] i40iw: Fix sequence number for the first partial FPDU Greg Kroah-Hartman
2018-04-11 18:34 ` [PATCH 4.9 120/310] i40iw: Correct Q1/XF object count equation Greg Kroah-Hartman
2018-04-11 18:34 ` [PATCH 4.9 121/310] ARM: dts: ls1021a: add "fsl,ls1021a-esdhc" compatible string to esdhc node Greg Kroah-Hartman
2018-04-11 18:34 ` [PATCH 4.9 122/310] thermal: power_allocator: fix one race condition issue for thermal_instances list Greg Kroah-Hartman
2018-04-11 18:34 ` [PATCH 4.9 123/310] perf probe: Add warning message if there is unexpected event name Greg Kroah-Hartman
2018-04-11 18:34 ` [PATCH 4.9 124/310] l2tp: fix missing print session offset info Greg Kroah-Hartman
2018-04-11 18:34 ` [PATCH 4.9 125/310] rds; Reset rs->rs_bound_addr in rds_add_bound() failure path Greg Kroah-Hartman
2018-04-11 18:34 ` [PATCH 4.9 126/310] ACPI / video: Default lcd_only to true on Win8-ready and newer machines Greg Kroah-Hartman
2018-04-11 18:34 ` [PATCH 4.9 127/310] net/mlx4_en: Change default QoS settings Greg Kroah-Hartman
2018-04-11 18:34 ` [PATCH 4.9 128/310] VFS: close race between getcwd() and d_move() Greg Kroah-Hartman
2018-04-11 18:34 ` [PATCH 4.9 129/310] PM / devfreq: Fix potential NULL pointer dereference in governor_store Greg Kroah-Hartman
2018-04-11 18:34 ` [PATCH 4.9 130/310] hwmon: (ina2xx) Make calibration register value fixed Greg Kroah-Hartman
2018-04-11 18:34 ` [PATCH 4.9 131/310] media: videobuf2-core: dont go out of the buffer range Greg Kroah-Hartman
2018-04-11 18:34 ` [PATCH 4.9 132/310] ASoC: Intel: Skylake: Disable clock gating during firmware and library download Greg Kroah-Hartman
2018-04-11 18:34 ` [PATCH 4.9 133/310] ASoC: Intel: cht_bsw_rt5645: Analog Mic support Greg Kroah-Hartman
2018-04-11 18:34 ` [PATCH 4.9 134/310] scsi: libiscsi: Allow sd_shutdown on bad transport Greg Kroah-Hartman
2018-04-11 18:34 ` [PATCH 4.9 135/310] scsi: mpt3sas: Proper handling of set/clear of "ATA command pending" flag Greg Kroah-Hartman
2018-04-11 18:34 ` [PATCH 4.9 136/310] irqchip/gic-v3: Fix the driver probe() fail due to disabled GICC entry Greg Kroah-Hartman
2018-04-11 18:34 ` [PATCH 4.9 137/310] ACPI: EC: Fix debugfs_create_*() usage Greg Kroah-Hartman
2018-04-11 18:34 ` [PATCH 4.9 138/310] mac80211: Fix setting TX power on monitor interfaces Greg Kroah-Hartman
2018-04-11 18:34 ` [PATCH 4.9 139/310] vfb: fix video mode and line_length being set when loaded Greg Kroah-Hartman
2018-04-11 18:34 ` [PATCH 4.9 140/310] gpio: label descriptors using the device name Greg Kroah-Hartman
2018-04-11 18:34 ` [PATCH 4.9 141/310] IB/rdmavt: Allocate CQ memory on the correct node Greg Kroah-Hartman
2018-04-11 18:34 ` [PATCH 4.9 142/310] blk-mq: fix race between updating nr_hw_queues and switching io sched Greg Kroah-Hartman
2018-04-11 18:34 ` [PATCH 4.9 143/310] backlight: tdo24m: Fix the SPI CS between transfers Greg Kroah-Hartman
2018-04-11 18:34 ` [PATCH 4.9 144/310] pinctrl: baytrail: Enable glitch filter for GPIOs used as interrupts Greg Kroah-Hartman
2018-04-11 18:34 ` [PATCH 4.9 145/310] ASoC: Intel: sst: Fix the return value of sst_send_byte_stream_mrfld() Greg Kroah-Hartman
2018-04-11 18:34 ` [PATCH 4.9 146/310] rt2x00: do not pause queue unconditionally on error path Greg Kroah-Hartman
2018-04-11 18:34 ` [PATCH 4.9 147/310] wl1251: check return from call to wl1251_acx_arp_ip_filter Greg Kroah-Hartman
2018-04-11 18:34 ` [PATCH 4.9 148/310] hdlcdrv: Fix divide by zero in hdlcdrv_ioctl Greg Kroah-Hartman
2018-04-11 18:34 ` [PATCH 4.9 149/310] x86/efi: Disable runtime services on kexec kernel if booted with efi=old_map Greg Kroah-Hartman
2018-04-11 18:34 ` [PATCH 4.9 150/310] netfilter: conntrack: dont call iter for non-confirmed conntracks Greg Kroah-Hartman
2018-04-11 18:34 ` [PATCH 4.9 151/310] HID: i2c: Call acpi_device_fix_up_power for ACPI-enumerated devices Greg Kroah-Hartman
2018-04-11 18:34 ` [PATCH 4.9 152/310] ovl: filter trusted xattr for non-admin Greg Kroah-Hartman
2018-04-11 18:34 ` [PATCH 4.9 153/310] powerpc/[booke|4xx]: Dont clobber TCR[WP] when setting TCR[DIE] Greg Kroah-Hartman
2018-04-11 18:34 ` [PATCH 4.9 154/310] dmaengine: imx-sdma: Handle return value of clk_prepare_enable Greg Kroah-Hartman
2018-04-11 18:34 ` [PATCH 4.9 155/310] backlight: Report error on failure Greg Kroah-Hartman
2018-04-11 18:34 ` [PATCH 4.9 156/310] arm64: futex: Fix undefined behaviour with FUTEX_OP_OPARG_SHIFT usage Greg Kroah-Hartman
2018-04-11 18:34 ` [PATCH 4.9 157/310] net/mlx5: avoid build warning for uniprocessor Greg Kroah-Hartman
2018-04-11 18:34 ` [PATCH 4.9 158/310] cxgb4: FW upgrade fixes Greg Kroah-Hartman
2018-04-11 18:34 ` [PATCH 4.9 159/310] cxgb4: Fix netdev_features flag Greg Kroah-Hartman
2018-04-11 18:34 ` [PATCH 4.9 160/310] rtc: m41t80: fix SQW dividers override when setting a date Greg Kroah-Hartman
2018-04-11 18:35 ` [PATCH 4.9 161/310] i40evf: fix merge error in older patch Greg Kroah-Hartman
2018-04-11 18:35 ` [PATCH 4.9 162/310] rtc: opal: Handle disabled TPO in opal_get_tpo_time() Greg Kroah-Hartman
2018-04-11 18:35 ` [PATCH 4.9 163/310] rtc: interface: Validate alarm-time before handling rollover Greg Kroah-Hartman
2018-04-11 18:35 ` [PATCH 4.9 164/310] SUNRPC: ensure correct error is reported by xs_tcp_setup_socket() Greg Kroah-Hartman
2018-04-11 18:35 ` [PATCH 4.9 165/310] net: freescale: fix potential null pointer dereference Greg Kroah-Hartman
2018-04-11 18:35 ` [PATCH 4.9 166/310] clk: at91: fix clk-generated parenting Greg Kroah-Hartman
2018-04-11 18:35 ` [PATCH 4.9 167/310] drm/sun4i: Ignore the generic connectors for components Greg Kroah-Hartman
2018-04-11 18:35 ` [PATCH 4.9 168/310] dt-bindings: display: sun4i: Add allwinner,tcon-channel property Greg Kroah-Hartman
2018-04-11 18:35 ` [PATCH 4.9 169/310] mtd: nand: gpmi: Fix gpmi_nand_init() error path Greg Kroah-Hartman
2018-04-11 18:35 ` [PATCH 4.9 170/310] mtd: nand: check ecc->total sanity in nand_scan_tail Greg Kroah-Hartman
2018-04-11 18:35 ` [PATCH 4.9 171/310] KVM: SVM: do not zero out segment attributes if segment is unusable or not present Greg Kroah-Hartman
2018-04-11 18:35 ` [PATCH 4.9 172/310] clk: scpi: fix return type of __scpi_dvfs_round_rate Greg Kroah-Hartman
2018-04-11 18:35 ` [PATCH 4.9 173/310] clk: Fix __set_clk_rates error print-string Greg Kroah-Hartman
2018-04-11 18:35 ` [PATCH 4.9 174/310] powerpc/spufs: Fix coredump of SPU contexts Greg Kroah-Hartman
2018-04-11 18:35 ` [PATCH 4.9 175/310] drm/amdkfd: NULL dereference involving create_process() Greg Kroah-Hartman
2018-04-11 18:35 ` [PATCH 4.9 176/310] ath10k: add BMI parameters to fix calibration from DT/pre-cal Greg Kroah-Hartman
2018-04-11 18:35 ` [PATCH 4.9 177/310] perf trace: Add mmap alias for s390 Greg Kroah-Hartman
2018-04-11 18:35 ` [PATCH 4.9 178/310] qlcnic: Fix a sleep-in-atomic bug in qlcnic_82xx_hw_write_wx_2M and qlcnic_82xx_hw_read_wx_2M Greg Kroah-Hartman
2018-04-11 18:35 ` [PATCH 4.9 179/310] arm64: kernel: restrict /dev/mem read() calls to linear region Greg Kroah-Hartman
2018-04-11 18:35 ` [PATCH 4.9 180/310] mISDN: Fix a sleep-in-atomic bug Greg Kroah-Hartman
2018-04-11 18:35 ` [PATCH 4.9 181/310] net: phy: micrel: Restore led_mode and clk_sel on resume Greg Kroah-Hartman
2018-04-19 11:32   ` Naresh Kamboju
2018-04-19 16:11     ` Leonard Crestez
2018-04-19 18:24       ` Naresh Kamboju
2018-04-19 18:32         ` Florian Fainelli
2018-04-19 19:05           ` Leonard Crestez
2018-07-11 20:15             ` Dan Rue
2018-07-12  6:27               ` Greg Kroah-Hartman
2018-04-11 18:35 ` [PATCH 4.9 182/310] RDMA/iw_cxgb4: Avoid touch after free error in ARP failure handlers Greg Kroah-Hartman
2018-04-11 18:35 ` [PATCH 4.9 183/310] RDMA/hfi1: fix array termination by appending NULL to attr array Greg Kroah-Hartman
2018-04-11 18:35 ` [PATCH 4.9 184/310] drm/omap: fix tiled buffer stride calculations Greg Kroah-Hartman
2018-04-11 18:35 ` [PATCH 4.9 185/310] powerpc/8xx: fix mpc8xx_get_irq() return on no irq Greg Kroah-Hartman
2018-04-11 18:35 ` [PATCH 4.9 186/310] cxgb4: fix incorrect cim_la output for T6 Greg Kroah-Hartman
2018-04-11 18:35 ` [PATCH 4.9 187/310] Fix serial console on SNI RM400 machines Greg Kroah-Hartman
2018-04-11 18:35 ` [PATCH 4.9 188/310] bio-integrity: Do not allocate integrity context for bio w/o data Greg Kroah-Hartman
2018-04-11 18:35 ` [PATCH 4.9 189/310] ip6_tunnel: fix traffic class routing for tunnels Greg Kroah-Hartman
2018-04-11 18:35 ` [PATCH 4.9 190/310] skbuff: return -EMSGSIZE in skb_to_sgvec to prevent overflow Greg Kroah-Hartman
2018-04-11 18:35 ` [PATCH 4.9 191/310] macsec: check return value of skb_to_sgvec always Greg Kroah-Hartman
2018-04-11 18:35 ` [PATCH 4.9 192/310] sit: reload iphdr in ipip6_rcv Greg Kroah-Hartman
2018-04-11 18:35 ` [PATCH 4.9 193/310] net/mlx4: Fix the check in attaching steering rules Greg Kroah-Hartman
2018-04-11 18:35 ` [PATCH 4.9 194/310] net/mlx4: Check if Granular QoS per VF has been enabled before updating QP qos_vport Greg Kroah-Hartman
2018-04-11 18:35 ` [PATCH 4.9 195/310] perf header: Set proper module name when build-id event found Greg Kroah-Hartman
2018-04-11 18:35 ` [PATCH 4.9 196/310] perf report: Ensure the perf DSO mapping matches what libdw sees Greg Kroah-Hartman
2018-04-11 18:35 ` [PATCH 4.9 197/310] iwlwifi: mvm: fix firmware debug restart recording Greg Kroah-Hartman
2018-04-11 18:35 ` [PATCH 4.9 198/310] watchdog: f71808e_wdt: Add F71868 support Greg Kroah-Hartman
2018-04-11 18:35 ` [PATCH 4.9 199/310] iwlwifi: mvm: Fix command queue number on d0i3 flow Greg Kroah-Hartman
2018-04-11 18:35 ` [PATCH 4.9 200/310] iwlwifi: tt: move ucode_loaded check under mutex Greg Kroah-Hartman
2018-04-11 18:35 ` [PATCH 4.9 201/310] iwlwifi: pcie: only use d0i3 in suspend/resume if system_pm is set to d0i3 Greg Kroah-Hartman
2018-04-11 18:35 ` [PATCH 4.9 202/310] iwlwifi: fix min API version for 7265D, 3168, 8000 and 8265 Greg Kroah-Hartman
2018-04-11 18:35 ` [PATCH 4.9 203/310] tags: honor COMPILED_SOURCE with apart output directory Greg Kroah-Hartman
2018-04-11 18:35 ` [PATCH 4.9 204/310] ARM: dts: qcom: ipq4019: fix i2c_0 node Greg Kroah-Hartman
2018-04-11 18:35 ` [PATCH 4.9 205/310] e1000e: fix race condition around skb_tstamp_tx() Greg Kroah-Hartman
2018-04-11 18:35 ` [PATCH 4.9 206/310] igb: fix race condition with PTP_TX_IN_PROGRESS bits Greg Kroah-Hartman
2018-04-11 18:35 ` [PATCH 4.9 207/310] cxl: Unlock on error in probe Greg Kroah-Hartman
2018-04-11 18:35 ` [PATCH 4.9 208/310] [media] cx25840: fix unchecked return values Greg Kroah-Hartman
2018-04-11 18:35 ` [PATCH 4.9 209/310] [media] mceusb: sporadic RX truncation corruption fix Greg Kroah-Hartman
2018-04-11 18:35 ` [PATCH 4.9 210/310] net: phy: avoid genphy_aneg_done() for PHYs without clause 22 support Greg Kroah-Hartman
2018-04-11 18:35 ` [PATCH 4.9 211/310] ARM: imx: Add MXC_CPU_IMX6ULL and cpu_is_imx6ull Greg Kroah-Hartman
2018-04-11 18:35 ` [PATCH 4.9 212/310] nvme-pci: fix multiple ctrl removal scheduling Greg Kroah-Hartman
2018-04-11 18:35 ` [PATCH 4.9 213/310] nvme: fix hang in remove path Greg Kroah-Hartman
2018-04-11 18:35 ` [PATCH 4.9 214/310] KVM: nVMX: Update vmcs12->guest_linear_address on nested VM-exit Greg Kroah-Hartman
2018-04-11 18:35 ` [PATCH 4.9 215/310] e1000e: Undo e1000e_pm_freeze if __e1000_shutdown fails Greg Kroah-Hartman
2018-04-11 18:35 ` [PATCH 4.9 216/310] perf/core: Correct event creation with PERF_FORMAT_GROUP Greg Kroah-Hartman
2018-04-11 18:35 ` [PATCH 4.9 217/310] sched/deadline: Use the revised wakeup rule for suspending constrained dl tasks Greg Kroah-Hartman
2018-04-11 18:35 ` [PATCH 4.9 218/310] MIPS: mm: fixed mappings: correct initialisation Greg Kroah-Hartman
2018-04-11 18:35 ` [PATCH 4.9 219/310] MIPS: mm: adjust PKMAP location Greg Kroah-Hartman
2018-04-11 18:35 ` [PATCH 4.9 220/310] MIPS: kprobes: flush_insn_slot should flush only if probe initialised Greg Kroah-Hartman
2018-04-11 18:36 ` [PATCH 4.9 221/310] ARM: dts: armadillo800eva: Split LCD mux and gpio Greg Kroah-Hartman
2018-04-11 18:36 ` [PATCH 4.9 222/310] Fix loop device flush before configure v3 Greg Kroah-Hartman
2018-04-11 18:36 ` [PATCH 4.9 223/310] net: emac: fix reset timeout with AR8035 phy Greg Kroah-Hartman
2018-04-11 18:36 ` [PATCH 4.9 224/310] perf tools: Decompress kernel module when reading DSO data Greg Kroah-Hartman
2018-04-11 18:36 ` [PATCH 4.9 225/310] perf tests: Decompress kernel module before objdump Greg Kroah-Hartman
2018-04-11 18:36 ` [PATCH 4.9 226/310] skbuff: only inherit relevant tx_flags Greg Kroah-Hartman
2018-04-11 18:36 ` [PATCH 4.9 227/310] xen: avoid type warning in xchg_xen_ulong Greg Kroah-Hartman
2018-04-11 18:36 ` [PATCH 4.9 228/310] X.509: Fix error code in x509_cert_parse() Greg Kroah-Hartman
2018-04-11 18:36 ` [PATCH 4.9 229/310] pinctrl: meson-gxbb: remove non-existing pin GPIOX_22 Greg Kroah-Hartman
2018-04-11 18:36 ` [PATCH 4.9 230/310] coresight: Fix reference count for software sources Greg Kroah-Hartman
2018-04-11 18:36 ` [PATCH 4.9 231/310] coresight: tmc: Configure DMA mask appropriately Greg Kroah-Hartman
2018-04-11 18:36 ` [PATCH 4.9 232/310] stmmac: fix ptp header for GMAC3 hw timestamp Greg Kroah-Hartman
2018-04-11 18:36 ` [PATCH 4.9 233/310] geneve: add missing rx stats accounting Greg Kroah-Hartman
2018-04-11 18:36 ` [PATCH 4.9 234/310] crypto: omap-sham - buffer handling fixes for hashing later Greg Kroah-Hartman
2018-04-11 18:36 ` [PATCH 4.9 235/310] crypto: omap-sham - fix closing of hash with separate finalize call Greg Kroah-Hartman
2018-04-11 18:36 ` [PATCH 4.9 236/310] bnx2x: Allow vfs to disable txvlan offload Greg Kroah-Hartman
2018-04-11 18:36 ` [PATCH 4.9 237/310] sctp: fix recursive locking warning in sctp_do_peeloff Greg Kroah-Hartman
2018-04-11 18:36 ` [PATCH 4.9 238/310] net: fec: Add a fec_enet_clear_ethtool_stats() stub for CONFIG_M5272 Greg Kroah-Hartman
2018-04-11 18:36 ` [PATCH 4.9 239/310] sparc64: ldc abort during vds iso boot Greg Kroah-Hartman
2018-04-11 18:36 ` [PATCH 4.9 240/310] iio: magnetometer: st_magn_spi: fix spi_device_id table Greg Kroah-Hartman
2018-04-11 18:36 ` [PATCH 4.9 241/310] net: ena: fix rare uncompleted admin command false alarm Greg Kroah-Hartman
2018-04-11 18:36 ` [PATCH 4.9 242/310] net: ena: fix race condition between submit and completion admin command Greg Kroah-Hartman
2018-04-11 18:36 ` [PATCH 4.9 243/310] net: ena: add missing return when ena_com_get_io_handlers() fails Greg Kroah-Hartman
2018-04-11 18:36 ` [PATCH 4.9 244/310] net: ena: add missing unmap bars on device removal Greg Kroah-Hartman
2018-04-11 18:36 ` [PATCH 4.9 245/310] net: ena: disable admin msix while working in polling mode Greg Kroah-Hartman
2018-04-11 18:36 ` [PATCH 4.9 246/310] clk: meson: meson8b: add compatibles for Meson8 and Meson8m2 Greg Kroah-Hartman
2018-04-11 18:36 ` [PATCH 4.9 247/310] Bluetooth: Send HCI Set Event Mask Page 2 command only when needed Greg Kroah-Hartman
2018-04-11 18:36 ` [PATCH 4.9 248/310] cpuidle: dt: Add missing of_node_put() Greg Kroah-Hartman
2018-04-11 18:36 ` [PATCH 4.9 249/310] ACPICA: OSL: Add support to exclude stdarg.h Greg Kroah-Hartman
2018-04-11 18:36 ` [PATCH 4.9 250/310] ACPICA: Events: Add runtime stub support for event APIs Greg Kroah-Hartman
2018-04-11 18:36 ` [PATCH 4.9 251/310] ACPICA: Disassembler: Abort on an invalid/unknown AML opcode Greg Kroah-Hartman
2018-04-11 18:36 ` [PATCH 4.9 252/310] s390/dasd: fix hanging safe offline Greg Kroah-Hartman
2018-04-11 18:36 ` [PATCH 4.9 253/310] vxlan: dont migrate permanent fdb entries during learn Greg Kroah-Hartman
2018-04-11 18:36 ` [PATCH 4.9 254/310] hsr: fix incorrect warning Greg Kroah-Hartman
2018-04-11 18:36 ` [PATCH 4.9 255/310] selftests: kselftest_harness: Fix compile warning Greg Kroah-Hartman
2018-04-11 18:36 ` [PATCH 4.9 256/310] drm/vc4: Fix resource leak in vc4_get_hang_state_ioctl() in error handling path Greg Kroah-Hartman
2018-04-11 18:36 ` [PATCH 4.9 257/310] bcache: stop writeback thread after detaching Greg Kroah-Hartman
2018-04-11 18:36 ` [PATCH 4.9 258/310] bcache: segregate flash only volume write streams Greg Kroah-Hartman
2018-04-11 18:36 ` [PATCH 4.9 259/310] scsi: libsas: fix memory leak in sas_smp_get_phy_events() Greg Kroah-Hartman
2018-04-11 18:36 ` [PATCH 4.9 260/310] scsi: libsas: fix error when getting phy events Greg Kroah-Hartman
2018-04-11 18:36 ` [PATCH 4.9 261/310] scsi: libsas: initialize sas_phy status according to response of DISCOVER Greg Kroah-Hartman
2018-04-11 18:36 ` [PATCH 4.9 262/310] blk-mq: fix kernel oops in blk_mq_tag_idle() Greg Kroah-Hartman
2018-04-11 18:36 ` [PATCH 4.9 263/310] tty: n_gsm: Allow ADM response in addition to UA for control dlci Greg Kroah-Hartman
2018-04-11 18:36 ` [PATCH 4.9 264/310] EDAC, mv64x60: Fix an error handling path Greg Kroah-Hartman
2018-04-11 18:36 ` [PATCH 4.9 265/310] cxgb4vf: Fix SGE FL buffer initialization logic for 64K pages Greg Kroah-Hartman
2018-04-11 18:36 ` [PATCH 4.9 266/310] sdhci: Advertise 2.0v supply on SDIO host controller Greg Kroah-Hartman
2018-04-11 18:36 ` [PATCH 4.9 267/310] Input: goodix - disable IRQs while suspended Greg Kroah-Hartman
2018-04-11 18:36 ` [PATCH 4.9 268/310] mtd: mtd_oobtest: Handle bitflips during reads Greg Kroah-Hartman
2018-04-11 18:36 ` [PATCH 4.9 269/310] perf tools: Fix copyfile_offset update of output offset Greg Kroah-Hartman
2018-04-11 18:36 ` [PATCH 4.9 270/310] ipsec: check return value of skb_to_sgvec always Greg Kroah-Hartman
2018-04-11 18:36 ` [PATCH 4.9 271/310] rxrpc: " Greg Kroah-Hartman
2018-04-11 18:36 ` [PATCH 4.9 272/310] virtio_net: " Greg Kroah-Hartman
2018-04-11 18:36 ` [PATCH 4.9 273/310] virtio_net: check return value of skb_to_sgvec in one more location Greg Kroah-Hartman
2018-04-11 18:36 ` [PATCH 4.9 274/310] random: use lockless method of accessing and updating f->reg_idx Greg Kroah-Hartman
2018-04-11 18:36 ` [PATCH 4.9 275/310] clk: at91: fix clk-generated compilation Greg Kroah-Hartman
2018-04-11 18:36 ` [PATCH 4.9 276/310] arp: fix arp_filter on l3slave devices Greg Kroah-Hartman
2018-04-11 18:36 ` [PATCH 4.9 277/310] ipv6: the entire IPv6 header chain must fit the first fragment Greg Kroah-Hartman
2018-04-11 18:36 ` [PATCH 4.9 278/310] net: fix possible out-of-bound read in skb_network_protocol() Greg Kroah-Hartman
2018-04-11 18:36 ` [PATCH 4.9 279/310] net/ipv6: Fix route leaking between VRFs Greg Kroah-Hartman
2018-04-11 18:36 ` [PATCH 4.9 280/310] net/ipv6: Increment OUTxxx counters after netfilter hook Greg Kroah-Hartman
2018-04-11 18:37 ` [PATCH 4.9 281/310] netlink: make sure nladdr has correct size in netlink_connect() Greg Kroah-Hartman
2018-04-11 18:37 ` [PATCH 4.9 282/310] net/sched: fix NULL dereference in the error path of tcf_bpf_init() Greg Kroah-Hartman
2018-04-11 18:37 ` [PATCH 4.9 283/310] pptp: remove a buggy dst release in pptp_connect() Greg Kroah-Hartman
2018-04-11 18:37 ` [PATCH 4.9 284/310] r8169: fix setting driver_data after register_netdev Greg Kroah-Hartman
2018-04-11 18:37 ` [PATCH 4.9 285/310] sctp: do not leak kernel memory to user space Greg Kroah-Hartman
2018-04-11 18:37 ` [PATCH 4.9 286/310] sctp: sctp_sockaddr_af must check minimal addr length for AF_INET6 Greg Kroah-Hartman
2018-04-11 18:37 ` [PATCH 4.9 287/310] sky2: Increase D3 delay to sky2 stops working after suspend Greg Kroah-Hartman
2018-04-11 18:37 ` [PATCH 4.9 288/310] vhost: correctly remove wait queue during poll failure Greg Kroah-Hartman
2018-04-11 18:37 ` [PATCH 4.9 289/310] vlan: also check phy_driver ts_info for vlans real device Greg Kroah-Hartman
2018-04-11 18:37 ` [PATCH 4.9 290/310] bonding: fix the err path for dev hwaddr sync in bond_enslave Greg Kroah-Hartman
2018-04-11 18:37 ` [PATCH 4.9 291/310] bonding: move dev_mc_sync after master_upper_dev_link " Greg Kroah-Hartman
2018-04-11 18:37 ` [PATCH 4.9 292/310] bonding: process the err returned by dev_set_allmulti properly " Greg Kroah-Hartman
2018-04-11 18:37 ` [PATCH 4.9 293/310] net: fool proof dev_valid_name() Greg Kroah-Hartman
2018-04-11 18:37 ` [PATCH 4.9 294/310] ip_tunnel: better validate user provided tunnel names Greg Kroah-Hartman
2018-04-11 18:37 ` [PATCH 4.9 295/310] ipv6: sit: " Greg Kroah-Hartman
2018-04-11 18:37 ` [PATCH 4.9 296/310] ip6_gre: " Greg Kroah-Hartman
2018-04-11 18:37 ` [PATCH 4.9 297/310] ip6_tunnel: " Greg Kroah-Hartman
2018-04-11 18:37 ` [PATCH 4.9 298/310] vti6: " Greg Kroah-Hartman
2018-04-11 18:37 ` [PATCH 4.9 299/310] net/mlx5e: Sync netdev vxlan ports at open Greg Kroah-Hartman
2018-04-11 18:37 ` [PATCH 4.9 300/310] net/sched: fix NULL dereference in the error path of tunnel_key_init() Greg Kroah-Hartman
2018-04-11 18:37 ` [PATCH 4.9 301/310] net/sched: fix NULL dereference on the error path of tcf_skbmod_init() Greg Kroah-Hartman
2018-04-11 18:37 ` [PATCH 4.9 302/310] net/mlx4_en: Fix mixed PFC and Global pause user control requests Greg Kroah-Hartman
2018-04-11 18:37 ` [PATCH 4.9 303/310] vhost: validate log when IOTLB is enabled Greg Kroah-Hartman
2018-04-11 18:37 ` [PATCH 4.9 304/310] route: check sysctl_fib_multipath_use_neigh earlier than hash Greg Kroah-Hartman
2018-04-11 18:37 ` [PATCH 4.9 305/310] team: move dev_mc_sync after master_upper_dev_link in team_port_add Greg Kroah-Hartman
2018-04-11 18:37 ` [PATCH 4.9 306/310] vhost_net: add missing lock nesting notation Greg Kroah-Hartman
2018-04-11 18:37 ` [PATCH 4.9 307/310] net/mlx4_core: Fix memory leak while delete slaves resources Greg Kroah-Hartman
2018-04-11 18:37 ` [PATCH 4.9 308/310] strparser: Fix sign of err codes Greg Kroah-Hartman
2018-04-11 18:37 ` [PATCH 4.9 309/310] net sched actions: fix dumping which requires several messages to user space Greg Kroah-Hartman
2018-04-11 18:37 ` [PATCH 4.9 310/310] vrf: Fix use after free and double free in vrf_finish_output Greg Kroah-Hartman
2018-04-11 22:42 ` [PATCH 4.9 000/310] 4.9.94-stable review kernelci.org bot
2018-04-11 22:49 ` Shuah Khan
2018-04-12 13:00 ` Naresh Kamboju
2018-04-12 16:54   ` Greg Kroah-Hartman
2018-04-12 13:16 ` Guenter Roeck

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20180411183624.119278368@linuxfoundation.org \
    --to=gregkh@linuxfoundation.org \
    --cc=alexander.levin@microsoft.com \
    --cc=der.herr@hofr.at \
    --cc=jic23@kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=stable@vger.kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).