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, stable@vger.kernel.org
Cc: Greg KH <gregkh@linuxfoundation.org>,
	alan@lxorguk.ukuu.org.uk, Chris Wilson <chris@chris-wilson.co.uk>,
	Daniel Vetter <daniel.vetter@ffwll.ch>
Subject: [ 208/262] drm/i915: Reduce a pin-leak BUG into a WARN
Date: Fri, 28 Sep 2012 11:52:17 -0700	[thread overview]
Message-ID: <20120928183022.681377051@linuxfoundation.org> (raw)
In-Reply-To: <20120928182957.993484211@linuxfoundation.org>

From: Greg KH <gregkh@linuxfoundation.org>

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

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

From: Chris Wilson <chris@chris-wilson.co.uk>

commit 7e81a42e341a4f15d76624b7c02ffb21b085b56f upstream.

Pin-leaks persist and we get the perennial bug reports of machine
lockups to the BUG_ON(pin_count==MAX). If we instead loudly report that
the object cannot be pinned at that time it should prevent the driver from
locking up, and hopefully restore a semblance of working whilst still
leaving us a OOPS to debug.

Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>

---
 drivers/gpu/drm/i915/i915_gem.c |    3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

--- a/drivers/gpu/drm/i915/i915_gem.c
+++ b/drivers/gpu/drm/i915/i915_gem.c
@@ -3044,7 +3044,8 @@ i915_gem_object_pin(struct drm_i915_gem_
 {
 	int ret;
 
-	BUG_ON(obj->pin_count == DRM_I915_GEM_OBJECT_MAX_PIN_COUNT);
+	if (WARN_ON(obj->pin_count == DRM_I915_GEM_OBJECT_MAX_PIN_COUNT))
+		return -EBUSY;
 
 	if (obj->gtt_space != NULL) {
 		if ((alignment && obj->gtt_offset & (alignment - 1)) ||



  parent reply	other threads:[~2012-09-28 19:20 UTC|newest]

Thread overview: 279+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2012-09-28 18:48 [ 000/262] 3.5.5-stable review Greg Kroah-Hartman
2012-09-28 18:48 ` [ 001/262] codel: refine one condition to avoid a nul rec_inv_sqrt Greg Kroah-Hartman
2012-09-28 18:48 ` [ 002/262] net: Allow driver to limit number of GSO segments per skb Greg Kroah-Hartman
2012-09-28 18:48 ` [ 003/262] sfc: Fix maximum number of TSO segments and minimum TX queue size Greg Kroah-Hartman
2012-09-28 18:48 ` [ 004/262] tcp: Apply device TSO segment limit earlier Greg Kroah-Hartman
2012-09-28 18:48 ` [ 005/262] net_sched: gact: Fix potential panic in tcf_gact() Greg Kroah-Hartman
2012-09-28 18:48 ` [ 006/262] isdnloop: fix and simplify isdnloop_init() Greg Kroah-Hartman
2012-09-28 18:48 ` [ 007/262] pptp: lookup route with the proper net namespace Greg Kroah-Hartman
2012-09-28 18:48 ` [ 008/262] net/core: Fix potential memory leak in dev_set_alias() Greg Kroah-Hartman
2012-09-28 18:48 ` [ 009/262] af_packet: remove BUG statement in tpacket_destruct_skb Greg Kroah-Hartman
2012-09-28 18:48 ` [ 010/262] ipv6: addrconf: Avoid calling netdevice notifiers with RCU read-side lock Greg Kroah-Hartman
2012-09-28 18:49 ` [ 011/262] atm: fix info leak in getsockopt(SO_ATMPVC) Greg Kroah-Hartman
2012-09-28 18:49 ` [ 012/262] atm: fix info leak via getsockname() Greg Kroah-Hartman
2012-09-28 18:49 ` [ 013/262] Bluetooth: HCI - Fix info leak in getsockopt(HCI_FILTER) Greg Kroah-Hartman
2012-09-28 18:49 ` [ 014/262] Bluetooth: HCI - Fix info leak via getsockname() Greg Kroah-Hartman
2012-09-28 18:49 ` [ 015/262] Bluetooth: RFCOMM - Fix info leak in getsockopt(BT_SECURITY) Greg Kroah-Hartman
2012-09-28 18:49 ` [ 016/262] Bluetooth: RFCOMM - Fix info leak in ioctl(RFCOMMGETDEVLIST) Greg Kroah-Hartman
2012-09-28 18:49 ` [ 017/262] Bluetooth: RFCOMM - Fix info leak via getsockname() Greg Kroah-Hartman
2012-09-28 18:49 ` [ 018/262] Bluetooth: L2CAP " Greg Kroah-Hartman
2012-09-28 18:49 ` [ 019/262] l2tp: fix " Greg Kroah-Hartman
2012-09-28 18:49 ` [ 020/262] llc: " Greg Kroah-Hartman
2012-09-28 18:49 ` [ 021/262] dccp: fix info leak via getsockopt(DCCP_SOCKOPT_CCID_TX_INFO) Greg Kroah-Hartman
2012-09-28 18:49 ` [ 022/262] ipvs: fix info leak in getsockopt(IP_VS_SO_GET_TIMEOUT) Greg Kroah-Hartman
2012-09-28 18:49 ` [ 023/262] net: fix info leak in compat dev_ifconf() Greg Kroah-Hartman
2012-09-28 18:49 ` [ 024/262] af_packet: dont emit packet on orig fanout group Greg Kroah-Hartman
2012-09-28 18:49 ` [ 025/262] af_netlink: force credentials passing [CVE-2012-3520] Greg Kroah-Hartman
2012-09-28 18:49 ` [ 026/262] netlink: fix possible spoofing from non-root processes Greg Kroah-Hartman
2012-09-28 18:49 ` [ 027/262] tcp: fix cwnd reduction for non-sack recovery Greg Kroah-Hartman
2012-09-28 18:49 ` [ 028/262] sfc: Fix reporting of IPv4 full filters through ethtool Greg Kroah-Hartman
2012-09-28 18:49 ` [ 029/262] gianfar: fix default tx vlan offload feature flag Greg Kroah-Hartman
2012-09-28 18:49 ` [ 030/262] l2tp: avoid to use synchronize_rcu in tunnel free function Greg Kroah-Hartman
2012-09-28 18:49 ` [ 031/262] net: ipv4: ipmr_expire_timer causes crash when removing net namespace Greg Kroah-Hartman
2012-09-28 18:49 ` [ 032/262] bnx2x: fix 57840_MF pci id Greg Kroah-Hartman
2012-09-28 18:49 ` [ 033/262] cs89x0 : packet reception not working Greg Kroah-Hartman
2012-09-28 18:49 ` [ 034/262] openvswitch: Reset upper layer protocol info on internal devices Greg Kroah-Hartman
2012-09-28 18:49 ` [ 035/262] workqueue: reimplement work_on_cpu() using system_wq Greg Kroah-Hartman
2012-09-28 18:49 ` [ 036/262] cpufreq/powernow-k8: workqueue user shouldnt migrate the kworker to another CPU Greg Kroah-Hartman
2012-09-28 18:49 ` [ 037/262] cciss: fix handling of protocol error Greg Kroah-Hartman
2012-09-28 18:49 ` [ 038/262] vfs: make O_PATH file descriptors usable for fstat() Greg Kroah-Hartman
2012-09-28 18:49 ` [ 039/262] vfs: dcache: use DCACHE_DENTRY_KILLED instead of DCACHE_DISCONNECTED in d_kill() Greg Kroah-Hartman
2012-09-28 18:49 ` [ 040/262] netconsole: remove a redundant netconsole_target_put() Greg Kroah-Hartman
2012-09-28 18:49 ` [ 041/262] eCryptfs: Copy up attributes of the lower target inode after rename Greg Kroah-Hartman
2012-09-28 18:49 ` [ 042/262] target: Fix ->data_length re-assignment bug with SCSI overflow Greg Kroah-Hartman
2012-09-28 18:49 ` [ 043/262] target: simplify code around transport_get_sense_data Greg Kroah-Hartman
2012-09-28 18:49 ` [ 044/262] ARM: 7496/1: hw_breakpoint: dont rely on dfsr to show watchpoint access type Greg Kroah-Hartman
2012-09-28 18:49 ` [ 045/262] ARM: 7501/1: decompressor: reset ttbcr for VMSA ARMv7 cores Greg Kroah-Hartman
2012-09-29 12:25   ` Ben Hutchings
2012-09-28 18:49 ` [ 046/262] ARM: 7513/1: Make sure dtc is built before running it Greg Kroah-Hartman
2012-09-28 18:49 ` [ 047/262] ARM: 7526/1: traps: send SIGILL if get_user fails on undef handling path Greg Kroah-Hartman
2012-09-28 18:49 ` [ 048/262] ARM: 7527/1: uaccess: explicitly check __user pointer when !CPU_USE_DOMAINS Greg Kroah-Hartman
2012-09-28 18:49 ` [ 049/262] Staging: Android alarm: IOCTL command encoding fix Greg Kroah-Hartman
2012-09-28 18:49 ` [ 050/262] ARM: OMAP: timer: obey the !CONFIG_OMAP_32K_TIMER Greg Kroah-Hartman
2012-09-28 18:49 ` [ 051/262] ARM: clk-imx25: Fix SSI clock registration Greg Kroah-Hartman
2012-09-28 18:49 ` [ 052/262] ARM: clk-imx35: " Greg Kroah-Hartman
2012-09-28 18:49 ` [ 053/262] ARM: Fix ioremap() of address zero Greg Kroah-Hartman
2012-09-28 18:49 ` [ 054/262] ALSA: hda - Fix missing Master volume for STAC9200/925x Greg Kroah-Hartman
2012-09-28 18:49 ` [ 055/262] ALSA: usb-audio: Fix bogus error messages for delay accounting Greg Kroah-Hartman
2012-09-28 18:49 ` [ 056/262] ALSA: hda - Fix Oops at codec reset/reconfig Greg Kroah-Hartman
2012-09-28 18:49 ` [ 057/262] ALSA: ice1724: Use linear scale for AK4396 volume control Greg Kroah-Hartman
2012-09-28 18:49 ` [ 058/262] ALSA: hda - Workaround for silent output on VAIO Z with ALC889 Greg Kroah-Hartman
2012-09-28 18:49 ` [ 059/262] Staging: speakup: fix an improperly-declared variable Greg Kroah-Hartman
2012-09-28 18:49 ` [ 060/262] staging: zcache: fix cleancache race condition with shrinker Greg Kroah-Hartman
2012-09-28 18:49 ` [ 061/262] staging: vt6656: [BUG] - Failed connection, incorrect endian Greg Kroah-Hartman
2012-09-28 18:49 ` [ 062/262] staging: r8712u: fix bug in r8712_recv_indicatepkt() Greg Kroah-Hartman
2012-09-28 18:49 ` [ 063/262] staging: comedi: amplc_pci224: Fix PCI ref count Greg Kroah-Hartman
2012-09-28 18:49 ` [ 064/262] staging: comedi: das08: Correct AO output for das08jr-16-ao Greg Kroah-Hartman
2012-09-28 18:49 ` [ 065/262] staging: comedi: das08: Correct AI encoding " Greg Kroah-Hartman
2012-09-28 18:49 ` [ 066/262] USB: option: replace ZTE K5006-Z entry with vendor class rule Greg Kroah-Hartman
2012-09-28 18:49 ` [ 067/262] fs/proc: fix potential unregister_sysctl_table hang Greg Kroah-Hartman
2012-09-28 18:49 ` [ 068/262] sound: tegra_alc5632: remove HP detect GPIO inversion Greg Kroah-Hartman
2012-09-28 18:49 ` [ 069/262] perf_event: Switch to internal refcount, fix race with close() Greg Kroah-Hartman
2012-09-28 18:49 ` [ 070/262] ACPI / PM: Infer parent power state from child if unknown, v2 Greg Kroah-Hartman
2012-09-28 18:50 ` [ 071/262] ACPI / PM: Fix resource_lock dead lock in acpi_power_on_device Greg Kroah-Hartman
2012-09-28 18:50 ` [ 072/262] ACPI / PM: Use KERN_DEBUG when no power resources are found Greg Kroah-Hartman
2012-09-28 18:50 ` [ 073/262] mmc: mxs-mmc: fix deadlock in SDIO IRQ case Greg Kroah-Hartman
2012-09-28 18:50 ` [ 074/262] mmc: mxs-mmc: fix deadlock caused by recursion loop Greg Kroah-Hartman
2012-09-29  7:28   ` Attila Kinali
2012-09-28 18:50 ` [ 075/262] mmc: sdhci-esdhc: break out early if clock is 0 Greg Kroah-Hartman
2012-09-28 18:50 ` [ 076/262] mmc: atmel-mci: not busy flag has also to be used for read operations Greg Kroah-Hartman
2012-09-28 18:50 ` [ 077/262] mmc: card: Skip secure erase on MoviNAND; causes unrecoverable corruption Greg Kroah-Hartman
2012-09-28 18:50 ` [ 078/262] oprofile, s390: Fix uninitialized memory access when writing to oprofilefs Greg Kroah-Hartman
2012-09-28 18:50 ` [ 079/262] usb: chipidea: udc: add pullup fuction, needed by the uvc gadget Greg Kroah-Hartman
2012-09-28 18:50 ` [ 080/262] usb: gadget: dummy_hcd: fixup error probe path Greg Kroah-Hartman
2012-09-29 19:01   ` Ben Hutchings
2012-09-30 12:30     ` Sebastian Andrzej Siewior
2012-09-28 18:50 ` [ 081/262] usb: gadget: dummy_hcd: add support for USB_DT_BOS on rh Greg Kroah-Hartman
2012-09-28 18:50 ` [ 082/262] usb: gadget: at91udc: dont overwrite driver data Greg Kroah-Hartman
2012-09-28 18:50 ` [ 083/262] usb: gadget: at91udc: Dont check for ep->ep.desc Greg Kroah-Hartman
2012-09-28 18:50 ` [ 084/262] ahci: Add alternate identifier for the 88SE9172 Greg Kroah-Hartman
2012-09-28 18:50 ` [ 085/262] kobject: fix oops with "input0: bad kobj_uevent_env content in show_uevent()" Greg Kroah-Hartman
2012-09-28 18:50 ` [ 086/262] dyndbg: fix for SOH in logging messages Greg Kroah-Hartman
2012-09-28 18:50 ` [ 087/262] Redefine ATOMIC_INIT and ATOMIC64_INIT to drop the casts Greg Kroah-Hartman
2012-09-28 18:50 ` [ 088/262] digsig: add hash size comparision on signature verification Greg Kroah-Hartman
2012-09-28 18:50 ` [ 089/262] SUNRPC: Fix a UDP transport regression Greg Kroah-Hartman
2012-09-28 19:46   ` Myklebust, Trond
2012-09-28 21:05     ` Greg Kroah-Hartman
2012-09-28 18:50 ` [ 090/262] md: Dont truncate size at 4TB for RAID0 and Linear Greg Kroah-Hartman
2012-09-28 18:50 ` [ 091/262] md/raid10: fix problem with on-stack allocation of r10bio structure Greg Kroah-Hartman
2012-09-28 18:50 ` [ 092/262] md: make sure metadata is updated when spares are activated or removed Greg Kroah-Hartman
2012-09-28 18:50 ` [ 093/262] md/raid5: fix calculate of degraded when a replacement becomes active Greg Kroah-Hartman
2012-09-28 18:50 ` [ 094/262] nbd: clear waiting_queue on shutdown Greg Kroah-Hartman
2012-09-28 18:50 ` [ 095/262] ASoC: samsung dma - Dont indicate support for pause/resume Greg Kroah-Hartman
2012-09-28 18:50 ` [ 096/262] mm/page_alloc: fix the page address of higher pages buddy calculation Greg Kroah-Hartman
2012-09-28 18:50 ` [ 097/262] drivers/rtc/rtc-twl.c: ensure all interrupts are disabled during probe Greg Kroah-Hartman
2012-09-28 18:50 ` [ 098/262] hwmon: (twl4030-madc-hwmon) Initialize uninitialized structure elements Greg Kroah-Hartman
2012-09-28 18:50 ` [ 099/262] hwmon: (ina2xx) Fix word size register read and write operations Greg Kroah-Hartman
2012-09-28 18:50 ` [ 100/262] sched: Add missing call to calc_load_exit_idle() Greg Kroah-Hartman
2012-09-28 18:50 ` [ 101/262] gma500: Fix regression on Oaktrail devices Greg Kroah-Hartman
2012-09-28 18:50 ` [ 102/262] mISDN: Fix wrong usage of flush_work_sync while holding locks Greg Kroah-Hartman
2012-09-28 18:50 ` [ 103/262] can: mcp251x: avoid repeated frame bug Greg Kroah-Hartman
2012-09-28 18:50 ` [ 104/262] mm/ia64: fix a memory block size bug Greg Kroah-Hartman
2012-09-28 18:50 ` [ 105/262] memory hotplug: fix section info double registration bug Greg Kroah-Hartman
2012-09-28 18:50 ` [ 106/262] xen/m2p: do not reuse kmap_op->dev_bus_addr Greg Kroah-Hartman
2012-09-28 18:50 ` [ 107/262] xen/boot: Disable BIOS SMP MP table search Greg Kroah-Hartman
2012-09-28 18:50 ` [ 108/262] xen/boot: Disable NUMA for PV guests Greg Kroah-Hartman
2012-09-28 18:50 ` [ 109/262] hwmon: (fam15h_power) Tweak runavg_range on resume Greg Kroah-Hartman
2012-09-28 18:50 ` [ 110/262] hwmon: (ads7871) Add name sysfs attribute Greg Kroah-Hartman
2012-09-28 18:50 ` [ 111/262] hwmon: (ad7314) " Greg Kroah-Hartman
2012-09-28 18:50 ` [ 112/262] dj: memory scribble in logi_dj Greg Kroah-Hartman
2012-09-28 18:50 ` [ 113/262] HID: Fix logitech-dj: missing Unifying device issue Greg Kroah-Hartman
2012-09-28 18:50 ` [ 114/262] cifs: fix return value in cifsConvertToUTF16 Greg Kroah-Hartman
2012-09-28 18:50 ` [ 115/262] vmwgfx: add dumb ioctl support Greg Kroah-Hartman
2012-09-28 18:50 ` [ 116/262] net: usbnet: fix softirq storm on suspend Greg Kroah-Hartman
2012-09-28 18:50 ` [ 117/262] ibmveth: Fix alignment of rx queue bug Greg Kroah-Hartman
2012-09-28 18:50 ` [ 118/262] mac80211: clear bssid on auth/assoc failure Greg Kroah-Hartman
2012-09-28 18:50 ` [ 119/262] brcmfmac: fix big endian bug in i-scan Greg Kroah-Hartman
2012-09-28 18:50 ` [ 120/262] brcmfmac: Fix big endian host configuration data Greg Kroah-Hartman
2012-09-28 18:50 ` [ 121/262] SCSI: lpfc: fix problems with -Werror Greg Kroah-Hartman
2012-09-28 18:50 ` [ 122/262] SCSI: mpt2sas: Fix for issue - Unable to boot from the drive connected to HBA Greg Kroah-Hartman
2012-09-28 18:50 ` [ 123/262] SCSI: bnx2i: Fixed NULL ptr deference for 1G bnx2 Linux iSCSI offload Greg Kroah-Hartman
2012-09-28 18:50 ` [ 124/262] SCSI: hpsa: fix handling of protocol error Greg Kroah-Hartman
2012-09-28 18:50 ` [ 125/262] SCSI: scsi: virtio-scsi: Fix address translation failure of HighMem pages used by sg list Greg Kroah-Hartman
2012-09-28 18:50 ` [ 126/262] Bluetooth: mgmt: Fix enabling SSP while powered off Greg Kroah-Hartman
2012-09-28 18:50 ` [ 127/262] Bluetooth: Fix not removing power_off delayed work Greg Kroah-Hartman
2012-09-28 18:50 ` [ 128/262] Bluetooth: mgmt: Fix enabling LE while powered off Greg Kroah-Hartman
2012-09-28 18:50 ` [ 129/262] c/r: prctl: fix build error for no-MMU case Greg Kroah-Hartman
2012-09-28 18:50 ` [ 130/262] hpwdt: Fix kdump issue in hpwdt Greg Kroah-Hartman
2012-09-28 18:51 ` [ 131/262] ARM: imx: armadillo5x0: Fix illegal register access Greg Kroah-Hartman
2012-09-28 18:51 ` [ 132/262] ARM: 7532/1: decompressor: reset SCTLR.TRE for VMSA ARMv7 cores Greg Kroah-Hartman
2012-09-28 18:51 ` [ 133/262] tracing: Dont call page_to_pfn() if page is NULL Greg Kroah-Hartman
2012-09-28 18:51 ` [ 134/262] Input: i8042 - disable mux on Toshiba C850D Greg Kroah-Hartman
2012-09-28 18:51 ` [ 135/262] MIPS: mm: Add compound tail page _mapcount when mapped Greg Kroah-Hartman
2012-09-28 18:51 ` [ 136/262] perf/x86/ibs: Check syscall attribute flags Greg Kroah-Hartman
2012-09-28 18:51 ` [ 137/262] rtlwifi: rtl8192ce: Log message that B_CUT device may not work Greg Kroah-Hartman
2012-09-28 18:51 ` [ 138/262] asix: Support DLink DUB-E100 H/W Ver C1 Greg Kroah-Hartman
2012-09-28 18:51 ` [ 139/262] can: ti_hecc: fix oops during rmmod Greg Kroah-Hartman
2012-09-28 18:51 ` [ 140/262] can: janz-ican3: fix support for older hardware revisions Greg Kroah-Hartman
2012-09-28 18:51 ` [ 141/262] cfg80211: fix possible circular lock on reg_regdb_search() Greg Kroah-Hartman
2012-09-28 18:51 ` [ 142/262] DMA: PL330: Fix potential NULL pointer dereference in pl330_submit_req() Greg Kroah-Hartman
2012-09-28 18:51 ` [ 143/262] DMA: PL330: Check the pointer returned by kzalloc Greg Kroah-Hartman
2012-09-28 18:51 ` [ 144/262] dmaengine: at_hdmac: fix comment in atc_prep_slave_sg() Greg Kroah-Hartman
2012-09-28 18:51 ` [ 145/262] dmaengine: at_hdmac: check that each sg data length is non-null Greg Kroah-Hartman
2012-09-28 18:51 ` [ 146/262] rt2x00: Identify ASUS USB-N53 device Greg Kroah-Hartman
2012-09-28 18:51 ` [ 147/262] rt2x00: Fix word size of rt2500usb MAC_CSR19 register Greg Kroah-Hartman
2012-09-28 18:51 ` [ 148/262] rt2x00: Fix rfkill polling prior to interface start Greg Kroah-Hartman
2012-09-28 18:51 ` [ 149/262] NFS: Fix the initialisation of the readdir cookieverf array Greg Kroah-Hartman
2012-09-28 18:51 ` [ 150/262] NFS: Fix a problem with the legacy binary mount code Greg Kroah-Hartman
2012-09-28 18:51 ` [ 151/262] NFS: return error from decode_getfh in decode open Greg Kroah-Hartman
2012-09-28 18:51 ` [ 152/262] EHCI: Update qTD next pointer in QH overlay region during unlink Greg Kroah-Hartman
2012-09-28 18:51 ` [ 153/262] USB: ftdi_sio: PID for NZR SEM 16+ USB Greg Kroah-Hartman
2012-09-28 18:51 ` [ 154/262] USB: ftdi_sio: do not claim CDC ACM function Greg Kroah-Hartman
2012-09-28 18:51 ` [ 155/262] USB: ftdi-sio: add support for more Physik Instrumente devices Greg Kroah-Hartman
2012-09-28 18:51 ` [ 156/262] usb: chipidea: udc: fix setup of endpoint maxpacket size Greg Kroah-Hartman
2012-09-28 18:51 ` [ 157/262] usb: chipidea: udc: dont stall endpoint if request list is empty in isr_tr_complete_low Greg Kroah-Hartman
2012-09-28 18:51 ` [ 158/262] usb: dwc3: ep0: correct cache sync issue in case of ep0_bounced Greg Kroah-Hartman
2012-09-28 18:51 ` [ 159/262] usb: dwc3: core: fix incorrect usage of resource pointer Greg Kroah-Hartman
2012-09-28 18:51 ` [ 160/262] USB: cdc-wdm: fix wdm_find_device* return value Greg Kroah-Hartman
2012-09-28 18:51 ` [ 161/262] USB: ohci-at91: fix PIO handling in relation with number of ports Greg Kroah-Hartman
2012-09-28 18:51 ` [ 162/262] USB: add device quirk for Joss Optical touchboard Greg Kroah-Hartman
2012-09-28 18:51 ` [ 163/262] rt2800usb: Added rx packet length validity check Greg Kroah-Hartman
2012-09-28 18:51 ` [ 164/262] usb: host: xhci: Fix Compliance Mode on SN65LVPE502CP Hardware Greg Kroah-Hartman
2012-09-28 18:51 ` [ 165/262] Intel xhci: Only switch the switchable ports Greg Kroah-Hartman
2012-09-28 18:51 ` [ 166/262] usb: host: xhci-plat: use ioremap_nocache Greg Kroah-Hartman
2012-09-28 18:51 ` [ 167/262] xhci: Fix a logical vs bitwise AND bug Greg Kroah-Hartman
2012-09-28 18:51 ` [ 168/262] xhci: Make handover code more robust Greg Kroah-Hartman
2012-09-28 18:51 ` [ 169/262] xhci: Recognize USB 3.0 devices as superspeed at powerup Greg Kroah-Hartman
2012-09-28 18:51 ` [ 170/262] usb: host: xhci: fix compilation error for non-PCI based stacks Greg Kroah-Hartman
2012-09-28 18:51 ` [ 171/262] tty: serial: imx: console write routing is unsafe on SMP Greg Kroah-Hartman
2012-09-28 18:51 ` [ 172/262] tty: serial: imx: dont reinit clock in imx_setup_ufcr() Greg Kroah-Hartman
2012-09-28 18:51 ` [ 173/262] mutex: Place lock in contended state after fastpath_lock failure Greg Kroah-Hartman
2012-09-28 19:26   ` Nicolas Pitre
2012-09-28 21:05     ` Greg Kroah-Hartman
2012-09-28 21:16       ` Nicolas Pitre
2012-09-28 21:27         ` Greg Kroah-Hartman
2012-09-28 18:51 ` [ 174/262] x86, avx: dont use avx instructions with "noxsave" boot param Greg Kroah-Hartman
2012-10-07 21:26   ` Ben Hutchings
2012-10-07 23:55     ` H. Peter Anvin
2012-10-08  1:15       ` Ben Hutchings
2012-09-28 18:51 ` [ 175/262] drivers/rtc/rtc-rs5c348.c: fix hour decoding in 12-hour mode Greg Kroah-Hartman
2012-09-28 18:51 ` [ 176/262] PM / Runtime: Fix rpm_resume() return value for power.no_callbacks set Greg Kroah-Hartman
2012-09-28 18:51 ` [ 177/262] PM / Runtime: Clear power.deferred_resume on success in rpm_suspend() Greg Kroah-Hartman
2012-09-28 18:51 ` [ 178/262] PM / Runtime: Check device PM QoS setting before "no callbacks" check Greg Kroah-Hartman
2012-09-28 18:51 ` [ 179/262] drivers/misc/sgi-xp/xpc_uv.c: SGI XPC fails to load when cpu 0 is out of IRQ resources Greg Kroah-Hartman
2012-09-28 18:51 ` [ 180/262] fbcon: fix race condition between console lock and cursor timer (v1.1) Greg Kroah-Hartman
2012-09-28 18:51 ` [ 181/262] drm/radeon: avoid turning off spread spectrum for used pll Greg Kroah-Hartman
2012-09-28 18:51 ` [ 182/262] drm/radeon/ss: use num_crtc rather than hardcoded 6 Greg Kroah-Hartman
2012-09-28 18:51 ` [ 183/262] drm/radeon: fence virtual address and free it once idle v4 Greg Kroah-Hartman
2012-09-28 18:51 ` [ 184/262] drm/radeon: split ATRM support out from the ATPX handler (v3) Greg Kroah-Hartman
2012-09-28 18:51 ` [ 185/262] drm/radeon: implement ACPI VFCT vbios fetch (v3) Greg Kroah-Hartman
2012-09-28 18:51 ` [ 186/262] drm/radeon/kms: extend the Fujitsu D3003-S2 board connector quirk to cover later silicon stepping Greg Kroah-Hartman
2012-09-28 18:51 ` [ 187/262] drm/radeon: init lockup timeout on ring init Greg Kroah-Hartman
2012-09-28 18:51 ` [ 188/262] drm/i915: extract connector update from intel_ddc_get_modes() for reuse Greg Kroah-Hartman
2012-09-28 18:51 ` [ 189/262] drm/i915: fall back to bit-banging if GMBUS fails in CRT EDID reads Greg Kroah-Hartman
2012-09-28 18:51 ` [ 190/262] drm/i915: use hsw rps tuning values everywhere on gen6+ Greg Kroah-Hartman
2012-09-28 18:52 ` [ 191/262] asus-laptop: HRWS/HWRS typo Greg Kroah-Hartman
2012-09-28 18:52 ` [ 192/262] drm: Add EDID_QUIRK_FORCE_REDUCED_BLANKING for ASUS VW222S Greg Kroah-Hartman
2012-09-28 18:52 ` [ 193/262] asus-nb-wmi: add some video toggle keys Greg Kroah-Hartman
2012-09-28 18:52 ` [ 194/262] drm: Check for invalid cursor flags Greg Kroah-Hartman
2012-09-28 18:52 ` [ 195/262] drm/nvc0/copy: check PUNITS to determine which copy engines are disabled Greg Kroah-Hartman
2012-09-28 18:52 ` [ 196/262] drm/radeon/atom: rework DIG modesetting on DCE3+ Greg Kroah-Hartman
2012-09-28 18:52 ` [ 197/262] drm/radeon/atom: powergating fixes for DCE6 Greg Kroah-Hartman
2012-09-28 18:52 ` [ 198/262] drm/i915: fix wrong order of parameters in port checking functions Greg Kroah-Hartman
2012-09-28 18:52 ` [ 199/262] drm/radeon: convert radeon vfct code to use acpi_get_table_with_size Greg Kroah-Hartman
2012-09-28 18:52 ` [ 200/262] drm/radeon: dont disable plls that are in use by other crtcs Greg Kroah-Hartman
2012-09-28 18:52 ` [ 201/262] drm/radeon: force dma32 to fix regression rs4xx,rs6xx,rs740 Greg Kroah-Hartman
2012-09-28 18:52 ` [ 202/262] drm/radeon: fix dig encoder selection on DCE61 Greg Kroah-Hartman
2012-09-28 18:52 ` [ 203/262] drm/radeon: make 64bit fences more robust v3 Greg Kroah-Hartman
2012-09-28 18:52 ` [ 204/262] drm/nouveau: fix booting with plymouth + dumb support Greg Kroah-Hartman
2012-09-28 18:52 ` [ 205/262] drm/i915: set the right gen3 flip_done mode also at resume Greg Kroah-Hartman
2012-09-28 18:52 ` [ 206/262] drm/i915: enable lvds pin pairs before dpll on gen2 Greg Kroah-Hartman
2012-09-28 18:52 ` [ 207/262] drm/i915: HDMI - Clear Audio Enable bit for Hot Plug Greg Kroah-Hartman
2012-09-28 18:52 ` Greg Kroah-Hartman [this message]
2012-09-28 18:52 ` [ 209/262] drm/nv86/fifo: suspend fix Greg Kroah-Hartman
2012-09-28 18:52 ` [ 210/262] iwlwifi: dont double free the interrupt in failure path Greg Kroah-Hartman
2012-09-28 18:52 ` [ 211/262] iwlwifi: protect SRAM debugfs Greg Kroah-Hartman
2012-09-28 18:52 ` [ 212/262] iwlwifi: fix flow handler debug code Greg Kroah-Hartman
2012-09-28 18:52 ` [ 213/262] gianfar: fix phc index build failure Greg Kroah-Hartman
2012-09-28 18:52 ` [ 214/262] workqueue: UNBOUND -> REBIND morphing in rebind_workers() should be atomic Greg Kroah-Hartman
2012-09-28 18:52 ` [ 215/262] Input: wacom - add support to Cintiq 22HD Greg Kroah-Hartman
2012-09-28 18:52 ` [ 216/262] Input: wacom - rearrange type enum Greg Kroah-Hartman
2012-09-28 18:52 ` [ 217/262] Bluetooth: btusb: Add vendor specific ID (0a5c:21f4) BCM20702A0 Greg Kroah-Hartman
2012-09-28 18:52 ` [ 218/262] Bluetooth: add support for atheros 0489:e057 Greg Kroah-Hartman
2012-09-28 18:52 ` [ 219/262] Bluetooth: Add support for Sony Vaio T-Series Greg Kroah-Hartman
2012-09-28 18:52 ` [ 220/262] Bluetooth: Use USB_VENDOR_AND_INTERFACE() for Broadcom devices Greg Kroah-Hartman
2012-09-28 18:52 ` [ 221/262] Bluetooth: Add support for Apple vendor-specific devices Greg Kroah-Hartman
2012-09-28 18:52 ` [ 222/262] Bluetooth: Fix use-after-free bug in SMP Greg Kroah-Hartman
2012-09-28 18:52 ` [ 223/262] Bluetooth: Change signature of smp_conn_security() Greg Kroah-Hartman
2012-09-28 18:52 ` [ 224/262] Bluetooth: Fix sending a HCI Authorization Request over LE links Greg Kroah-Hartman
2012-09-28 18:52 ` [ 225/262] Fix a dead loop in async_synchronize_full() Greg Kroah-Hartman
2012-09-28 18:52 ` [ 226/262] rds: set correct msg_namelen Greg Kroah-Hartman
2012-09-28 18:52 ` [ 227/262] libata: Prevent interface errors with Seagate FreeAgent GoFlex Greg Kroah-Hartman
2012-09-28 18:52 ` [ 228/262] sched: Fix race in task_group() Greg Kroah-Hartman
2012-09-28 18:52 ` [ 229/262] media: lirc_sir: make device registration work Greg Kroah-Hartman
2012-09-28 18:52 ` [ 230/262] time: Improve sanity checking of timekeeping inputs Greg Kroah-Hartman
2012-09-28 18:52 ` [ 231/262] time: Avoid making adjustments if we havent accumulated anything Greg Kroah-Hartman
2012-09-28 18:52 ` [ 232/262] time: Move ktime_t overflow checking into timespec_valid_strict Greg Kroah-Hartman
2012-09-28 18:52 ` [ 233/262] media: Avoid sysfs oops when an rc_devs raw device is absent Greg Kroah-Hartman
2012-09-28 18:52 ` [ 234/262] pch_uart: Fix missing break for 16 byte fifo Greg Kroah-Hartman
2012-09-28 18:52 ` [ 235/262] pch_uart: Fix rx error interrupt setting issue Greg Kroah-Hartman
2012-09-28 18:52 ` [ 236/262] pch_uart: Fix parity " Greg Kroah-Hartman
2012-09-28 18:52 ` [ 237/262] powerpc/85xx: p1022ds: disable the NAND flash node if video is enabled Greg Kroah-Hartman
2012-09-28 18:52 ` [ 238/262] powerpc/85xx: p1022ds: fix DIU/LBC switching with NAND enabled Greg Kroah-Hartman
2012-09-28 18:52 ` [ 239/262] pch_uart: Add eg20t_port lock field, avoid recursive spinlocks Greg Kroah-Hartman
2012-09-28 18:52 ` [ 240/262] OMAP: USB : Fix the EHCI enumeration and core retention issue Greg Kroah-Hartman
2012-09-28 18:52 ` [ 241/262] i2c/powermac: Improve detection of devices from device-tree Greg Kroah-Hartman
2012-09-28 18:52 ` [ 242/262] sound/aoa: Adapt to new i2c probing scheme Greg Kroah-Hartman
2012-09-28 18:52 ` [ 243/262] NFS: Fix Oopses in nfs_lookup_revalidate and nfs4_lookup_revalidate Greg Kroah-Hartman
2012-11-03 20:12   ` Myklebust, Trond
2012-11-05  8:23     ` Greg Kroah-Hartman
2012-11-05 15:37       ` Greg Kroah-Hartman
2012-09-28 18:52 ` [ 244/262] net: qmi_wwan: add ZTE MF821D Greg Kroah-Hartman
2012-09-28 18:52 ` [ 245/262] net: qmi_wwan: add Sierra Wireless devices Greg Kroah-Hartman
2012-09-28 18:52 ` [ 246/262] net: qmi_wwan: new devices: UML290 and K5006-Z Greg Kroah-Hartman
2012-09-28 18:52 ` [ 247/262] irq_remap: disable IRQ remapping if any IOAPIC lacks an IOMMU Greg Kroah-Hartman
2012-09-28 18:52 ` [ 248/262] NFSd: introduce nfsd_destroy() helper Greg Kroah-Hartman
2012-09-28 18:52 ` [ 249/262] NFSd: set nfsd_serv to NULL after service destruction Greg Kroah-Hartman
2012-09-28 18:52 ` [ 250/262] kthread_worker: reorganize to prepare for flush_kthread_work() reimplementation Greg Kroah-Hartman
2012-09-28 18:53 ` [ 251/262] kthread_worker: reimplement flush_kthread_work() to allow freeing the work item being executed Greg Kroah-Hartman
2012-09-28 18:53 ` [ 252/262] usb: chipidea: udc: fix error path in udc_start() Greg Kroah-Hartman
2012-09-28 18:53 ` [ 253/262] usb: chipidea: cleanup dma_pool if udc_start() fails Greg Kroah-Hartman
2012-09-28 18:53 ` [ 254/262] USB: ohci-at91: fix null pointer in ohci_hcd_at91_overcurrent_irq Greg Kroah-Hartman
2012-09-28 18:53 ` [ 255/262] USB: Fix race condition when removing host controllers Greg Kroah-Hartman
2012-09-28 18:53 ` [ 256/262] ALSA: snd-usb: fix next_packet_size calls for pause case Greg Kroah-Hartman
2012-09-28 18:53 ` [ 257/262] ASoC: wm2000: Correct register size Greg Kroah-Hartman
2012-09-28 18:53 ` [ 258/262] gpio-lpc32xx: Fix value handling of gpio_direction_output() Greg Kroah-Hartman
2012-09-28 18:53 ` [ 259/262] md/raid10: fix "enough" function for detecting if array is failed Greg Kroah-Hartman
2012-09-28 18:53 ` [ 260/262] drm/udl: limit modes to the sku pixel limits Greg Kroah-Hartman
2012-09-28 18:53 ` [ 261/262] drm/i915: only enable sdvo hotplug irq if needed Greg Kroah-Hartman
2012-09-28 18:53 ` [ 262/262] vmwgfx: corruption in vmw_event_fence_action_create() Greg Kroah-Hartman

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=20120928183022.681377051@linuxfoundation.org \
    --to=gregkh@linuxfoundation.org \
    --cc=alan@lxorguk.ukuu.org.uk \
    --cc=chris@chris-wilson.co.uk \
    --cc=daniel.vetter@ffwll.ch \
    --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).