From: Steven Rostedt <rostedt@goodmis.org>
To: linux-kernel@vger.kernel.org, stable@vger.kernel.org
Cc: Daniel Hansel <daniel.hansel@linux.vnet.ibm.com>,
Steffen Maier <maier@linux.vnet.ibm.com>,
James Bottomley <JBottomley@Parallels.com>
Subject: [023/251] zfcp: fix adapter (re)open recovery while link to SAN is down
Date: Wed, 11 Sep 2013 00:27:30 -0400 [thread overview]
Message-ID: <20130911042855.955416645@goodmis.org> (raw)
In-Reply-To: 20130911042707.738353451@goodmis.org
[-- Attachment #1: 0023-zfcp-fix-adapter-re-open-recovery-while-link-to-SAN-.patch --]
[-- Type: text/plain, Size: 1947 bytes --]
3.6.11.9-rc1 stable review patch.
If anyone has any objections, please let me know.
------------------
From: Daniel Hansel <daniel.hansel@linux.vnet.ibm.com>
[ Upstream commit f76ccaac4f82c463a037aa4a1e4ccb85c7011814 ]
FCP device remains in status ERP_FAILED when device is switched online
or adapter recovery is triggered while link to SAN is down.
When Exchange Configuration Data command returns the FSF status
FSF_EXCHANGE_CONFIG_DATA_INCOMPLETE it aborts the exchange process.
The only retries are done during the common error recovery procedure
(i.e. max. 3 retries with 8sec sleep between) and remains in status
ERP_FAILED with QDIO down.
This commit reverts the commit 0df138476c8306478d6e726f044868b4bccf411c
(zfcp: Fix adapter activation on link down).
When FSF status FSF_EXCHANGE_CONFIG_DATA_INCOMPLETE is received the
adapter recovery will be finished without any retries. QDIO will be
up now and status changes such as LINK UP will be received now.
Signed-off-by: Daniel Hansel <daniel.hansel@linux.vnet.ibm.com>
Signed-off-by: Steffen Maier <maier@linux.vnet.ibm.com>
Cc: <stable@vger.kernel.org> #2.6.37+
Signed-off-by: James Bottomley <JBottomley@Parallels.com>
Signed-off-by: Steven Rostedt <rostedt@goodmis.org>
---
drivers/s390/scsi/zfcp_fsf.c | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/drivers/s390/scsi/zfcp_fsf.c b/drivers/s390/scsi/zfcp_fsf.c
index 48f875f..e3f4dab 100644
--- a/drivers/s390/scsi/zfcp_fsf.c
+++ b/drivers/s390/scsi/zfcp_fsf.c
@@ -563,6 +563,10 @@ static void zfcp_fsf_exchange_config_data_handler(struct zfcp_fsf_req *req)
fc_host_port_type(shost) = FC_PORTTYPE_UNKNOWN;
adapter->hydra_version = 0;
+ /* avoids adapter shutdown to be able to recognize
+ * events such as LINK UP */
+ atomic_set_mask(ZFCP_STATUS_ADAPTER_XCONFIG_OK,
+ &adapter->status);
zfcp_fsf_link_down_info_eval(req,
&qtcb->header.fsf_status_qual.link_down_info);
break;
--
1.7.10.4
next prev parent reply other threads:[~2013-09-11 4:27 UTC|newest]
Thread overview: 267+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-09-11 4:27 [000/251] 3.6.11.9-rc1-stable review Steven Rostedt
2013-09-11 4:27 ` [001/251] powerpc/smp: Section mismatch from smp_release_cpus to __initdata spinning_secondaries Steven Rostedt
2013-09-11 4:27 ` [002/251] ALSA: hda - Cache the MUX selection for generic HDMI Steven Rostedt
2013-09-11 4:27 ` [003/251] ALSA: hda - Add new GPU codec ID to snd-hda Steven Rostedt
2013-09-11 4:27 ` [004/251] ALSA: seq-oss: Initialize MIDI clients asynchronously Steven Rostedt
2013-09-11 4:27 ` [005/251] ALSA: 6fire: Fix unlocked snd_pcm_stop() call Steven Rostedt
2013-09-11 4:27 ` [006/251] ALSA: ua101: " Steven Rostedt
2013-09-11 4:27 ` [007/251] ALSA: pxa2xx: " Steven Rostedt
2013-09-11 4:27 ` [008/251] ALSA: atiixp: " Steven Rostedt
2013-09-11 4:27 ` [009/251] ALSA: asihpi: " Steven Rostedt
2013-09-11 4:27 ` [010/251] ALSA: usx2y: " Steven Rostedt
2013-09-11 4:27 ` [011/251] libata: skip SRST for all SIMG [34]7x port-multipliers Steven Rostedt
2013-09-11 4:27 ` [012/251] ata_piix: IDE-mode SATA patch for Intel Coleto Creek DeviceIDs Steven Rostedt
2013-09-11 4:27 ` [013/251] i2c-piix4: Add AMD CZ SMBus device ID Steven Rostedt
2013-09-11 4:27 ` [014/251] ASoC: s6000: Fix unlocked snd_pcm_stop() call Steven Rostedt
2013-09-11 4:27 ` [015/251] ASoC: sglt5000: Fix SGTL5000_PLL_FRAC_DIV_MASK Steven Rostedt
2013-09-11 4:27 ` [016/251] md/raid10: fix two bugs affecting RAID10 reshape Steven Rostedt
2013-09-11 4:27 ` [017/251] tick: Prevent uncontrolled switch to oneshot mode Steven Rostedt
2013-09-11 4:27 ` [018/251] clocksource: dw_apb: Fix error check Steven Rostedt
2013-09-11 4:27 ` [019/251] rt2x00: read 5GHz TX power values from the correct offset Steven Rostedt
2013-09-11 4:27 ` [020/251] ath9k_hw: Assign default xlna config for AR9485 Steven Rostedt
2013-09-11 4:27 ` [021/251] ath9k: Do not assign noise for NULL caldata Steven Rostedt
2013-09-11 4:27 ` [022/251] aacraid: Fix for arrays are going offline in the system. System hangs Steven Rostedt
2013-09-11 4:27 ` Steven Rostedt [this message]
2013-09-11 4:27 ` [024/251] zfcp: block queue limits with data router Steven Rostedt
2013-09-11 4:27 ` [025/251] zfcp: status read buffers on first adapter open with link down Steven Rostedt
2013-09-11 4:27 ` [026/251] mpt2sas: fix firmware failure with wrong task attribute Steven Rostedt
2013-09-11 4:27 ` [027/251] b43: ensue that BCMA is "y" when B43 is "y" Steven Rostedt
2013-09-11 4:27 ` [028/251] printk: Fix rq->lock vs logbuf_lock unlock lock inversion Steven Rostedt
2013-09-11 4:27 ` [029/251] uprobes: Fix return value in error handling path Steven Rostedt
2013-09-11 4:27 ` [030/251] svcrpc: fix handling of too-short rpcs Steven Rostedt
2013-09-11 4:27 ` [031/251] iommu/amd: Only unmap large pages from the first pte Steven Rostedt
2013-09-11 4:27 ` [032/251] staging: line6: Fix unlocked snd_pcm_stop() call Steven Rostedt
2013-09-11 4:27 ` [033/251] perf: Clone child context from parent context pmu Steven Rostedt
2013-09-11 4:27 ` [034/251] perf: Remove WARN_ON_ONCE() check in __perf_event_enable() for valid scenario Steven Rostedt
2013-09-11 4:27 ` [035/251] perf: Fix perf_lock_task_context() vs RCU Steven Rostedt
2013-09-11 4:27 ` [036/251] tracing: Fix irqs-off tag display in syscall tracing Steven Rostedt
2013-09-11 4:27 ` [037/251] writeback: Fix periodic writeback after fs mount Steven Rostedt
2013-09-11 4:27 ` [038/251] neighbour: fix a race in neigh_destroy() Steven Rostedt
2013-09-11 4:27 ` [039/251] x25: Fix broken locking in ioctl error paths Steven Rostedt
2013-09-11 4:27 ` [040/251] vti: remove duplicated code to fix a memory leak Steven Rostedt
2013-09-11 4:27 ` [041/251] l2tp: add missing .owner to struct pppox_proto Steven Rostedt
2013-09-11 4:27 ` [042/251] ipv6: call udp_push_pending_frames when uncorking a socket with AF_INET pending data Steven Rostedt
2013-09-11 4:27 ` [043/251] ipv6: ip6_append_data_mtu did not care about pmtudisc and frag_size Steven Rostedt
2013-09-11 4:27 ` [044/251] virtio: support unlocked queue poll Steven Rostedt
2013-09-11 4:27 ` [045/251] virtio_net: fix race in RX VQ processing Steven Rostedt
2013-09-11 4:27 ` [046/251] sunvnet: vnet_port_remove must call unregister_netdev Steven Rostedt
2013-09-11 4:27 ` [047/251] ifb: fix rcu_sched self-detected stalls Steven Rostedt
2013-09-11 4:27 ` [048/251] tuntap: correctly linearize skb when zerocopy is used Steven Rostedt
2013-09-11 4:27 ` [049/251] macvtap: " Steven Rostedt
2013-09-11 4:27 ` [050/251] ipv6: in case of link failure remove route directly instead of letting it expire Steven Rostedt
2013-09-11 4:27 ` [051/251] 9p: fix off by one causing access violations and memory corruption Steven Rostedt
2013-09-11 4:27 ` [052/251] dummy: fix oops when loading the dummy failed Steven Rostedt
2013-09-11 4:28 ` [053/251] ifb: fix oops when loading the ifb failed Steven Rostedt
2013-09-11 4:28 ` [054/251] atl1e: fix dma mapping warnings Steven Rostedt
2013-09-11 4:28 ` [055/251] skb: report completion status for zero copy skbs Steven Rostedt
2013-09-11 4:28 ` [056/251] tuntap: do not zerocopy if iov needs more pages than MAX_SKB_FRAGS Steven Rostedt
2013-09-11 4:28 ` [057/251] macvtap: " Steven Rostedt
2013-09-11 4:28 ` [058/251] vlan: mask vlan prio bits Steven Rostedt
2013-09-11 4:28 ` [059/251] vlan: fix a race in egress prio management Steven Rostedt
2013-09-11 4:28 ` [060/251] MIPS: Oceton: Fix build error Steven Rostedt
2013-09-11 4:28 ` [061/251] RAPIDIO: IDT_GEN2: " Steven Rostedt
2013-09-11 4:28 ` [062/251] megaraid_sas: fix memory leak if SGL has zero length entries Steven Rostedt
2013-09-11 4:28 ` [063/251] lib/Kconfig.debug: Restrict FRAME_POINTER for MIPS Steven Rostedt
2013-09-11 4:28 ` [064/251] usb: serial: option: blacklist ONDA MT689DC QMI interface Steven Rostedt
2013-09-11 4:28 ` [065/251] usb: serial: option: add Olivetti Olicard 200 Steven Rostedt
2013-09-11 4:28 ` [066/251] usb: serial: option.c: remove ONDA MT825UP product ID fromdriver Steven Rostedt
2013-09-11 4:28 ` [067/251] USB: option: add D-Link DWM-152/C1 and DWM-156/C1 Steven Rostedt
2013-09-11 4:28 ` [068/251] usb: serial: cp210x: Add USB ID for Netgear Switches embedded serial adapter Steven Rostedt
2013-09-11 4:28 ` [069/251] USB: cp210x: add MMB and PI ZigBee USB Device Support Steven Rostedt
2013-09-11 4:28 ` [070/251] usb: cp210x support SEL C662 Vendor/Device Steven Rostedt
2013-09-11 4:28 ` [071/251] PM / Sleep: avoid autosleep in shutdown progress Steven Rostedt
2013-09-11 4:28 ` [072/251] lockd: protect nlm_blocked access in nlmsvc_retry_blocked Steven Rostedt
2013-09-11 4:28 ` [073/251] hrtimers: Move SMP function call to thread context Steven Rostedt
2013-09-11 4:28 ` [074/251] ALSA: usb-audio: 6fire: return correct XRUN indication Steven Rostedt
2013-09-11 4:28 ` [075/251] mm: fix the TLB range flushed when __tlb_remove_page() runs out of slots Steven Rostedt
2013-09-11 4:28 ` [076/251] iscsi-target: Fix tfc_tpg_nacl_auth_cit configfs length overflow Steven Rostedt
2013-09-11 4:28 ` [077/251] USB: storage: Add MicroVault Flash Drive to unusual_devs Steven Rostedt
2013-09-11 4:28 ` [078/251] ASoC: max98088 - fix element type of the register cache Steven Rostedt
2013-09-11 4:28 ` [079/251] ASoC: wm8962: Remove remaining direct register cache accesses Steven Rostedt
2013-09-11 4:28 ` [080/251] ARM: 7722/1: zImage: Convert 32bits memory size and address from ATAG to 64bits DTB Steven Rostedt
2013-09-11 4:28 ` [081/251] isci: Fix a race condition in the SSP task management path Steven Rostedt
2013-09-11 4:28 ` [082/251] sd: fix crash when UA received on DIF enabled device Steven Rostedt
2013-09-11 4:28 ` [083/251] qla2xxx: Properly set the tagging for commands Steven Rostedt
2013-09-11 4:28 ` [084/251] usb: host: xhci: Enable XHCI_SPURIOUS_SUCCESS for all controllers with xhci 1.0 Steven Rostedt
2013-09-11 4:28 ` [085/251] xhci: fix null pointer dereference on ring_doorbell_for_active_rings Steven Rostedt
2013-09-11 4:28 ` [086/251] xhci: Avoid NULL pointer deref when host dies Steven Rostedt
2013-09-11 4:28 ` [087/251] USB: EHCI: Fix resume signalling on remote wakeup Steven Rostedt
2013-09-11 4:28 ` [088/251] USB: mos7840: fix memory leak in open Steven Rostedt
2013-09-11 4:28 ` [089/251] usb: dwc3: fix wrong bit mask in dwc3_event_type Steven Rostedt
2013-09-11 4:28 ` [090/251] usb: dwc3: gadget: dont prevent gadget from being probed if we fail Steven Rostedt
2013-09-11 4:28 ` [091/251] USB: ti_usb_3410_5052: fix dynamic-id matching Steven Rostedt
2013-09-11 4:28 ` [093/251] usb: Clear both buffers when clearing a control transfer TT buffer Steven Rostedt
2013-09-11 4:28 ` [094/251] staging: comedi: COMEDI_CANCEL ioctl should wake up read/write Steven Rostedt
2013-09-11 4:28 ` [095/251] staging: android: logger: Correct write offset reset on error Steven Rostedt
2013-09-11 4:28 ` [096/251] Btrfs: fix lock leak when resuming snapshot deletion Steven Rostedt
2013-09-11 4:28 ` [097/251] Btrfs: re-add root to dead root list if we stop dropping it Steven Rostedt
2013-09-11 4:28 ` [098/251] xen-netfront: pull on receive skb may need to happen earlier Steven Rostedt
2013-09-11 4:28 ` [099/251] xen/blkback: Check device permissions before allowing OP_DISCARD Steven Rostedt
2013-09-11 4:28 ` [100/251] md/raid5: fix interaction of replace and recovery Steven Rostedt
2013-09-11 4:28 ` [101/251] md/raid10: remove use-after-free bug Steven Rostedt
2013-09-11 4:28 ` [102/251] libata: make it clear that sata_inic162x is experimental Steven Rostedt
2013-09-11 4:28 ` [103/251] svcrdma: underflow issue in decode_write_list() Steven Rostedt
2013-09-11 4:28 ` [104/251] powerpc/modules: Module CRC relocation fix causes perf issues Steven Rostedt
2013-09-11 4:28 ` [105/251] nfsd: nfsd_open: when dentry_open returns an error do not propagate as struct file Steven Rostedt
2013-09-11 4:28 ` [106/251] ACPI / memhotplug: Fix a stale pointer in error path Steven Rostedt
2013-09-11 4:28 ` [107/251] dm mpath: fix ioctl deadlock when no paths Steven Rostedt
2013-09-11 4:28 ` [108/251] dm verity: fix inability to use a few specific devices sizes Steven Rostedt
2013-09-11 4:28 ` [109/251] drm/radeon: fix endian issues with DP handling (v3) Steven Rostedt
2013-09-11 4:28 ` [110/251] drm/radeon: fix combios tables on older cards Steven Rostedt
2013-09-11 4:28 ` [111/251] drm/radeon: improve dac adjust heuristics for legacy pdac Steven Rostedt
2013-09-11 4:28 ` [112/251] drm/i915: fix long-standing SNB regression in power consumption after resume v2 Steven Rostedt
2013-09-11 4:29 ` [113/251] drm/radeon/atom: initialize more atom interpretor elements to 0 Steven Rostedt
2013-09-11 4:29 ` [114/251] USB: serial: ftdi_sio: add more RT Systems ftdi devices Steven Rostedt
2013-09-11 4:29 ` [115/251] livelock avoidance in sget() Steven Rostedt
2013-09-11 4:29 ` [116/251] xen/evtchn: avoid a deadlock when unbinding an event channel Steven Rostedt
2013-09-11 4:29 ` [117/251] radeon kms: do not flush uninitialized hotplug work Steven Rostedt
2013-09-11 9:06 ` Sergey Senozhatsky
2013-09-11 12:37 ` Steven Rostedt
2013-09-11 13:12 ` Sergey Senozhatsky
2013-09-11 14:36 ` Sergey Senozhatsky
2013-09-11 16:00 ` Greg KH
2013-09-11 16:13 ` Steven Rostedt
2013-09-11 18:48 ` Sergey Senozhatsky
2013-09-11 18:54 ` Steven Rostedt
2013-09-11 20:40 ` Sergey Senozhatsky
2013-09-11 4:29 ` [118/251] x86: Fix /proc/mtrr with base/size more than 44bits Steven Rostedt
2013-09-11 4:29 ` [119/251] ARM: poison the vectors page Steven Rostedt
2013-09-11 4:29 ` [120/251] ARM: poison memory between kuser helpers Steven Rostedt
2013-09-11 4:29 ` [121/251] ARM: move vector stubs Steven Rostedt
2013-09-11 4:29 ` [122/251] ARM: use linker magic for vectors and " Steven Rostedt
2013-09-11 4:29 ` [123/251] ARM: update FIQ support for relocation of vectors Steven Rostedt
2013-09-11 4:29 ` [124/251] ARM: allow kuser helpers to be removed from the vector page Steven Rostedt
2013-09-11 4:29 ` [125/251] ARM: make vectors page inaccessible from userspace Steven Rostedt
2013-09-11 4:29 ` [126/251] powerpc/windfarm: Fix noisy slots-fan on Xserve (rm31) Steven Rostedt
2013-09-11 4:29 ` [127/251] ARM: 7790/1: Fix deferred mm switch on VIVT processors Steven Rostedt
2013-09-11 4:29 ` [128/251] ALSA: compress: fix the return value for SNDRV_COMPRESS_VERSION Steven Rostedt
2013-09-11 4:29 ` [129/251] serial/mxs-auart: fix race condition in interrupt handler Steven Rostedt
2013-09-11 4:29 ` [130/251] serial/mxs-auart: increase time to wait for transmitter to become idle Steven Rostedt
2013-09-11 4:29 ` [131/251] USB: mos7840: fix race in register handling Steven Rostedt
2013-09-11 4:29 ` [132/251] USB: mos7840: fix device-type detection Steven Rostedt
2013-09-11 4:29 ` [133/251] USB: mos7840: fix race in led handling Steven Rostedt
2013-09-11 4:29 ` [134/251] USB: mos7840: fix pointer casts Steven Rostedt
2013-09-11 4:29 ` [135/251] iwlwifi: add DELL SKU for 5150 HMC Steven Rostedt
2013-09-11 4:29 ` [136/251] ath9k_htc: do some initial hardware configuration Steven Rostedt
2013-09-11 4:29 ` [137/251] nl80211: fix mgmt tx status and testmode reporting for netns Steven Rostedt
2013-09-11 4:29 ` [138/251] mac80211: fix duplicate retransmission detection Steven Rostedt
2013-09-11 4:29 ` [139/251] mac80211: fix ethtool stats for non-station interfaces Steven Rostedt
2013-09-11 4:29 ` [140/251] ixgbe: Fix Tx Hang issue with lldpad on 82598EB Steven Rostedt
2013-09-11 4:29 ` [141/251] Bluetooth: ath3k: dont use stack memory for DMA Steven Rostedt
2013-09-11 4:29 ` [142/251] Bluetooth: Add support for Mediatek Bluetooth device [0e8d:763f] Steven Rostedt
2013-09-11 4:29 ` [143/251] rt2x00: fix stop queue Steven Rostedt
2013-09-11 4:29 ` [144/251] mwifiex: Add missing endian conversion Steven Rostedt
2013-09-11 4:29 ` [145/251] zram: avoid invalid memory access in zram_exit() Steven Rostedt
2013-09-11 4:29 ` [146/251] zram: use zram->lock to protect zram_free_page() in swap free notify path Steven Rostedt
2013-09-11 8:42 ` Luis Henriques
2013-09-12 1:20 ` Steven Rostedt
2013-09-11 4:29 ` [147/251] zram: destroy all devices on error recovery path in zram_init() Steven Rostedt
2013-09-11 4:29 ` [148/251] zram: avoid double free in function zram_bvec_write() Steven Rostedt
2013-09-11 4:29 ` [149/251] zram: avoid access beyond the zram device Steven Rostedt
2013-09-11 4:29 ` [150/251] zram: protect sysfs handler from invalid memory access Steven Rostedt
2013-09-11 4:29 ` [151/251] ACPI / battery: Fix parsing _BIX return value Steven Rostedt
2013-09-11 4:29 ` [152/251] fanotify: info leak in copy_event_to_user() Steven Rostedt
2013-09-11 4:29 ` [153/251] cgroup: fix umount vs cgroup_cfts_commit() race Steven Rostedt
2013-09-11 4:29 ` [154/251] x86, fpu: correct the asm constraints for fxsave, unbreak mxcsr.daz Steven Rostedt
2013-09-11 4:29 ` [155/251] userns: limit the maximum depth of user_namespace->parent chain Steven Rostedt
2013-09-11 4:29 ` [156/251] x86/iommu/vt-d: Expand interrupt remapping quirk to cover x58 chipset Steven Rostedt
2013-09-11 4:29 ` [157/251] arcnet: cleanup sizeof parameter Steven Rostedt
2013-09-11 4:29 ` [158/251] sysctl net: Keep tcp_syn_retries inside the boundary Steven Rostedt
2013-09-11 4:29 ` [159/251] ipv6: take rtnl_lock and mark mrt6 table as freed on namespace cleanup Steven Rostedt
2013-09-11 4:29 ` [160/251] net_sched: Fix stack info leak in cbq_dump_wrr() Steven Rostedt
2013-09-11 4:29 ` [161/251] af_key: more info leaks in pfkey messages Steven Rostedt
2013-09-11 4:29 ` [162/251] atl1c: Fix misuse of netdev_alloc_skb in refilling rx ring Steven Rostedt
2013-09-11 4:29 ` [163/251] net_sched: info leak in atm_tc_dump_class() Steven Rostedt
2013-09-11 4:29 ` [164/251] ndisc: Add missing inline to ndisc_addr_option_pad Steven Rostedt
2013-09-11 4:29 ` [165/251] 8139cp: Add dma_mapping_error checking Steven Rostedt
2013-09-11 4:29 ` [166/251] Dont attempt to send extended INQUIRY command if skip_vpd_pages is set Steven Rostedt
2013-09-11 4:29 ` [167/251] megaraid_sas: megaraid_sas driver init fails in kdump kernel Steven Rostedt
2013-09-11 4:29 ` [168/251] ext4: make sure group number is bumped after a inode allocation race Steven Rostedt
2013-09-11 4:29 ` [169/251] regmap: Add missing header for !CONFIG_REGMAP stubs Steven Rostedt
2013-09-11 4:29 ` [170/251] hwmon: (adt7470) Fix incorrect return code check Steven Rostedt
2013-09-11 4:29 ` [171/251] tracing: Fix fields of struct trace_iterator that are zeroed by mistake Steven Rostedt
2013-09-11 4:29 ` [172/251] ALSA: usb-audio: do not trust too-big wMaxPacketSize values Steven Rostedt
2013-09-11 4:30 ` [173/251] ALSA: 6fire: fix DMA issues with URB transfer_buffer usage Steven Rostedt
2013-09-11 4:30 ` [174/251] virtio: console: fix race with port unplug and open/close Steven Rostedt
2013-09-11 4:30 ` [175/251] virtio: console: fix race in port_fops_open() and port unplug Steven Rostedt
2013-09-11 4:30 ` [176/251] virtio: console: clean up port data immediately at time of unplug Steven Rostedt
2013-09-11 4:30 ` [177/251] virtio: console: fix raising SIGIO after port unplug Steven Rostedt
2013-09-11 4:30 ` [178/251] virtio: console: return -ENODEV on all read operations after unplug Steven Rostedt
2013-09-11 4:30 ` [179/251] drm/cirrus: Invalidate page tables when pinning a BO Steven Rostedt
2013-09-11 4:30 ` [180/251] drm/mgag200: " Steven Rostedt
2013-09-11 4:30 ` [181/251] drm/ast: invalidate " Steven Rostedt
2013-09-11 4:30 ` [182/251] ext4: allow the mount options nodelalloc and data=journal Steven Rostedt
2013-09-11 4:30 ` [183/251] ext4: fix mount/remount error messages for incompatible mount options Steven Rostedt
2013-09-11 4:30 ` [184/251] cifs: extend the buffer length enought for sprintf() using Steven Rostedt
2013-09-11 4:30 ` [185/251] zram: allow request end to coincide with disksize Steven Rostedt
2013-09-11 4:30 ` [186/251] debugfs: debugfs_remove_recursive() must not rely on list_empty(d_subdirs) Steven Rostedt
2013-09-11 4:30 ` [187/251] reiserfs: fix deadlock in umount Steven Rostedt
2013-09-11 4:30 ` [188/251] nsp32: use mdelay instead of large udelay constants Steven Rostedt
2013-09-11 4:30 ` [189/251] mtd: omap2: allow bulding as a module Steven Rostedt
2013-09-11 4:30 ` [190/251] MIPS: Expose missing pci_io{map,unmap} declarations Steven Rostedt
2013-09-11 4:30 ` [191/251] perf/x86: Fix intel QPI uncore event definitions Steven Rostedt
2013-09-11 4:30 ` [192/251] perf/arm: Fix armpmu_map_hw_event() Steven Rostedt
2013-09-11 4:30 ` [193/251] x86 get_unmapped_area(): use proper mmap base for bottom-up direction Steven Rostedt
2013-09-11 4:30 ` [194/251] fs/proc/task_mmu.c: fix buffer overflow in add_page_map() Steven Rostedt
2013-09-11 4:30 ` [195/251] elevator: Fix a race in elevator switching Steven Rostedt
2013-09-11 4:30 ` [196/251] iwl4965: set power mode early Steven Rostedt
2013-09-11 4:30 ` [197/251] iwl4965: reset firmware after rfkill off Steven Rostedt
2013-09-11 7:46 ` Stanislaw Gruszka
2013-09-11 12:32 ` Steven Rostedt
2013-09-11 4:30 ` [198/251] can: pcan_usb: fix wrong memcpy() bytes length Steven Rostedt
2013-09-11 4:30 ` [199/251] genetlink: fix family dump race Steven Rostedt
2013-09-11 6:50 ` Berg, Johannes
2013-09-11 12:25 ` Steven Rostedt
2013-09-11 4:30 ` [200/251] cfg80211: fix P2P GO interface teardown Steven Rostedt
2013-09-11 4:30 ` [201/251] ASoC: cs42l52: Reorder Min/Max and update to SX_TLV for Beep Volume Steven Rostedt
2013-09-11 4:30 ` [202/251] ASoC: tegra: fix Tegra30 I2S capture parameter setup Steven Rostedt
2013-09-11 4:30 ` [203/251] ALSA: 6fire: make buffers DMA-able (pcm) Steven Rostedt
2013-09-11 4:30 ` [204/251] ALSA: 6fire: make buffers DMA-able (midi) Steven Rostedt
2013-09-11 4:30 ` [205/251] ALSA: hda - Add a fixup for Gateway LT27 Steven Rostedt
2013-09-11 4:30 ` [206/251] usb: add two quirky touchscreen Steven Rostedt
2013-09-11 4:30 ` [207/251] USB: ti_usb_3410_5052: fix big-endian firmware handling Steven Rostedt
2013-09-11 4:30 ` [208/251] USB: mos7840: fix big-endian probe Steven Rostedt
2013-09-11 4:30 ` [209/251] USB: mos7720: fix broken control requests Steven Rostedt
2013-09-11 4:30 ` [210/251] USB: keyspan: fix null-deref at disconnect and release Steven Rostedt
2013-09-11 4:30 ` [211/251] USB-Serial: Fix error handling of usb_wwan Steven Rostedt
2013-09-11 4:30 ` [212/251] wusbcore: fix kernel panic when disconnecting a wireless USB->serial device Steven Rostedt
2013-09-11 4:30 ` [213/251] ARM: 7809/1: perf: fix event validation for software group leaders Steven Rostedt
2013-09-11 4:30 ` [214/251] m68k/atari: ARAnyM - Fix NatFeat module support Steven Rostedt
2013-09-11 4:30 ` [215/251] jbd2: Fix use after free after error in jbd2_journal_dirty_metadata() Steven Rostedt
2013-09-11 4:30 ` [216/251] ACPI: add _STA evaluation at do_acpi_find_child() Steven Rostedt
2013-09-11 4:30 ` [217/251] xen/smp: initialize IPI vectors before marking CPU online Steven Rostedt
2013-09-11 4:30 ` [218/251] zd1201: do not use stack as URB transfer_buffer Steven Rostedt
2013-09-11 4:30 ` [219/251] xen/events: initialize local per-cpu mask for all possible events Steven Rostedt
2013-09-11 4:30 ` [220/251] ARM: davinci: nand: specify ecc strength Steven Rostedt
2013-09-11 4:30 ` [221/251] ARM: at91/DT: fix at91sam9n12ek memory node Steven Rostedt
2013-09-11 4:30 ` [222/251] ARM: 7816/1: CONFIG_KUSER_HELPERS: fix help text Steven Rostedt
2013-09-11 4:30 ` [223/251] drm/i915: Invalidate TLBs for the rings after a reset Steven Rostedt
2013-09-11 4:30 ` [224/251] of: fdt: fix memory initialization for expanded DT Steven Rostedt
2013-09-11 4:30 ` [225/251] nilfs2: remove double bio_put() in nilfs_end_bio_write() for BIO_EOPNOTSUPP error Steven Rostedt
2013-09-11 4:30 ` [226/251] nilfs2: fix issue with counting number of bio requests for BIO_EOPNOTSUPP error detection Steven Rostedt
2013-09-11 4:30 ` [227/251] drivers/platform/olpc/olpc-ec.c: initialise earlier Steven Rostedt
2013-09-11 4:30 ` [228/251] sata_fsl: save irqs while coalescing Steven Rostedt
2013-09-11 4:30 ` [229/251] Hostap: copying wrong data prism2_ioctl_giwaplist() Steven Rostedt
2013-09-11 4:30 ` [230/251] libata: apply behavioral quirks to sil3826 PMP Steven Rostedt
2013-09-11 4:30 ` [231/251] iwlwifi: dvm: fix calling ieee80211_chswitch_done() with NULL Steven Rostedt
2013-09-11 4:30 ` [232/251] iwlwifi: pcie: disable L1 Active after pci_enable_device Steven Rostedt
2013-09-11 4:31 ` [233/251] zfcp: fix lock imbalance by reworking request queue locking Steven Rostedt
2013-09-11 4:31 ` [234/251] zfcp: fix schedule-inside-lock in scsi_device list loops Steven Rostedt
2013-09-11 4:31 ` [235/251] sg: Fix user memory corruption when SG_IO is interrupted by a signal Steven Rostedt
2013-09-11 4:31 ` [236/251] x86/xen: do not identity map UNUSABLE regions in the machine E820 Steven Rostedt
2013-09-11 4:31 ` [237/251] jfs: fix readdir cookie incompatibility with NFSv4 Steven Rostedt
2013-09-11 4:31 ` [238/251] ALSA: hda - Add inverted digital mic fixup for Acer Aspire One Steven Rostedt
2013-09-11 4:31 ` [239/251] ALSA: opti9xx: Fix conflicting driver object name Steven Rostedt
2013-09-11 4:31 ` [240/251] powerpc: Work around gcc miscompilation of __pa() on 64-bit Steven Rostedt
2013-09-11 4:31 ` [241/251] powerpc: Dont Oops when accessing /proc/powerpc/lparcfg without hypervisor Steven Rostedt
2013-09-11 4:31 ` [242/251] powerpc/hvsi: Increase handshake timeout from 200ms to 400ms Steven Rostedt
2013-09-11 4:31 ` [243/251] regmap: Add another missing header for !CONFIG_REGMAP stubs Steven Rostedt
2013-09-11 4:31 ` [244/251] drivers/base/memory.c: fix show_mem_removable() to handle missing sections Steven Rostedt
2013-09-11 4:31 ` [245/251] workqueue: cond_resched() after processing each work item Steven Rostedt
2013-09-11 4:31 ` [246/251] drm/vmwgfx: Split GMR2_REMAP commands if they are to large Steven Rostedt
2013-09-11 4:31 ` [247/251] drm/i915: ivb: fix edp voltage swing reg val Steven Rostedt
2013-09-11 4:31 ` [248/251] SUNRPC: Fix memory corruption issue on 32-bit highmem systems Steven Rostedt
2013-09-11 4:31 ` [249/251] ath9k_htc: Restore skb headroom when returning skb to mac80211 Steven Rostedt
2013-09-11 4:31 ` [250/251] ath9k: Enable PLL fix only for AR9340/AR9330 Steven Rostedt
2013-09-11 4:31 ` [251/251] target: Fix trailing ASCII space usage in INQUIRY vendor+model Steven Rostedt
2013-09-11 4:34 ` [000/251] 3.6.11.9-rc1-stable review Steven Rostedt
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=20130911042855.955416645@goodmis.org \
--to=rostedt@goodmis.org \
--cc=JBottomley@Parallels.com \
--cc=daniel.hansel@linux.vnet.ibm.com \
--cc=linux-kernel@vger.kernel.org \
--cc=maier@linux.vnet.ibm.com \
--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).