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: Harald Freudenberger <freude@linux.vnet.ibm.com>,
	Herbert Xu <herbert@gondor.apana.org.au>,
	Luis Henriques <luis.henriques@canonical.com>
Subject: [PATCH 3.11 006/121] crypto: s390 - fix des and des3_ede ctr concurrency issue
Date: Fri, 21 Feb 2014 12:47:10 +0000	[thread overview]
Message-ID: <1392986945-9693-7-git-send-email-luis.henriques@canonical.com> (raw)
In-Reply-To: <1392986945-9693-1-git-send-email-luis.henriques@canonical.com>

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

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

From: Harald Freudenberger <freude@linux.vnet.ibm.com>

commit ee97dc7db4cbda33e4241c2d85b42d1835bc8a35 upstream.

In s390 des and 3des ctr mode there is one preallocated page
used to speed up the en/decryption. This page is not protected
against concurrent usage and thus there is a potential of data
corruption with multiple threads.

The fix introduces locking/unlocking the ctr page and a slower
fallback solution at concurrency situations.

Signed-off-by: Harald Freudenberger <freude@linux.vnet.ibm.com>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Signed-off-by: Luis Henriques <luis.henriques@canonical.com>
---
 arch/s390/crypto/des_s390.c | 69 +++++++++++++++++++++++++++++++--------------
 1 file changed, 48 insertions(+), 21 deletions(-)

diff --git a/arch/s390/crypto/des_s390.c b/arch/s390/crypto/des_s390.c
index 4b28089..2d96e68 100644
--- a/arch/s390/crypto/des_s390.c
+++ b/arch/s390/crypto/des_s390.c
@@ -25,6 +25,7 @@
 #define DES3_KEY_SIZE	(3 * DES_KEY_SIZE)
 
 static u8 *ctrblk;
+static DEFINE_SPINLOCK(ctrblk_lock);
 
 struct s390_des_ctx {
 	u8 iv[DES_BLOCK_SIZE];
@@ -368,54 +369,80 @@ static struct crypto_alg cbc_des3_alg = {
 	}
 };
 
+static unsigned int __ctrblk_init(u8 *ctrptr, unsigned int nbytes)
+{
+	unsigned int i, n;
+
+	/* align to block size, max. PAGE_SIZE */
+	n = (nbytes > PAGE_SIZE) ? PAGE_SIZE : nbytes & ~(DES_BLOCK_SIZE - 1);
+	for (i = DES_BLOCK_SIZE; i < n; i += DES_BLOCK_SIZE) {
+		memcpy(ctrptr + i, ctrptr + i - DES_BLOCK_SIZE, DES_BLOCK_SIZE);
+		crypto_inc(ctrptr + i, DES_BLOCK_SIZE);
+	}
+	return n;
+}
+
 static int ctr_desall_crypt(struct blkcipher_desc *desc, long func,
-			    struct s390_des_ctx *ctx, struct blkcipher_walk *walk)
+			    struct s390_des_ctx *ctx,
+			    struct blkcipher_walk *walk)
 {
 	int ret = blkcipher_walk_virt_block(desc, walk, DES_BLOCK_SIZE);
-	unsigned int i, n, nbytes;
-	u8 buf[DES_BLOCK_SIZE];
-	u8 *out, *in;
+	unsigned int n, nbytes;
+	u8 buf[DES_BLOCK_SIZE], ctrbuf[DES_BLOCK_SIZE];
+	u8 *out, *in, *ctrptr = ctrbuf;
+
+	if (!walk->nbytes)
+		return ret;
 
-	memcpy(ctrblk, walk->iv, DES_BLOCK_SIZE);
+	if (spin_trylock(&ctrblk_lock))
+		ctrptr = ctrblk;
+
+	memcpy(ctrptr, walk->iv, DES_BLOCK_SIZE);
 	while ((nbytes = walk->nbytes) >= DES_BLOCK_SIZE) {
 		out = walk->dst.virt.addr;
 		in = walk->src.virt.addr;
 		while (nbytes >= DES_BLOCK_SIZE) {
-			/* align to block size, max. PAGE_SIZE */
-			n = (nbytes > PAGE_SIZE) ? PAGE_SIZE :
-				nbytes & ~(DES_BLOCK_SIZE - 1);
-			for (i = DES_BLOCK_SIZE; i < n; i += DES_BLOCK_SIZE) {
-				memcpy(ctrblk + i, ctrblk + i - DES_BLOCK_SIZE,
-				       DES_BLOCK_SIZE);
-				crypto_inc(ctrblk + i, DES_BLOCK_SIZE);
-			}
-			ret = crypt_s390_kmctr(func, ctx->key, out, in, n, ctrblk);
-			if (ret < 0 || ret != n)
+			if (ctrptr == ctrblk)
+				n = __ctrblk_init(ctrptr, nbytes);
+			else
+				n = DES_BLOCK_SIZE;
+			ret = crypt_s390_kmctr(func, ctx->key, out, in,
+					       n, ctrptr);
+			if (ret < 0 || ret != n) {
+				if (ctrptr == ctrblk)
+					spin_unlock(&ctrblk_lock);
 				return -EIO;
+			}
 			if (n > DES_BLOCK_SIZE)
-				memcpy(ctrblk, ctrblk + n - DES_BLOCK_SIZE,
+				memcpy(ctrptr, ctrptr + n - DES_BLOCK_SIZE,
 				       DES_BLOCK_SIZE);
-			crypto_inc(ctrblk, DES_BLOCK_SIZE);
+			crypto_inc(ctrptr, DES_BLOCK_SIZE);
 			out += n;
 			in += n;
 			nbytes -= n;
 		}
 		ret = blkcipher_walk_done(desc, walk, nbytes);
 	}
-
+	if (ctrptr == ctrblk) {
+		if (nbytes)
+			memcpy(ctrbuf, ctrptr, DES_BLOCK_SIZE);
+		else
+			memcpy(walk->iv, ctrptr, DES_BLOCK_SIZE);
+		spin_unlock(&ctrblk_lock);
+	}
 	/* final block may be < DES_BLOCK_SIZE, copy only nbytes */
 	if (nbytes) {
 		out = walk->dst.virt.addr;
 		in = walk->src.virt.addr;
 		ret = crypt_s390_kmctr(func, ctx->key, buf, in,
-				       DES_BLOCK_SIZE, ctrblk);
+				       DES_BLOCK_SIZE, ctrbuf);
 		if (ret < 0 || ret != DES_BLOCK_SIZE)
 			return -EIO;
 		memcpy(out, buf, nbytes);
-		crypto_inc(ctrblk, DES_BLOCK_SIZE);
+		crypto_inc(ctrbuf, DES_BLOCK_SIZE);
 		ret = blkcipher_walk_done(desc, walk, 0);
+		memcpy(walk->iv, ctrbuf, DES_BLOCK_SIZE);
 	}
-	memcpy(walk->iv, ctrblk, DES_BLOCK_SIZE);
 	return ret;
 }
 
-- 
1.9.0


  parent reply	other threads:[~2014-02-21 14:01 UTC|newest]

Thread overview: 128+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-02-21 12:47 [3.11.y.z extended stable] Linux 3.11.10.5 stable review Luis Henriques
2014-02-21 12:47 ` [PATCH 3.11 001/121] ftrace: Synchronize setting function_trace_op with ftrace_trace_function Luis Henriques
2014-02-21 12:47 ` [PATCH 3.11 002/121] ftrace: Have function graph only trace based on global_ops filters Luis Henriques
2014-02-21 12:47 ` [PATCH 3.11 003/121] irqchip: armada-370-xp: fix IPI race condition Luis Henriques
2014-02-21 12:47 ` [PATCH 3.11 004/121] crypto: s390 - fix concurrency issue in aes-ctr mode Luis Henriques
2014-02-21 12:47 ` [PATCH 3.11 005/121] crypto: s390 - fix des and des3_ede cbc concurrency issue Luis Henriques
2014-02-21 12:47 ` Luis Henriques [this message]
2014-02-21 12:47 ` [PATCH 3.11 007/121] pinctrl: vt8500: Change devicetree data parsing Luis Henriques
2014-02-21 12:47 ` [PATCH 3.11 008/121] ALSA: usb-audio: Add missing kconfig dependecy Luis Henriques
2014-02-21 12:47 ` [PATCH 3.11 009/121] Btrfs: disable snapshot aware defrag for now Luis Henriques
2014-02-21 12:47 ` [PATCH 3.11 010/121] ALSA: hda - Fix silent output on Toshiba Satellite L40 Luis Henriques
2014-02-21 12:47 ` [PATCH 3.11 011/121] [media] Revert "[media] videobuf_vm_{open,close} race fixes" Luis Henriques
2014-02-21 12:47 ` [PATCH 3.11 012/121] [media] mxl111sf: Fix unintentional garbage stack read Luis Henriques
2014-02-21 12:47 ` [PATCH 3.11 013/121] [media] mxl111sf: Fix compile when CONFIG_DVB_USB_MXL111SF is unset Luis Henriques
2014-02-21 12:47 ` [PATCH 3.11 014/121] [media] af9035: add ID [2040:f900] Hauppauge WinTV-MiniStick 2 Luis Henriques
2014-02-21 12:47 ` [PATCH 3.11 015/121] arm64: vdso: prevent ld from aligning PT_LOAD segments to 64k Luis Henriques
2014-02-21 12:47 ` [PATCH 3.11 016/121] intel_pstate: Add Haswell CPU models Luis Henriques
2014-02-21 12:47 ` [PATCH 3.11 017/121] intel_pstate: Improve accuracy by not truncating until final result Luis Henriques
2014-02-21 12:47 ` [PATCH 3.11 018/121] intel_pstate: Correct calculation of min pstate value Luis Henriques
2014-02-21 12:47 ` [PATCH 3.11 019/121] pinctrl: protect pinctrl_list add Luis Henriques
2014-02-21 12:47 ` [PATCH 3.11 020/121] drm/mgag200: fix typo causing bw limits to be ignored on some chips Luis Henriques
2014-02-21 12:47 ` [PATCH 3.11 021/121] ALSA: hda - Add missing mixer widget for AD1983 Luis Henriques
2014-02-21 12:47 ` [PATCH 3.11 022/121] ALSA: hda - Fix missing VREF setup for Mac Pro 1,1 Luis Henriques
2014-02-21 12:47 ` [PATCH 3.11 023/121] drm/vmwgfx: Fix regression caused by "drm/ttm: make ttm reservation calls behave like reservation calls" Luis Henriques
2014-02-21 12:47 ` [PATCH 3.11 024/121] ALSA: hda - Improve loopback path lookups for AD1983 Luis Henriques
2014-02-21 12:47 ` [PATCH 3.11 025/121] genirq: Generic irq chip requires IRQ_DOMAIN Luis Henriques
2014-02-21 12:47 ` [PATCH 3.11 026/121] arm64: add DSB after icache flush in __flush_icache_all() Luis Henriques
2014-02-21 12:47 ` [PATCH 3.11 027/121] arm64: Invalidate the TLB when replacing pmd entries during boot Luis Henriques
2014-02-21 12:47 ` [PATCH 3.11 028/121] arm64: vdso: fix coarse clock handling Luis Henriques
2014-02-21 12:47 ` [PATCH 3.11 029/121] arm64: vdso: update wtm fields for CLOCK_MONOTONIC_COARSE Luis Henriques
2014-02-21 12:47 ` [PATCH 3.11 030/121] SELinux: Fix kernel BUG on empty security contexts Luis Henriques
2014-02-21 12:47 ` [PATCH 3.11 031/121] drm/mgag200,ast,cirrus: fix regression with drm_can_sleep conversion Luis Henriques
2014-02-21 12:47 ` [PATCH 3.11 032/121] pinctrl: do not init debugfs entries for unimplemented functionalities Luis Henriques
2014-02-21 12:59   ` Florian Vaussard
2014-02-24 10:01     ` Luís Henriques
2014-02-21 12:47 ` [PATCH 3.11 033/121] x86, hweight: Fix BUG when booting with CONFIG_GCOV_PROFILE_ALL=y Luis Henriques
2014-02-21 12:47 ` [PATCH 3.11 034/121] mm/swap: fix race on swap_info reuse between swapoff and swapon Luis Henriques
2014-02-21 12:47 ` [PATCH 3.11 035/121] mm: __set_page_dirty_nobuffers() uses spin_lock_irqsave() instead of spin_lock_irq() Luis Henriques
2014-02-21 12:47 ` [PATCH 3.11 036/121] mm: __set_page_dirty uses spin_lock_irqsave instead of spin_lock_irq Luis Henriques
2014-02-21 12:47 ` [PATCH 3.11 037/121] tile: remove compat_sys_lookup_dcookie declaration to fix compile error Luis Henriques
2014-02-21 12:47 ` [PATCH 3.11 038/121] timekeeping: Fix lost updates to tai adjustment Luis Henriques
2014-02-21 12:47 ` [PATCH 3.11 039/121] timekeeping: Fix potential lost pv notification of time change Luis Henriques
2014-02-21 12:47 ` [PATCH 3.11 040/121] timekeeping: Avoid possible deadlock from clock_was_set_delayed Luis Henriques
2014-02-21 12:47 ` [PATCH 3.11 041/121] timekeeping: Fix clock_set/clock_was_set think-o Luis Henriques
2014-02-21 12:47 ` [PATCH 3.11 042/121] timekeeping: Fix CLOCK_TAI timer/nanosleep delays Luis Henriques
2014-02-21 12:47 ` [PATCH 3.11 043/121] timekeeping: Fix missing timekeeping_update in suspend path Luis Henriques
2014-02-21 12:47 ` [PATCH 3.11 044/121] rtc-cmos: Add an alarm disable quirk Luis Henriques
2014-02-21 12:47 ` [PATCH 3.11 045/121] 9p/trans_virtio.c: Fix broken zero-copy on vmalloc() buffers Luis Henriques
2014-02-21 12:47 ` [PATCH 3.11 046/121] staging:iio:ad799x fix error_free_irq which was freeing an irq that may not have been requested Luis Henriques
2014-02-21 12:47 ` [PATCH 3.11 047/121] xhci: Fix resume issues on Renesas chips in Samsung laptops Luis Henriques
2014-02-21 12:47 ` [PATCH 3.11 048/121] Revert "usbcore: set lpm_capable field for LPM capable root hubs" Luis Henriques
2014-02-21 12:47 ` [PATCH 3.11 049/121] KVM: return an error code in kvm_vm_ioctl_register_coalesced_mmio() Luis Henriques
2014-02-21 12:47 ` [PATCH 3.11 050/121] iwlwifi: mvm: print the version of the firmware when it asserts Luis Henriques
2014-02-21 12:47 ` [PATCH 3.11 051/121] block: __elv_next_request() shouldn't call into the elevator if bypassing Luis Henriques
2014-02-21 12:47 ` [PATCH 3.11 052/121] power: max17040: Fix NULL pointer dereference when there is no platform_data Luis Henriques
2014-02-21 12:47 ` [PATCH 3.11 053/121] iwlwifi: mvm: BT Coex - disable BT when TXing probe request in scan Luis Henriques
2014-02-21 12:47 ` [PATCH 3.11 054/121] iwlwifi: mvm: don't allow A band if SKU forbids it Luis Henriques
2014-02-21 12:47 ` [PATCH 3.11 055/121] s390/dump: Fix dump memory detection Luis Henriques
2014-02-21 12:48 ` [PATCH 3.11 056/121] ath9k_htc: make ->sta_rc_update atomic for most calls Luis Henriques
2014-02-21 12:48 ` [PATCH 3.11 057/121] ath9k_htc: Do not support PowerSave by default Luis Henriques
2014-02-21 12:48 ` [PATCH 3.11 058/121] ar5523: fix usb id for Gigaset Luis Henriques
2014-02-21 12:48 ` [PATCH 3.11 059/121] ath9k: Do not support PowerSave by default Luis Henriques
2014-02-21 12:48 ` [PATCH 3.11 060/121] spi: nuc900: Set SPI_LSB_FIRST for master->mode_bits if hw->pdata->lsb is true Luis Henriques
2014-02-21 12:48 ` [PATCH 3.11 061/121] usb: ftdi_sio: add Mindstorms EV3 console adapter Luis Henriques
2014-02-21 12:48 ` [PATCH 3.11 062/121] usb-storage: restrict bcdDevice range for Super Top in Cypress ATACB Luis Henriques
2014-02-21 12:48 ` [PATCH 3.11 063/121] usb-storage: add unusual-devs entry for BlackBerry 9000 Luis Henriques
2014-02-21 12:48 ` [PATCH 3.11 064/121] usb-storage: enable multi-LUN scanning when needed Luis Henriques
2014-02-21 12:48 ` [PATCH 3.11 065/121] md/raid1: restore ability for check and repair to fix read errors Luis Henriques
2014-02-21 12:48 ` [PATCH 3.11 066/121] of: fix PCI bus match for PCIe slots Luis Henriques
2014-02-21 12:48 ` [PATCH 3.11 067/121] usb: qcserial: add Netgear Aircard 340U Luis Henriques
2014-02-21 12:48 ` [PATCH 3.11 068/121] USB: ftdi_sio: add Tagsys RFID Reader IDs Luis Henriques
2014-02-21 12:48 ` [PATCH 3.11 069/121] mac80211: move roc cookie assignment earlier Luis Henriques
2014-02-21 12:48 ` [PATCH 3.11 070/121] nl80211: Reset split_start when netlink skb is exhausted Luis Henriques
2014-02-21 12:48 ` [PATCH 3.11 071/121] mac80211: release the channel in error path in start_ap Luis Henriques
2014-02-21 12:48 ` [PATCH 3.11 072/121] mac80211: fix fragmentation code, particularly for encryption Luis Henriques
2014-02-21 12:48 ` [PATCH 3.11 073/121] time: Fix overflow when HZ is smaller than 60 Luis Henriques
2014-02-21 12:48 ` [PATCH 3.11 074/121] drm/radeon: fix UVD IRQ support on SI Luis Henriques
2014-02-21 12:48 ` [PATCH 3.11 075/121] drm/radeon: fix UVD IRQ support on 7xx Luis Henriques
2014-02-21 12:48 ` [PATCH 3.11 076/121] ALSA: hda - Add a headset quirk for Dell XPS 13 Luis Henriques
2014-02-21 12:48 ` [PATCH 3.11 077/121] ALSA: hda - Fix mic capture on Sony VAIO Pro 11 Luis Henriques
2014-02-21 12:48 ` [PATCH 3.11 078/121] mei: clear write cb from waiting list on reset Luis Henriques
2014-02-21 12:48 ` [PATCH 3.11 079/121] mei: don't unset read cb ptr " Luis Henriques
2014-02-21 12:48 ` [PATCH 3.11 080/121] VME: Correct read/write alignment algorithm Luis Henriques
2014-02-21 12:48 ` [PATCH 3.11 081/121] Drivers: hv: vmbus: Specify the target CPU that should receive notification Luis Henriques
2014-02-21 12:48 ` [PATCH 3.11 082/121] Drivers: hv: vmbus: Don't timeout during the initial connection with host Luis Henriques
2014-02-21 12:48 ` [PATCH 3.11 083/121] raw: test against runtime value of max_raw_minors Luis Henriques
2014-02-21 12:48 ` [PATCH 3.11 084/121] tty: n_gsm: Fix for modems with brk in modem status control Luis Henriques
2014-02-21 12:48 ` [PATCH 3.11 085/121] tty: Set correct tty name in 'active' sysfs attribute Luis Henriques
2014-02-21 14:37   ` Ray Strode
2014-02-21 14:46     ` Josh Boyer
2014-02-21 20:09       ` David Herrmann
2014-02-24  9:54         ` Luís Henriques
2014-02-21 12:48 ` [PATCH 3.11 086/121] staging: comedi: adv_pci1710: fix analog output readback value Luis Henriques
2014-02-21 12:48 ` [PATCH 3.11 087/121] xen-blkfront: handle backend CLOSED without CLOSING Luis Henriques
2014-02-21 12:48 ` [PATCH 3.11 088/121] Modpost: fixed USB alias generation for ranges including 0x9 and 0xA Luis Henriques
2014-02-21 12:48 ` [PATCH 3.11 089/121] block: Fix nr_vecs for inline integrity vectors Luis Henriques
2014-02-21 12:48 ` [PATCH 3.11 090/121] iio: ak8975: Fix calculation formula for convert micro tesla to gauss unit Luis Henriques
2014-02-21 12:48 ` [PATCH 3.11 091/121] iio: adis16400: Set timestamp as the last element in chan_spec Luis Henriques
2014-02-21 12:48 ` [PATCH 3.11 092/121] fs/file.c:fdtable: avoid triggering OOMs from alloc_fdmem Luis Henriques
2014-02-21 12:48 ` [PATCH 3.11 093/121] mm: fix page leak at nfs_symlink() Luis Henriques
2014-02-21 12:48 ` [PATCH 3.11 094/121] mm/memory-failure.c: move refcount only in !MF_COUNT_INCREASED Luis Henriques
2014-02-21 12:48 ` [PATCH 3.11 095/121] genirq: Add missing irq_to_desc export for CONFIG_SPARSE_IRQ=n Luis Henriques
2014-02-21 12:48 ` [PATCH 3.11 096/121] xen: install xen/gntdev.h and xen/gntalloc.h Luis Henriques
2014-02-21 12:48 ` [PATCH 3.11 097/121] ring-buffer: Fix first commit on sub-buffer having non-zero delta Luis Henriques
2014-02-21 12:48 ` [PATCH 3.11 098/121] usb: option: blacklist ZTE MF667 net interface Luis Henriques
2014-02-21 12:48 ` [PATCH 3.11 099/121] ftrace/x86: Use breakpoints for converting function graph caller Luis Henriques
2014-02-21 12:48 ` [PATCH 3.11 100/121] block: add cond_resched() to potentially long running ioctl discard loop Luis Henriques
2014-02-21 12:48 ` [PATCH 3.11 101/121] target: Fix free-after-use regression in PR unregister Luis Henriques
2014-02-21 12:48 ` [PATCH 3.11 102/121] md/raid5: Fix CPU hotplug callback registration Luis Henriques
2014-02-21 12:48 ` [PATCH 3.11 103/121] compiler/gcc4: Make quirk for asm_volatile_goto() unconditional Luis Henriques
2014-02-21 12:48 ` [PATCH 3.11 104/121] x86, smap: Don't enable SMAP if CONFIG_X86_SMAP is disabled Luis Henriques
2014-02-21 12:48 ` [PATCH 3.11 105/121] x86, smap: smap_violation() is bogus if CONFIG_X86_SMAP is off Luis Henriques
2014-02-21 12:48 ` [PATCH 3.11 106/121] vt: Fix secure clear screen Luis Henriques
2014-02-21 12:48 ` [PATCH 3.11 107/121] lockd: send correct lock when granting a delayed lock Luis Henriques
2014-02-21 12:48 ` [PATCH 3.11 108/121] tick: Clear broadcast pending bit when switching to oneshot Luis Henriques
2014-02-21 12:48 ` [PATCH 3.11 109/121] IB/qib: Add missing serdes init sequence Luis Henriques
2014-02-21 12:48 ` [PATCH 3.11 110/121] hwmon: (ntc_thermistor) Avoid math overflow Luis Henriques
2014-02-21 12:48 ` [PATCH 3.11 111/121] x86: mm: change tlb_flushall_shift for IvyBridge Luis Henriques
2014-02-21 12:48 ` [PATCH 3.11 112/121] xen/p2m: check MFN is in range before using the m2p table Luis Henriques
2014-02-21 12:48 ` [PATCH 3.11 113/121] xen: Fix possible user space selector corruption Luis Henriques
2014-02-21 12:48 ` [PATCH 3.11 114/121] [CIFS] Fix SMB2 mounts so they don't try to set or get xattrs via cifs Luis Henriques
2014-02-21 12:48 ` [PATCH 3.11 115/121] Add protocol specific operation for CIFS xattrs Luis Henriques
2014-02-21 12:49 ` [PATCH 3.11 116/121] retrieving CIFS ACLs when mounted with SMB2 fails dropping session Luis Henriques
2014-02-21 12:49 ` [PATCH 3.11 117/121] s390: fix kernel crash due to linkage stack instructions Luis Henriques
2014-02-21 12:49 ` [PATCH 3.11 118/121] EDAC: Replace strict_strtol() with kstrtol() Luis Henriques
2014-02-21 12:49 ` [PATCH 3.11 119/121] drivers/edac/edac_mc_sysfs.c: poll timeout cannot be zero Luis Henriques
2014-02-21 12:49 ` [PATCH 3.11 120/121] EDAC: Poll timeout cannot be zero, p2 Luis Henriques
2014-02-21 12:49 ` [PATCH 3.11 121/121] EDAC: Correct workqueue setup path 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=1392986945-9693-7-git-send-email-luis.henriques@canonical.com \
    --to=luis.henriques@canonical.com \
    --cc=freude@linux.vnet.ibm.com \
    --cc=herbert@gondor.apana.org.au \
    --cc=kernel-team@lists.ubuntu.com \
    --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).