linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Luis Henriques <luis.henriques@canonical.com>
To: linux-kernel@vger.kernel.org, stable@vger.kernel.org,
	kernel-team@lists.ubuntu.com
Cc: Viorel Suman <viorel.suman@gmail.com>,
	Jonathan Cameron <jic23@kernel.org>,
	Luis Henriques <luis.henriques@canonical.com>
Subject: [PATCH 3.16.y-ckt 107/144] iio: inv_mpu6050: Clear timestamps fifo while resetting hardware fifo
Date: Tue, 21 Apr 2015 16:31:32 +0100	[thread overview]
Message-ID: <1429630329-21748-108-git-send-email-luis.henriques@canonical.com> (raw)
In-Reply-To: <1429630329-21748-1-git-send-email-luis.henriques@canonical.com>

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

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

From: Viorel Suman <viorel.suman@gmail.com>

commit 4dac0a8eefd55bb1f157d1a5a084531334a2d74c upstream.

A hardware fifo reset always imply an invalidation of the
existing timestamps, so we'll clear timestamps fifo on
successfull hardware fifo reset.

Signed-off-by: Viorel Suman <viorel.suman@gmail.com>
Signed-off-by: Jonathan Cameron <jic23@kernel.org>
Signed-off-by: Luis Henriques <luis.henriques@canonical.com>
---
 drivers/iio/imu/inv_mpu6050/inv_mpu_ring.c | 25 ++++++++++++++-----------
 1 file changed, 14 insertions(+), 11 deletions(-)

diff --git a/drivers/iio/imu/inv_mpu6050/inv_mpu_ring.c b/drivers/iio/imu/inv_mpu6050/inv_mpu_ring.c
index 0cd306a72a6e..ba27e277511f 100644
--- a/drivers/iio/imu/inv_mpu6050/inv_mpu_ring.c
+++ b/drivers/iio/imu/inv_mpu6050/inv_mpu_ring.c
@@ -24,6 +24,16 @@
 #include <linux/poll.h>
 #include "inv_mpu_iio.h"
 
+static void inv_clear_kfifo(struct inv_mpu6050_state *st)
+{
+	unsigned long flags;
+
+	/* take the spin lock sem to avoid interrupt kick in */
+	spin_lock_irqsave(&st->time_stamp_lock, flags);
+	kfifo_reset(&st->timestamps);
+	spin_unlock_irqrestore(&st->time_stamp_lock, flags);
+}
+
 int inv_reset_fifo(struct iio_dev *indio_dev)
 {
 	int result;
@@ -50,6 +60,10 @@ int inv_reset_fifo(struct iio_dev *indio_dev)
 					INV_MPU6050_BIT_FIFO_RST);
 	if (result)
 		goto reset_fifo_fail;
+
+	/* clear timestamps fifo */
+	inv_clear_kfifo(st);
+
 	/* enable interrupt */
 	if (st->chip_config.accl_fifo_enable ||
 	    st->chip_config.gyro_fifo_enable) {
@@ -83,16 +97,6 @@ reset_fifo_fail:
 	return result;
 }
 
-static void inv_clear_kfifo(struct inv_mpu6050_state *st)
-{
-	unsigned long flags;
-
-	/* take the spin lock sem to avoid interrupt kick in */
-	spin_lock_irqsave(&st->time_stamp_lock, flags);
-	kfifo_reset(&st->timestamps);
-	spin_unlock_irqrestore(&st->time_stamp_lock, flags);
-}
-
 /**
  * inv_mpu6050_irq_handler() - Cache a timestamp at each data ready interrupt.
  */
@@ -184,7 +188,6 @@ end_session:
 flush_fifo:
 	/* Flush HW and SW FIFOs. */
 	inv_reset_fifo(indio_dev);
-	inv_clear_kfifo(st);
 	mutex_unlock(&indio_dev->mlock);
 	iio_trigger_notify_done(indio_dev->trig);
 

  parent reply	other threads:[~2015-04-21 15:59 UTC|newest]

Thread overview: 145+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-04-21 15:29 [3.16.y-ckt stable] Linux 3.16.7-ckt10 stable review Luis Henriques
2015-04-21 15:29 ` [PATCH 3.16.y-ckt 001/144] fuse: notify: don't move pages Luis Henriques
2015-04-21 15:29 ` [PATCH 3.16.y-ckt 002/144] fuse: set stolen page uptodate Luis Henriques
2015-04-21 15:29 ` [PATCH 3.16.y-ckt 003/144] dm thin: fix to consistently zero-fill reads to unprovisioned blocks Luis Henriques
2015-04-21 15:29 ` [PATCH 3.16.y-ckt 004/144] dm: hold suspend_lock while suspending device during device deletion Luis Henriques
2015-04-21 15:29 ` [PATCH 3.16.y-ckt 005/144] dm snapshot: suspend origin when doing exception handover Luis Henriques
2015-04-21 15:29 ` [PATCH 3.16.y-ckt 006/144] dm snapshot: suspend merging snapshot " Luis Henriques
2015-04-21 15:29 ` [PATCH 3.16.y-ckt 007/144] dm io: deal with wandering queue limits when handling REQ_DISCARD and REQ_WRITE_SAME Luis Henriques
2015-04-21 15:29 ` [PATCH 3.16.y-ckt 008/144] crypto: arm/aes update NEON AES module to latest OpenSSL version Luis Henriques
2015-04-21 15:29 ` [PATCH 3.16.y-ckt 009/144] mac80211: drop unencrypted frames in mesh fwding Luis Henriques
2015-04-21 15:29 ` [PATCH 3.16.y-ckt 010/144] mac80211: disable u-APSD queues by default Luis Henriques
2015-04-21 15:29 ` [PATCH 3.16.y-ckt 011/144] ASoC: ak4671: Fix control-less DAPM routes Luis Henriques
2015-04-21 15:29 ` [PATCH 3.16.y-ckt 012/144] ASoC: da732x: " Luis Henriques
2015-04-21 15:29 ` [PATCH 3.16.y-ckt 013/144] ASoC: sn95031: " Luis Henriques
2015-04-21 15:29 ` [PATCH 3.16.y-ckt 014/144] virtio_console: init work unconditionally Luis Henriques
2015-04-21 15:30 ` [PATCH 3.16.y-ckt 015/144] virtio_console: avoid config access from irq Luis Henriques
2015-04-21 15:30 ` [PATCH 3.16.y-ckt 016/144] clocksource: efm32: Fix a NULL pointer dereference Luis Henriques
2015-04-21 15:30 ` [PATCH 3.16.y-ckt 017/144] clockevents: sun5i: Fix setup_irq init sequence Luis Henriques
2015-04-21 15:30 ` [PATCH 3.16.y-ckt 018/144] x86/vdso: Fix the build on GCC5 Luis Henriques
2015-04-21 15:30 ` [PATCH 3.16.y-ckt 019/144] ASoC: sgtl5000: remove useless register write clearing CHRGPUMP_POWERUP Luis Henriques
2015-04-21 15:30 ` [PATCH 3.16.y-ckt 020/144] regmap: regcache-rbtree: Fix present bitmap resize Luis Henriques
2015-04-21 15:30 ` [PATCH 3.16.y-ckt 021/144] regulator: Only enable disabled regulators on resume Luis Henriques
2015-04-21 15:30 ` [PATCH 3.16.y-ckt 022/144] regulator: core: Fix enable GPIO reference counting Luis Henriques
2015-04-21 15:30 ` [PATCH 3.16.y-ckt 023/144] Input: psmouse - add psmouse_matches_pnp_id helper function Luis Henriques
2015-04-21 15:30 ` [PATCH 3.16.y-ckt 024/144] Input: synaptics - split synaptics_resolution(), query first Luis Henriques
2015-04-21 15:30 ` [PATCH 3.16.y-ckt 025/144] Input: synaptics - log queried and quirked dimension values Luis Henriques
2015-04-21 15:30 ` [PATCH 3.16.y-ckt 026/144] Input: synaptics - query min dimensions for fw v8.1 Luis Henriques
2015-04-21 15:30 ` [PATCH 3.16.y-ckt 027/144] Input: synaptics - remove obsolete min/max quirk for X240 Luis Henriques
2015-04-21 15:30 ` [PATCH 3.16.y-ckt 028/144] Input: synaptics - support min/max board id in min_max_pnpid_table Luis Henriques
2015-04-21 15:30 ` [PATCH 3.16.y-ckt 029/144] Input: synaptics - skip quirks when post-2013 dimensions Luis Henriques
2015-04-21 15:30 ` [PATCH 3.16.y-ckt 030/144] Input: synaptics - fix middle button on Lenovo 2015 products Luis Henriques
2015-04-21 15:30 ` [PATCH 3.16.y-ckt 031/144] Input: synaptics - handle spurious release of trackstick buttons Luis Henriques
2015-04-21 15:30 ` [PATCH 3.16.y-ckt 032/144] Input: synaptics - do not retrieve the board id on old firmwares Luis Henriques
2015-04-21 15:30 ` [PATCH 3.16.y-ckt 033/144] vt6655: RFbSetPower fix missing rate RATE_12M Luis Henriques
2015-04-21 15:30 ` [PATCH 3.16.y-ckt 034/144] x86/asm/entry/32: Fix user_mode() misuses Luis Henriques
2015-04-21 15:30 ` [PATCH 3.16.y-ckt 035/144] ASoC: adav80x: Fix wrong value references for boolean kctl Luis Henriques
2015-04-21 15:30 ` [PATCH 3.16.y-ckt 036/144] ASoC: ak4641: " Luis Henriques
2015-04-21 15:30 ` [PATCH 3.16.y-ckt 037/144] ASoC: cs4271: " Luis Henriques
2015-04-21 15:30 ` [PATCH 3.16.y-ckt 038/144] ASoC: pcm1681: " Luis Henriques
2015-04-21 15:30 ` [PATCH 3.16.y-ckt 039/144] ASoC: tas5086: " Luis Henriques
2015-04-21 15:30 ` [PATCH 3.16.y-ckt 040/144] ASoC: wm2000: " Luis Henriques
2015-04-21 15:30 ` [PATCH 3.16.y-ckt 041/144] ASoC: wm8731: " Luis Henriques
2015-04-21 15:30 ` [PATCH 3.16.y-ckt 042/144] ASoC: wm8903: " Luis Henriques
2015-04-21 15:30 ` [PATCH 3.16.y-ckt 043/144] ASoC: wm8904: " Luis Henriques
2015-04-21 15:30 ` [PATCH 3.16.y-ckt 044/144] ASoC: wm8955: " Luis Henriques
2015-04-21 15:30 ` [PATCH 3.16.y-ckt 045/144] ASoC: wm8960: " Luis Henriques
2015-04-21 15:30 ` [PATCH 3.16.y-ckt 046/144] usb: phy: am335x-control: check return value of bus_find_device Luis Henriques
2015-04-21 15:30 ` [PATCH 3.16.y-ckt 047/144] crypto: aesni - fix memory usage in GCM decryption Luis Henriques
2015-04-21 15:30 ` [PATCH 3.16.y-ckt 048/144] phy: Find the right match in devm_phy_destroy() Luis Henriques
2015-04-21 15:30 ` [PATCH 3.16.y-ckt 049/144] x86/fpu: Avoid math_state_restore() without used_math() in __restore_xstate_sig() Luis Henriques
2015-04-21 15:30 ` [PATCH 3.16.y-ckt 050/144] x86/fpu: Drop_fpu() should not assume that tsk equals current Luis Henriques
2015-04-21 15:30 ` [PATCH 3.16.y-ckt 051/144] cpuidle: mvebu: Fix the CPU PM notifier usage Luis Henriques
2015-04-21 15:30 ` [PATCH 3.16.y-ckt 052/144] can: kvaser_usb: Fix tx queue start/stop race conditions Luis Henriques
2015-04-21 15:30 ` [PATCH 3.16.y-ckt 053/144] usb: chipidea: otg: add a_alt_hnp_support response for B device Luis Henriques
2015-04-21 15:30 ` [PATCH 3.16.y-ckt 054/144] mac80211: count interfaces correctly for combination checks Luis Henriques
2015-04-21 15:30 ` [PATCH 3.16.y-ckt 055/144] nl80211: ignore HT/VHT capabilities without QoS/WMM Luis Henriques
2015-04-21 15:30 ` [PATCH 3.16.y-ckt 056/144] ALSA: hda - Treat stereo-to-mono mix properly Luis Henriques
2015-04-21 15:30 ` [PATCH 3.16.y-ckt 057/144] pagemap: do not leak physical addresses to non-privileged userspace Luis Henriques
2015-04-21 15:30 ` [PATCH 3.16.y-ckt 058/144] uas: Add US_FL_NO_ATA_1X for Initio Corporation controllers / devices Luis Henriques
2015-04-21 15:30 ` [PATCH 3.16.y-ckt 059/144] usb: common: otg-fsm: only signal connect after switching to peripheral Luis Henriques
2015-04-21 15:30 ` [PATCH 3.16.y-ckt 060/144] of/irq: Fix of_irq_parse_one() returned error codes Luis Henriques
2015-04-21 15:30 ` [PATCH 3.16.y-ckt 061/144] iscsi-target: Avoid early conn_logout_comp for iser connections Luis Henriques
2015-04-21 15:30 ` [PATCH 3.16.y-ckt 062/144] tcm_qla2xxx: Fix incorrect use of __transport_register_session Luis Henriques
2015-04-21 15:30 ` [PATCH 3.16.y-ckt 063/144] target: Fix reference leak in target_get_sess_cmd() error path Luis Henriques
2015-04-21 15:30 ` [PATCH 3.16.y-ckt 064/144] tcm_fc: missing curly braces in ft_invl_hw_context() Luis Henriques
2015-04-21 15:30 ` [PATCH 3.16.y-ckt 065/144] target/pscsi: Fix NULL pointer dereference in get_device_type Luis Henriques
2015-04-21 15:30 ` [PATCH 3.16.y-ckt 066/144] target: Fix virtual LUN=0 target_configure_device failure OOPs Luis Henriques
2015-04-21 15:30 ` [PATCH 3.16.y-ckt 067/144] arm64: Honor __GFP_ZERO in dma allocations Luis Henriques
2015-04-21 15:30 ` [PATCH 3.16.y-ckt 068/144] IB/mlx4: Saturate RoCE port PMA counters in case of overflow Luis Henriques
2015-04-21 15:30 ` [PATCH 3.16.y-ckt 069/144] dmaengine: dw: append MODULE_ALIAS for platform driver Luis Henriques
2015-04-21 15:30 ` [PATCH 3.16.y-ckt 070/144] xfrm: release dst_orig in case of error in xfrm_lookup() Luis Henriques
2015-04-21 15:30 ` [PATCH 3.16.y-ckt 071/144] staging: vt6656: vnt_rf_setpower: fix missing rate RATE_12M Luis Henriques
2015-04-21 15:30 ` [PATCH 3.16.y-ckt 072/144] Btrfs: make xattr replace operations atomic Luis Henriques
2015-04-21 15:30 ` [PATCH 3.16.y-ckt 073/144] x86/microcode/intel: Guard against stack overflow in the loader Luis Henriques
2015-04-21 15:30 ` [PATCH 3.16.y-ckt 074/144] powerpc/smp: Wait until secondaries are active & online Luis Henriques
2015-04-21 15:31 ` [PATCH 3.16.y-ckt 075/144] powerpc/iommu: Remove IOMMU device references via bus notifier Luis Henriques
2015-04-21 15:31 ` [PATCH 3.16.y-ckt 076/144] powerpc/mpc85xx: Add ranges to etsec2 nodes Luis Henriques
2015-04-21 15:31 ` [PATCH 3.16.y-ckt 077/144] IB/core: Avoid leakage from kernel to user space Luis Henriques
2015-04-21 15:31 ` [PATCH 3.16.y-ckt 078/144] timers/tick/broadcast-hrtimer: Fix suspicious RCU usage in idle loop Luis Henriques
2015-04-21 15:31 ` [PATCH 3.16.y-ckt 079/144] ALSA: hda - Add one more node in the EAPD supporting candidate list Luis Henriques
2015-04-21 15:31 ` [PATCH 3.16.y-ckt 080/144] serial: 8250_dw: Fix deadlock in LCR workaround Luis Henriques
2015-04-21 15:31 ` [PATCH 3.16.y-ckt 081/144] drm/i915/bdw: PCI IDs ending in 0xb are ULT Luis Henriques
2015-04-21 15:31 ` [PATCH 3.16.y-ckt 082/144] btrfs: simplify insert_orphan_item Luis Henriques
2015-04-21 15:31 ` [PATCH 3.16.y-ckt 083/144] ARM: sunxi: Have ARCH_SUNXI select RESET_CONTROLLER for clock driver usage Luis Henriques
2015-04-21 15:31 ` [PATCH 3.16.y-ckt 084/144] writeback: add missing INITIAL_JIFFIES init in global_update_bandwidth() Luis Henriques
2015-04-21 15:31 ` [PATCH 3.16.y-ckt 085/144] nbd: fix possible memory leak Luis Henriques
2015-04-21 15:31 ` [PATCH 3.16.y-ckt 086/144] spi: qup: Fix cs-num DT property parsing Luis Henriques
2015-04-21 15:31 ` [PATCH 3.16.y-ckt 087/144] mfd: kempld-core: Fix callback return value check Luis Henriques
2015-04-21 15:31 ` [PATCH 3.16.y-ckt 088/144] KVM: nVMX: mask unrestricted_guest if disabled on L0 Luis Henriques
2015-04-21 15:31 ` [PATCH 3.16.y-ckt 089/144] spi: trigger trace event for message-done before mesg->complete Luis Henriques
2015-04-21 15:31 ` [PATCH 3.16.y-ckt 090/144] regmap: introduce regmap_name to fix syscon regmap trace events Luis Henriques
2015-04-21 15:31 ` [PATCH 3.16.y-ckt 091/144] powerpc/pseries: Little endian fixes for post mobility device tree update Luis Henriques
2015-04-21 15:31 ` [PATCH 3.16.y-ckt 092/144] Fix bug in blk_rq_merge_ok Luis Henriques
2015-04-21 15:31 ` [PATCH 3.16.y-ckt 093/144] net: ethernet: pcnet32: Setup the SRAM and NOUFLO on Am79C97{3, 5} Luis Henriques
2015-04-21 15:31 ` [PATCH 3.16.y-ckt 094/144] powerpc/book3s: Fix the MCE code to use CONFIG_KVM_BOOK3S_64_HANDLER Luis Henriques
2015-04-21 15:31 ` [PATCH 3.16.y-ckt 095/144] perf: Fix irq_work 'tail' recursion Luis Henriques
2015-04-21 15:31 ` [PATCH 3.16.y-ckt 096/144] sched: Fix RLIMIT_RTTIME when PI-boosting to RT Luis Henriques
2015-04-21 15:31 ` [PATCH 3.16.y-ckt 097/144] ALSA: hda - Add dock support for Thinkpad T450s (17aa:5036) Luis Henriques
2015-04-21 15:31 ` [PATCH 3.16.y-ckt 098/144] arm64: Use the reserved TTBR0 if context switching to the init_mm Luis Henriques
2015-04-21 15:31 ` [PATCH 3.16.y-ckt 099/144] selinux: fix sel_write_enforce broken return value Luis Henriques
2015-04-21 15:31 ` [PATCH 3.16.y-ckt 100/144] mm: fix anon_vma->degree underflow in anon_vma endless growing prevention Luis Henriques
2015-04-21 15:31 ` [PATCH 3.16.y-ckt 101/144] mm/memory hotplug: postpone the reset of obsolete pgdat Luis Henriques
2015-04-21 15:31 ` [PATCH 3.16.y-ckt 102/144] hfsplus: fix B-tree corruption after insertion at position 0 Luis Henriques
2015-04-21 15:31 ` [PATCH 3.16.y-ckt 103/144] ARC: SA_SIGINFO ucontext regs off-by-one Luis Henriques
2015-04-21 15:31 ` [PATCH 3.16.y-ckt 104/144] writeback: fix possible underflow in write bandwidth calculation Luis Henriques
2015-04-21 15:31 ` [PATCH 3.16.y-ckt 105/144] ipv6: Don't reduce hop limit for an interface Luis Henriques
2015-04-21 15:31 ` [PATCH 3.16.y-ckt 106/144] iio: fix drivers that check buffer->scan_mask Luis Henriques
2015-04-21 15:31 ` Luis Henriques [this message]
2015-04-21 15:31 ` [PATCH 3.16.y-ckt 108/144] iio: core: Fix double free Luis Henriques
2015-04-21 15:31 ` [PATCH 3.16.y-ckt 109/144] USB: ftdi_sio: Added custom PID for Synapse Wireless product Luis Henriques
2015-04-21 15:31 ` [PATCH 3.16.y-ckt 110/144] iwlwifi: dvm: run INIT firmware again upon .start() Luis Henriques
2015-04-21 15:31 ` [PATCH 3.16.y-ckt 111/144] USB: serial: keyspan_pda: fix Entrega company name spelling Luis Henriques
2015-04-21 15:31 ` [PATCH 3.16.y-ckt 112/144] USB: keyspan_pda: add new device id Luis Henriques
2015-04-21 15:31 ` [PATCH 3.16.y-ckt 113/144] cifs: smb2_clone_range() - exit on unhandled error Luis Henriques
2015-04-21 15:31 ` [PATCH 3.16.y-ckt 114/144] cifs: fix use-after-free bug in find_writable_file Luis Henriques
2015-04-21 15:31 ` [PATCH 3.16.y-ckt 115/144] can: flexcan: Deferred on Regulator return EPROBE_DEFER Luis Henriques
2015-04-21 15:31 ` [PATCH 3.16.y-ckt 116/144] xen/balloon: before adding hotplugged memory, set frames to invalid Luis Henriques
2015-04-21 15:31 ` [PATCH 3.16.y-ckt 117/144] usb: xhci: handle Config Error Change (CEC) in xhci driver Luis Henriques
2015-04-21 15:31 ` [PATCH 3.16.y-ckt 118/144] usb: xhci: apply XHCI_AVOID_BEI quirk to all Intel xHCI controllers Luis Henriques
2015-04-21 15:31 ` [PATCH 3.16.y-ckt 119/144] USB: ftdi_sio: Use jtag quirk for SNAP Connect E10 Luis Henriques
2015-04-21 15:31 ` [PATCH 3.16.y-ckt 120/144] tty: serial: fsl_lpuart: clear receive flag on FIFO flush Luis Henriques
2015-04-21 15:31 ` [PATCH 3.16.y-ckt 121/144] drm/radeon/dpm: fix 120hz handling harder Luis Henriques
2015-04-21 15:31 ` [PATCH 3.16.y-ckt 122/144] radeon: Do not directly dereference pointers to BIOS area Luis Henriques
2015-04-21 15:31 ` [PATCH 3.16.y-ckt 123/144] iio: adc: vf610: use ADC clock within specification Luis Henriques
2015-04-21 15:31 ` [PATCH 3.16.y-ckt 124/144] iio: imu: Use iio_trigger_get for indio_dev->trig assignment Luis Henriques
2015-04-21 15:31 ` [PATCH 3.16.y-ckt 125/144] dmaengine: edma: fix memory leak when terminating running transfers Luis Henriques
2015-04-21 15:31 ` [PATCH 3.16.y-ckt 126/144] dmaengine: omap-dma: Fix memory leak when terminating running transfer Luis Henriques
2015-04-21 15:31 ` [PATCH 3.16.y-ckt 127/144] x86/reboot: Add ASRock Q1900DC-ITX mainboard reboot quirk Luis Henriques
2015-04-21 15:31 ` [PATCH 3.16.y-ckt 128/144] mac80211: fix RX A-MPDU session reorder timer deletion Luis Henriques
2015-04-21 15:31 ` [PATCH 3.16.y-ckt 129/144] IB/uverbs: Prevent integer overflow in ib_umem_get address arithmetic Luis Henriques
2015-04-21 15:31 ` [PATCH 3.16.y-ckt 130/144] net: use for_each_netdev_safe() in rtnl_group_changelink() Luis Henriques
2015-04-21 15:31 ` [PATCH 3.16.y-ckt 131/144] net/mlx4_en: Call register_netdevice in the proper location Luis Henriques
2015-04-21 15:31 ` [PATCH 3.16.y-ckt 132/144] xen-netfront: transmit fully GSO-sized packets Luis Henriques
2015-04-21 15:31 ` [PATCH 3.16.y-ckt 133/144] tcp: fix FRTO undo on cumulative ACK of SACKed range Luis Henriques
2015-04-21 15:31 ` [PATCH 3.16.y-ckt 134/144] KVM: remove redundant assignments in __kvm_set_memory_region Luis Henriques
2015-04-21 15:32 ` [PATCH 3.16.y-ckt 135/144] kvm: commonize allocation of the new memory slots Luis Henriques
2015-04-21 15:32 ` [PATCH 3.16.y-ckt 136/144] kvm: avoid page allocation failure in kvm_set_memory_region() Luis Henriques
2015-04-21 15:32 ` [PATCH 3.16.y-ckt 137/144] hpsa: refine the pci enable/disable handling Luis Henriques
2015-04-21 15:32 ` [PATCH 3.16.y-ckt 138/144] hpsa: add missing pci_set_master in kdump path Luis Henriques
2015-04-21 15:32 ` [PATCH 3.16.y-ckt 139/144] hpsa: fix memory leak in kdump hard reset Luis Henriques
2015-04-21 15:32 ` [PATCH 3.16.y-ckt 140/144] hpsa: turn off interrupts when kdump starts Luis Henriques
2015-04-21 15:32 ` [PATCH 3.16.y-ckt 141/144] sb_edac: Fix erroneous bytes->gigabytes conversion Luis Henriques
2015-04-21 15:32 ` [PATCH 3.16.y-ckt 142/144] sb_edac: avoid INTERNAL ERROR message in EDAC with unspecified channel Luis Henriques
2015-04-21 15:32 ` [PATCH 3.16.y-ckt 143/144] NFS: fix BUG() crash in notify_change() with patch to chown_common() Luis Henriques
2015-04-21 15:32 ` [PATCH 3.16.y-ckt 144/144] tcp: Fix crash in TCP Fast Open Luis Henriques

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=1429630329-21748-108-git-send-email-luis.henriques@canonical.com \
    --to=luis.henriques@canonical.com \
    --cc=jic23@kernel.org \
    --cc=kernel-team@lists.ubuntu.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=stable@vger.kernel.org \
    --cc=viorel.suman@gmail.com \
    /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).