All of lore.kernel.org
 help / color / mirror / Atom feed
From: Jiri Slaby <jslaby@suse.cz>
To: stable@vger.kernel.org
Cc: linux-kernel@vger.kernel.org,
	Trond Myklebust <trond.myklebust@primarydata.com>,
	"J. Bruce Fields" <bfields@redhat.com>,
	Jiri Slaby <jslaby@suse.cz>
Subject: [PATCH 3.12 097/146] NFSd: Move default initialisers from create_client() to alloc_client()
Date: Mon,  9 Jun 2014 10:50:32 +0200	[thread overview]
Message-ID: <3adce04c026b56960f37b07463319aee631523df.1402303821.git.jslaby@suse.cz> (raw)
In-Reply-To: <ebe219e45dcf94c1a34281167427cff4d742faef.1402303820.git.jslaby@suse.cz>
In-Reply-To: <cover.1402303820.git.jslaby@suse.cz>

From: Trond Myklebust <trond.myklebust@primarydata.com>

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

===============

commit 5694c93e6c4954fa9424c215f75eeb919bddad64 upstream.

Aside from making it clearer what is non-trivial in create_client(), it
also fixes a bug whereby we can call free_client() before idr_init()
has been called.

Signed-off-by: Trond Myklebust <trond.myklebust@primarydata.com>
Signed-off-by: J. Bruce Fields <bfields@redhat.com>
Signed-off-by: Jiri Slaby <jslaby@suse.cz>
---
 fs/nfsd/nfs4state.c | 24 ++++++++++++------------
 1 file changed, 12 insertions(+), 12 deletions(-)

diff --git a/fs/nfsd/nfs4state.c b/fs/nfsd/nfs4state.c
index 5cbdf38ffc66..7a32d576ed7e 100644
--- a/fs/nfsd/nfs4state.c
+++ b/fs/nfsd/nfs4state.c
@@ -1071,6 +1071,18 @@ static struct nfs4_client *alloc_client(struct xdr_netobj name)
 		return NULL;
 	}
 	clp->cl_name.len = name.len;
+	INIT_LIST_HEAD(&clp->cl_sessions);
+	idr_init(&clp->cl_stateids);
+	atomic_set(&clp->cl_refcount, 0);
+	clp->cl_cb_state = NFSD4_CB_UNKNOWN;
+	INIT_LIST_HEAD(&clp->cl_idhash);
+	INIT_LIST_HEAD(&clp->cl_openowners);
+	INIT_LIST_HEAD(&clp->cl_delegations);
+	INIT_LIST_HEAD(&clp->cl_lru);
+	INIT_LIST_HEAD(&clp->cl_callbacks);
+	INIT_LIST_HEAD(&clp->cl_revoked);
+	spin_lock_init(&clp->cl_lock);
+	rpc_init_wait_queue(&clp->cl_cb_waitq, "Backchannel slot table");
 	return clp;
 }
 
@@ -1335,7 +1347,6 @@ static struct nfs4_client *create_client(struct xdr_netobj name,
 	if (clp == NULL)
 		return NULL;
 
-	INIT_LIST_HEAD(&clp->cl_sessions);
 	ret = copy_cred(&clp->cl_cred, &rqstp->rq_cred);
 	if (ret) {
 		spin_lock(&nn->client_lock);
@@ -1343,20 +1354,9 @@ static struct nfs4_client *create_client(struct xdr_netobj name,
 		spin_unlock(&nn->client_lock);
 		return NULL;
 	}
-	idr_init(&clp->cl_stateids);
-	atomic_set(&clp->cl_refcount, 0);
-	clp->cl_cb_state = NFSD4_CB_UNKNOWN;
-	INIT_LIST_HEAD(&clp->cl_idhash);
-	INIT_LIST_HEAD(&clp->cl_openowners);
-	INIT_LIST_HEAD(&clp->cl_delegations);
-	INIT_LIST_HEAD(&clp->cl_lru);
-	INIT_LIST_HEAD(&clp->cl_callbacks);
-	INIT_LIST_HEAD(&clp->cl_revoked);
-	spin_lock_init(&clp->cl_lock);
 	nfsd4_init_callback(&clp->cl_cb_null);
 	clp->cl_time = get_seconds();
 	clear_bit(0, &clp->cl_cb_slot_busy);
-	rpc_init_wait_queue(&clp->cl_cb_waitq, "Backchannel slot table");
 	copy_verf(clp, verf);
 	rpc_copy_addr((struct sockaddr *) &clp->cl_addr, sa);
 	gen_confirm(clp);
-- 
1.9.3


  parent reply	other threads:[~2014-06-09  8:58 UTC|newest]

Thread overview: 163+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-06-09  8:50 [PATCH 3.12 000/146] 3.12.22-stable review Jiri Slaby
2014-06-09  8:48 ` [PATCH 3.12 001/146] introduce for_each_thread() to replace the buggy while_each_thread() Jiri Slaby
2014-06-09  8:48 ` [PATCH 3.12 002/146] oom_kill: change oom_kill.c to use for_each_thread() Jiri Slaby
2014-06-09  8:48 ` [PATCH 3.12 003/146] oom_kill: has_intersects_mems_allowed() needs rcu_read_lock() Jiri Slaby
2014-06-09  8:48 ` [PATCH 3.12 004/146] oom_kill: add rcu_read_lock() into find_lock_task_mm() Jiri Slaby
2014-06-09  8:49 ` [PATCH 3.12 005/146] mm, oom: prefer thread group leaders for display purposes Jiri Slaby
2014-06-09  8:49 ` [PATCH 3.12 006/146] mac80211: fix on-channel remain-on-channel Jiri Slaby
2014-06-09  8:49 ` [PATCH 3.12 007/146] netfilter: Fix potential use after free in ip6_route_me_harder() Jiri Slaby
2014-06-09  8:49 ` [PATCH 3.12 008/146] usb: qcserial: add a number of Dell devices Jiri Slaby
2014-06-09  8:49   ` Jiri Slaby
2014-06-09  8:49 ` [PATCH 3.12 009/146] clk: tegra: use pll_ref as the pll_e parent Jiri Slaby
2014-06-09  8:49 ` [PATCH 3.12 010/146] ACPI / video: Fix initial level validity test Jiri Slaby
2014-06-09  8:49 ` [PATCH 3.12 011/146] futex: Add another early deadlock detection check Jiri Slaby
2014-06-09  8:49 ` [PATCH 3.12 012/146] futex: Prevent attaching to kernel threads Jiri Slaby
2014-06-09  8:49 ` [PATCH 3.12 013/146] mips: dts: Fix missing device_type="memory" property in memory nodes Jiri Slaby
2014-06-09  8:49 ` [PATCH 3.12 014/146] ftrace/module: Hardcode ftrace_module_init() call into load_module() Jiri Slaby
2014-06-09  8:49 ` [PATCH 3.12 015/146] irqchip: Gic: Support forced affinity setting Jiri Slaby
2014-06-09  8:49   ` Jiri Slaby
2014-06-09  8:49 ` [PATCH 3.12 016/146] genirq: Allow forcing cpu affinity of interrupts Jiri Slaby
2014-06-09  8:49   ` Jiri Slaby
2014-06-09  8:49 ` [PATCH 3.12 017/146] clocksource: Exynos_mct: Use irq_force_affinity() in cpu bringup Jiri Slaby
2014-06-09  8:49   ` Jiri Slaby
2014-06-09  8:49 ` [PATCH 3.12 018/146] clocksource: Exynos_mct: Register clock event after request_irq() Jiri Slaby
2014-06-09  8:49   ` Jiri Slaby
2014-06-09  8:49 ` [PATCH 3.12 019/146] pata_at91: fix ata_host_activate() failure handling Jiri Slaby
2014-06-09  8:49 ` [PATCH 3.12 020/146] coredump: fix va_list corruption Jiri Slaby
2014-06-09  8:49 ` [PATCH 3.12 021/146] mm: make fixup_user_fault() check the vma access rights too Jiri Slaby
2014-06-09  8:49 ` [PATCH 3.12 022/146] serial: 8250: Fix thread unsafe __dma_tx_complete function Jiri Slaby
2014-06-09  8:49 ` [PATCH 3.12 023/146] 8250_core: Fix unwanted TX chars write Jiri Slaby
2014-06-09  8:49 ` [PATCH 3.12 024/146] gpu: host1x: handle the correct # of syncpt regs Jiri Slaby
2014-06-09  8:49 ` [PATCH 3.12 025/146] timer: Prevent overflow in apply_slack Jiri Slaby
2014-06-09  8:49 ` [PATCH 3.12 026/146] ipmi: Reset the KCS timeout when starting error recovery Jiri Slaby
2014-06-09  8:49 ` [PATCH 3.12 027/146] cfg80211: free sme on connection failures Jiri Slaby
2014-06-09  8:49 ` [PATCH 3.12 028/146] mac80211: fix suspend vs. association race Jiri Slaby
2014-06-09  8:49 ` [PATCH 3.12 029/146] mm, thp: close race between mremap() and split_huge_page() Jiri Slaby
2014-06-09  8:49 ` [PATCH 3.12 030/146] x86, mm, hugetlb: Add missing TLB page invalidation for hugetlb_cow() Jiri Slaby
2014-06-09  8:49 ` [PATCH 3.12 031/146] arm64: fix pud_huge() for 2-level pagetables Jiri Slaby
2014-06-09  8:49 ` [PATCH 3.12 032/146] hwpoison, hugetlb: lock_page/unlock_page does not match for handling a free hugepage Jiri Slaby
2014-06-09  8:49 ` [PATCH 3.12 033/146] aio: fix potential leak in aio_run_iocb() Jiri Slaby
2014-06-09  8:49 ` [PATCH 3.12 034/146] hwmon: (emc1403) fix inverted store_hyst() Jiri Slaby
2014-06-09  8:49 ` [PATCH 3.12 035/146] hwmon: (emc1403) Support full range of known chip revision numbers Jiri Slaby
2014-06-09  8:49 ` [PATCH 3.12 036/146] drivercore: deferral race condition fix Jiri Slaby
2014-06-09  8:49 ` [PATCH 3.12 037/146] hrtimer: Prevent all reprogramming if hang detected Jiri Slaby
2014-06-09  8:49 ` [PATCH 3.12 038/146] hrtimer: Prevent remote enqueue of leftmost timers Jiri Slaby
2014-06-09  8:49 ` [PATCH 3.12 039/146] hrtimer: Set expiry time before switch_hrtimer_base() Jiri Slaby
2014-06-09  8:49 ` [PATCH 3.12 040/146] md: avoid possible spinning md thread at shutdown Jiri Slaby
2014-06-09  8:49 ` [PATCH 3.12 041/146] drm/i915: Don't check gmch state on inherited configs Jiri Slaby
2014-06-09  8:49 ` [PATCH 3.12 042/146] drm/i915: Break encoder->crtc link separately in intel_sanitize_crtc() Jiri Slaby
2014-06-09  8:49 ` [PATCH 3.12 043/146] drm/radeon: disable mclk dpm on R7 260X Jiri Slaby
2014-06-09  8:49 ` [PATCH 3.12 044/146] drm/radeon: add support for newer mc ucode on SI (v2) Jiri Slaby
2014-06-09  8:49 ` [PATCH 3.12 045/146] drm/radeon/si: make sure mc ucode is loaded before checking the size Jiri Slaby
2014-06-09  8:49 ` [PATCH 3.12 046/146] drm/radeon: fix ATPX detection on non-VGA GPUs Jiri Slaby
2014-06-09  8:49 ` [PATCH 3.12 047/146] drm/radeon/pm: don't walk the crtc list before it has been initialized (v2) Jiri Slaby
2014-06-09  8:49 ` [PATCH 3.12 048/146] drm/radeon: fix count in cik_sdma_ring_test() Jiri Slaby
2014-06-09  8:49 ` [PATCH 3.12 049/146] drm/radeon/uvd: use lower clocks on old UVD to boot v2 Jiri Slaby
2014-06-09  8:49 ` [PATCH 3.12 050/146] drm/radeon: use pflip irq on R600+ v2 Jiri Slaby
2014-06-09  8:49 ` [PATCH 3.12 051/146] drm/radeon: check buffer relocation offset Jiri Slaby
2014-06-09  8:49 ` [PATCH 3.12 052/146] drm/tegra: Remove gratuitous pad field Jiri Slaby
2014-06-09  8:49 ` [PATCH 3.12 053/146] clk: tegra: Fix wrong value written to PLLE_AUX Jiri Slaby
2014-06-09  8:49 ` [PATCH 3.12 054/146] iio:imu:mpu6050: Fixed segfault in Invensens MPU driver due to null dereference Jiri Slaby
2014-06-09  8:49 ` [PATCH 3.12 055/146] fsl-usb: do not test for PHY_CLK_VALID bit on controller version 1.6 Jiri Slaby
2014-06-09  8:49 ` [PATCH 3.12 056/146] usb: gadget: at91-udc: fix irq and iomem resource retrieval Jiri Slaby
2014-06-09  8:49 ` [PATCH 3.12 057/146] USB: OHCI: fix problem with global suspend on ATI controllers Jiri Slaby
2014-06-09  8:49 ` [PATCH 3.12 058/146] usb: storage: shuttle_usbat: fix discs being detected twice Jiri Slaby
2014-06-09  8:49 ` [PATCH 3.12 059/146] USB: Nokia 305 should be treated as unusual dev Jiri Slaby
2014-06-09  8:49 ` [PATCH 3.12 060/146] USB: Nokia 5300 " Jiri Slaby
2014-06-09  8:49 ` [PATCH 3.12 061/146] rt2x00: fix beaconing on USB Jiri Slaby
2014-06-09  8:49 ` [PATCH 3.12 062/146] ALSA: usb-audio: work around corrupted TEAC UD-H01 feedback data Jiri Slaby
2014-06-09  8:49 ` [PATCH 3.12 063/146] Bluetooth: Fix triggering BR/EDR L2CAP Connect too early Jiri Slaby
2014-06-09  8:49 ` [PATCH 3.12 064/146] Bluetooth: Fix redundant encryption request for reauthentication Jiri Slaby
2014-06-09 13:33   ` Johan Hedberg
2014-06-09 13:51     ` Jiri Slaby
2014-06-09  8:50 ` [PATCH 3.12 065/146] Bluetooth: Add support for Lite-on [04ca:3007] Jiri Slaby
2014-06-09  8:50 ` [PATCH 3.12 066/146] posix_acl: handle NULL ACL in posix_acl_equiv_mode Jiri Slaby
2014-06-09  8:50 ` [PATCH 3.12 067/146] mm/page-writeback.c: fix divide by zero in pos_ratio_polynom Jiri Slaby
2014-06-09  8:50 ` [PATCH 3.12 068/146] revert "mm: vmscan: do not swap anon pages just because free+file is low" Jiri Slaby
2014-06-09 13:35   ` Johannes Weiner
2014-06-09 13:58     ` Jiri Slaby
2014-06-09  8:50 ` [PATCH 3.12 069/146] ARM: orion5x: fix target ID for crypto SRAM window Jiri Slaby
2014-06-09  8:50 ` [PATCH 3.12 070/146] ARM: dts: kirkwood: fix mislocated pcie-controller nodes Jiri Slaby
2014-06-09  8:50 ` [PATCH 3.12 071/146] ARM: dts: i.MX53: Fix ipu register space size Jiri Slaby
2014-06-09  8:50 ` [PATCH 3.12 072/146] ARM: mvebu: fix NOR bus-width in Armada XP GP Device Tree Jiri Slaby
2014-06-09  8:50 ` [PATCH 3.12 073/146] ARM: mvebu: fix NOR bus-width in Armada XP DB " Jiri Slaby
2014-06-09  8:50 ` [PATCH 3.12 074/146] ARM: mvebu: fix NOR bus-width in Armada XP OpenBlocks AX3 " Jiri Slaby
2014-06-09  8:50 ` [PATCH 3.12 075/146] arm: dts: Fix missing device_type="memory" for ste-ccu8540 Jiri Slaby
2014-06-09  8:50   ` Jiri Slaby
2014-06-09  8:50   ` Jiri Slaby
2014-06-09  8:50 ` [PATCH 3.12 076/146] ARM: 8012/1: kdump: Avoid overflow when converting pfn to physaddr Jiri Slaby
2014-06-09  8:50 ` [PATCH 3.12 077/146] rtl8192cu: Fix unbalanced irq enable in error path of rtl92cu_hw_init() Jiri Slaby
2014-06-09  8:50 ` [PATCH 3.12 078/146] drm/nouveau/acpi: allow non-optimus setups to load vbios from acpi Jiri Slaby
2014-06-09  8:50 ` [PATCH 3.12 079/146] drm/nouveau: fix another lock unbalance in nouveau_crtc_page_flip Jiri Slaby
2014-06-09  8:50 ` [PATCH 3.12 080/146] drm/i915/vlv: reset VLV media force wake request register Jiri Slaby
2014-06-09  8:50 ` [PATCH 3.12 081/146] drm/nouveau/pm/fan: drop the fan lock in fan_update() before rescheduling Jiri Slaby
2014-06-09  8:50 ` [PATCH 3.12 082/146] leds: leds-pwm: properly clean up after probe failure Jiri Slaby
2014-06-09  8:50 ` [PATCH 3.12 083/146] Documentation: Update stable address in Chinese and Japanese translations Jiri Slaby
2014-06-09  8:50 ` [PATCH 3.12 084/146] device_cgroup: rework device access check and exception checking Jiri Slaby
2014-06-09  8:50 ` [PATCH 3.12 085/146] device_cgroup: check if exception removal is allowed Jiri Slaby
2014-06-09  8:50   ` Jiri Slaby
2014-06-09  8:50 ` [PATCH 3.12 086/146] crypto: crypto_wq - Fix late crypto work queue initialization Jiri Slaby
2014-06-09  8:50 ` [PATCH 3.12 087/146] clk: vexpress: NULL dereference on error path Jiri Slaby
2014-06-09  8:50 ` [PATCH 3.12 088/146] media: media-device: fix infoleak in ioctl media_enum_entities() Jiri Slaby
2014-06-09  8:50 ` [PATCH 3.12 089/146] autofs: fix lockref lookup Jiri Slaby
2014-06-09  8:50 ` [PATCH 3.12 090/146] trace: module: Maintain a valid user count Jiri Slaby
2014-06-09  8:50 ` [PATCH 3.12 091/146] Input: atkbd - fix keyboard not working on some LG laptops Jiri Slaby
2014-06-09  8:50 ` [PATCH 3.12 092/146] Input: elantech - fix touchpad initialization on Gigabyte U2442 Jiri Slaby
2014-06-09  8:50 ` [PATCH 3.12 093/146] Input: synaptics - add min/max quirk for the ThinkPad W540 Jiri Slaby
2014-06-09  8:50 ` [PATCH 3.12 094/146] Input: synaptics - T540p - unify with other LEN0034 models Jiri Slaby
2014-06-09  8:50 ` [PATCH 3.12 095/146] ALSA: hda - hdmi: Set converter channel count even without sink Jiri Slaby
2014-06-09  8:50 ` [PATCH 3.12 096/146] ALSA: hda - Fix onboard audio on Intel H97/Z97 chipsets Jiri Slaby
2014-06-09  8:50 ` Jiri Slaby [this message]
2014-06-09  8:50 ` [PATCH 3.12 098/146] NFSd: call rpc_destroy_wait_queue() from free_client() Jiri Slaby
2014-06-09  8:50 ` [PATCH 3.12 099/146] NFSD: Call ->set_acl with a NULL ACL structure if no entries Jiri Slaby
2014-06-09  8:50 ` [PATCH 3.12 100/146] nfsd4: warn on finding lockowner without stateid's Jiri Slaby
2014-06-09  8:50 ` [PATCH 3.12 101/146] nfsd4: remove lockowner when removing lock stateid Jiri Slaby
2014-06-09  8:50 ` [PATCH 3.12 102/146] workqueue: fix bugs in wq_update_unbound_numa() failure path Jiri Slaby
2014-06-09  8:50 ` [PATCH 3.12 103/146] workqueue: fix a possible race condition between rescuer and pwq-release Jiri Slaby
2014-06-09  8:50 ` [PATCH 3.12 104/146] workqueue: make rescuer_thread() empty wq->maydays list before exiting Jiri Slaby
2014-06-09  8:50 ` [PATCH 3.12 105/146] memory: mvebu-devbus: fix the conversion of the bus width Jiri Slaby
2014-06-09  8:50 ` [PATCH 3.12 106/146] PCI: mvebu: fix off-by-one in the computed size of the mbus windows Jiri Slaby
2014-06-09  8:50 ` [PATCH 3.12 107/146] bus: mvebu-mbus: allow several windows with the same target/attribute Jiri Slaby
2014-06-09  8:50 ` [PATCH 3.12 108/146] percpu: make pcpu_alloc_chunk() use pcpu_mem_free() instead of kfree() Jiri Slaby
2014-06-09  8:50 ` [PATCH 3.12 109/146] ASoC: wm8962: Update register CLASS_D_CONTROL_1 to be non-volatile Jiri Slaby
2014-06-09  8:50 ` [PATCH 3.12 110/146] metag: fix memory barriers Jiri Slaby
2014-06-09  8:50 ` [PATCH 3.12 111/146] metag: Reduce maximum stack size to 256MB Jiri Slaby
2014-06-09  8:50 ` [PATCH 3.12 112/146] x86-64, modify_ldt: Make support for 16-bit segments a runtime option Jiri Slaby
2014-06-09  8:50 ` [PATCH 3.12 113/146] genirq: Provide irq_force_affinity fallback for non-SMP Jiri Slaby
2014-06-09  8:50 ` [PATCH 3.12 114/146] PCI: shpchp: Check bridge's secondary (not primary) bus speed Jiri Slaby
2014-06-09  8:50 ` [PATCH 3.12 115/146] Target/iser: Fix wrong connection requests list addition Jiri Slaby
2014-06-09  8:50 ` [PATCH 3.12 116/146] Target/iser: Fix iscsit_accept_np and rdma_cm racy flow Jiri Slaby
2014-06-09  8:50 ` [PATCH 3.12 117/146] iscsi-target: Change BUG_ON to REJECT in iscsit_process_nop_out Jiri Slaby
2014-06-09  8:50 ` [PATCH 3.12 118/146] target: Don't allow setting WC emulation if device doesn't support Jiri Slaby
2014-06-09  8:50 ` [PATCH 3.12 119/146] target: fix memory leak on XCOPY Jiri Slaby
2014-06-09  8:50 ` [PATCH 3.12 120/146] drm/i915: Disable self-refresh for untiled fbs on i915gm Jiri Slaby
2014-06-09  8:50 ` [PATCH 3.12 121/146] drm/i915: Fix unsafe loop iteration over vma whilst unbinding them Jiri Slaby
2014-06-09  8:50 ` [PATCH 3.12 122/146] drm/i915: quirk invert brightness for Acer Aspire 5336 Jiri Slaby
2014-06-09  8:50 ` [PATCH 3.12 123/146] dm crypt: fix cpu hotplug crash by removing per-cpu structure Jiri Slaby
2014-06-09  8:50 ` [PATCH 3.12 124/146] dma: mv_xor: Flush descriptors before activating a channel Jiri Slaby
2014-06-09  8:51 ` [PATCH 3.12 125/146] dmaengine: dw: went back to plain {request,free}_irq() calls Jiri Slaby
2014-06-09  8:51 ` [PATCH 3.12 126/146] libata: clean up ZPODD when a port is detached Jiri Slaby
2014-06-09  8:51 ` [PATCH 3.12 127/146] ACPI / blacklist: Add dmi_enable_osi_linux quirk for Asus EEE PC 1015PX Jiri Slaby
2014-06-09  8:51 ` [PATCH 3.12 128/146] ACPI / processor: do not mark present at boot but not onlined CPU as onlined Jiri Slaby
2014-06-09  8:51 ` [PATCH 3.12 129/146] ACPI: blacklist win8 OSI for Dell Inspiron 7737 Jiri Slaby
2014-06-09  8:51 ` [PATCH 3.12 130/146] i2c: rcar: bail out on zero length transfers Jiri Slaby
2014-06-09  8:51 ` [PATCH 3.12 131/146] i2c: designware: Mask all interrupts during i2c controller enable Jiri Slaby
2014-06-09  8:51 ` [PATCH 3.12 132/146] i2c: s3c2410: resume race fix Jiri Slaby
2014-06-09  8:51 ` [PATCH 3.12 133/146] crypto: caam - add allocation failure handling in SPRINTFCAT macro Jiri Slaby
2014-06-09  8:51 ` [PATCH 3.12 134/146] powerpc/powernv: Reset root port in firmware Jiri Slaby
2014-06-09  8:51 ` [PATCH 3.12 135/146] powerpc: Fix 64 bit builds with binutils 2.24 Jiri Slaby
2014-06-09  8:51 ` [PATCH 3.12 136/146] powerpc, kexec: Fix "Processor X is stuck" issue during kexec from ST mode Jiri Slaby
2014-06-09  8:51 ` [PATCH 3.12 137/146] spi: core: Ignore unsupported Dual/Quad Transfer Mode bits Jiri Slaby
2014-06-09  8:51 ` [PATCH 3.12 138/146] libceph: fix corruption when using page_count 0 page in rbd Jiri Slaby
2014-06-09  8:51 ` [PATCH 3.12 139/146] iommu/amd: Fix interrupt remapping for aliased devices Jiri Slaby
2014-06-09  8:51 ` [PATCH 3.12 140/146] media: fc2580: fix tuning failure on 32-bit arch Jiri Slaby
2014-06-09  8:51 ` [PATCH 3.12 141/146] media: V4L2: ov7670: fix a wrong index, potentially Oopsing the kernel from user-space Jiri Slaby
2014-06-09  8:51 ` [PATCH 3.12 142/146] media: V4L2: fix VIDIOC_CREATE_BUFS in 64- / 32-bit compatibility mode Jiri Slaby
2014-06-09  8:51 ` [PATCH 3.12 143/146] futex-prevent-requeue-pi-on-same-futex.patch futex: Forbid uaddr == uaddr2 in futex_requeue(..., requeue_pi=1) Jiri Slaby
2014-06-09  8:51 ` [PATCH 3.12 144/146] futex: Validate atomic acquisition in futex_lock_pi_atomic() Jiri Slaby
2014-06-09  8:51 ` [PATCH 3.12 145/146] futex: Always cleanup owner tid in unlock_pi Jiri Slaby
2014-06-09  8:51 ` [PATCH 3.12 146/146] futex: Make lookup_pi_state more robust Jiri Slaby
2014-06-09 23:22 ` [PATCH 3.12 000/146] 3.12.22-stable review Satoru Takeuchi
2014-06-09 23:22   ` Satoru Takeuchi
2014-06-10 15:24   ` Jiri Slaby
2014-06-10 15:34 ` 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=3adce04c026b56960f37b07463319aee631523df.1402303821.git.jslaby@suse.cz \
    --to=jslaby@suse.cz \
    --cc=bfields@redhat.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=stable@vger.kernel.org \
    --cc=trond.myklebust@primarydata.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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.