All of lore.kernel.org
 help / color / mirror / Atom feed
From: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
To: <linux-kernel@vger.kernel.org>
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
	<stable@vger.kernel.org>,
	Mario Kleiner <mario.kleiner.de@gmail.com>,
	Daniel Vetter <daniel.vetter@ffwll.ch>, <michel@daenzer.net>,
	<vbabka@suse.cz>, <ville.syrjala@linux.intel.com>,
	<dri-devel@lists.freedesktop.org>, <alexander.deucher@amd.com>,
	<christian.koenig@amd.com>, Dave Airlie <airlied@redhat.com>
Subject: [PATCH 4.4 232/342] drm: Fix treatment of drm_vblank_offdelay in drm_vblank_on() (v2)
Date: Tue, 01 Mar 2016 23:55:00 +0000	[thread overview]
Message-ID: <20160301234535.419474625@linuxfoundation.org> (raw)
In-Reply-To: <20160301234527.990448862@linuxfoundation.org>

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

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

From: Mario Kleiner <mario.kleiner.de@gmail.com>

commit bb74fc1bf3072bd3ab4ed5f43afd287a63baf2d7 upstream.

drm_vblank_offdelay can have three different types of values:

< 0 is to be always treated the same as dev->vblank_disable_immediate
= 0 is to be treated as "never disable vblanks"
> 0 is to be treated as disable immediate if kms driver wants it
    that way via dev->vblank_disable_immediate. Otherwise it is
    a disable timeout in msecs.

This got broken in Linux 3.18+ for the implementation of
drm_vblank_on. If the user specified a value of zero which should
always reenable vblank irqs in this function, a kms driver could
override the users choice by setting vblank_disable_immediate
to true. This patch fixes the regression and keeps the user in
control.

v2: Only reenable vblank if there are clients left or the user
    requested to "never disable vblanks" via offdelay 0. Enabling
    vblanks even in the "delayed disable" case (offdelay > 0) was
    specifically added by Ville in commit cd19e52aee922
    ("drm: Kick start vblank interrupts at drm_vblank_on()"),
    but after discussion it turns out that this was done by accident.

    Citing Ville: "I think it just ended up as a mess due to changing
    some of the semantics of offdelay<0 vs. offdelay==0 vs.
    disable_immediate during the review of the series. So yeah, given
    how drm_vblank_put() works now, I'd just make this check for
    offdelay==0."

Signed-off-by: Mario Kleiner <mario.kleiner.de@gmail.com>
Reviewed-by: Daniel Vetter <daniel.vetter@ffwll.ch>
Cc: michel@daenzer.net
Cc: vbabka@suse.cz
Cc: ville.syrjala@linux.intel.com
Cc: daniel.vetter@ffwll.ch
Cc: dri-devel@lists.freedesktop.org
Cc: alexander.deucher@amd.com
Cc: christian.koenig@amd.com
Signed-off-by: Dave Airlie <airlied@redhat.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>

---
 drivers/gpu/drm/drm_irq.c |    3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

--- a/drivers/gpu/drm/drm_irq.c
+++ b/drivers/gpu/drm/drm_irq.c
@@ -1494,8 +1494,7 @@ void drm_vblank_on(struct drm_device *de
 	 * re-enable interrupts if there are users left, or the
 	 * user wishes vblank interrupts to be enabled all the time.
 	 */
-	if (atomic_read(&vblank->refcount) != 0 ||
-	    (!dev->vblank_disable_immediate && drm_vblank_offdelay == 0))
+	if (atomic_read(&vblank->refcount) != 0 || drm_vblank_offdelay == 0)
 		WARN_ON(drm_vblank_enable(dev, pipe));
 	spin_unlock_irqrestore(&dev->vbl_lock, irqflags);
 }

WARNING: multiple messages have this Message-ID (diff)
From: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
To: linux-kernel@vger.kernel.org
Cc: dri-devel@lists.freedesktop.org,
	Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
	michel@daenzer.net, stable@vger.kernel.org,
	Daniel Vetter <daniel.vetter@ffwll.ch>,
	alexander.deucher@amd.com, Dave Airlie <airlied@redhat.com>,
	christian.koenig@amd.com, vbabka@suse.cz
Subject: [PATCH 4.4 232/342] drm: Fix treatment of drm_vblank_offdelay in drm_vblank_on() (v2)
Date: Tue, 01 Mar 2016 23:55:01 +0000	[thread overview]
Message-ID: <20160301234535.419474625@linuxfoundation.org> (raw)
In-Reply-To: <20160301234527.990448862@linuxfoundation.org>

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

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

From: Mario Kleiner <mario.kleiner.de@gmail.com>

commit bb74fc1bf3072bd3ab4ed5f43afd287a63baf2d7 upstream.

drm_vblank_offdelay can have three different types of values:

< 0 is to be always treated the same as dev->vblank_disable_immediate
= 0 is to be treated as "never disable vblanks"
> 0 is to be treated as disable immediate if kms driver wants it
    that way via dev->vblank_disable_immediate. Otherwise it is
    a disable timeout in msecs.

This got broken in Linux 3.18+ for the implementation of
drm_vblank_on. If the user specified a value of zero which should
always reenable vblank irqs in this function, a kms driver could
override the users choice by setting vblank_disable_immediate
to true. This patch fixes the regression and keeps the user in
control.

v2: Only reenable vblank if there are clients left or the user
    requested to "never disable vblanks" via offdelay 0. Enabling
    vblanks even in the "delayed disable" case (offdelay > 0) was
    specifically added by Ville in commit cd19e52aee922
    ("drm: Kick start vblank interrupts at drm_vblank_on()"),
    but after discussion it turns out that this was done by accident.

    Citing Ville: "I think it just ended up as a mess due to changing
    some of the semantics of offdelay<0 vs. offdelay==0 vs.
    disable_immediate during the review of the series. So yeah, given
    how drm_vblank_put() works now, I'd just make this check for
    offdelay==0."

Signed-off-by: Mario Kleiner <mario.kleiner.de@gmail.com>
Reviewed-by: Daniel Vetter <daniel.vetter@ffwll.ch>
Cc: michel@daenzer.net
Cc: vbabka@suse.cz
Cc: ville.syrjala@linux.intel.com
Cc: daniel.vetter@ffwll.ch
Cc: dri-devel@lists.freedesktop.org
Cc: alexander.deucher@amd.com
Cc: christian.koenig@amd.com
Signed-off-by: Dave Airlie <airlied@redhat.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>

---
 drivers/gpu/drm/drm_irq.c |    3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

--- a/drivers/gpu/drm/drm_irq.c
+++ b/drivers/gpu/drm/drm_irq.c
@@ -1494,8 +1494,7 @@ void drm_vblank_on(struct drm_device *de
 	 * re-enable interrupts if there are users left, or the
 	 * user wishes vblank interrupts to be enabled all the time.
 	 */
-	if (atomic_read(&vblank->refcount) != 0 ||
-	    (!dev->vblank_disable_immediate && drm_vblank_offdelay == 0))
+	if (atomic_read(&vblank->refcount) != 0 || drm_vblank_offdelay == 0)
 		WARN_ON(drm_vblank_enable(dev, pipe));
 	spin_unlock_irqrestore(&dev->vbl_lock, irqflags);
 }
_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/dri-devel

  parent reply	other threads:[~2016-03-02  0:34 UTC|newest]

Thread overview: 392+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-03-01 23:53 [PATCH 4.4 000/342] 4.4.4-stable review Greg Kroah-Hartman
2016-03-01 23:53 ` [PATCH 4.4 012/342] inet: frag: Always orphan skbs inside ip_defrag() Greg Kroah-Hartman
2016-03-01 23:53   ` Greg Kroah-Hartman
2016-03-01 23:53 ` [PATCH 4.4 010/342] net: dsa: fix mv88e6xxx switches Greg Kroah-Hartman
2016-03-01 23:53 ` [PATCH 4.4 011/342] tipc: fix connection abort during subscription cancel Greg Kroah-Hartman
2016-03-01 23:53 ` [PATCH 4.4 001/342] af_iucv: Validate socket address length in iucv_sock_bind() Greg Kroah-Hartman
2016-03-01 23:53 ` [PATCH 4.4 014/342] tcp: beware of alignments in tcp_get_info() Greg Kroah-Hartman
2016-03-01 23:53 ` [PATCH 4.4 013/342] switchdev: Require RTNL mutex to be held when sending FDB notifications Greg Kroah-Hartman
2016-03-01 23:53 ` [PATCH 4.4 018/342] ipv6: fix a lockdep splat Greg Kroah-Hartman
2016-03-01 23:53   ` Greg Kroah-Hartman
2016-03-01 23:53 ` [PATCH 4.4 015/342] ipv6: enforce flowi6_oif usage in ip6_dst_lookup_tail() Greg Kroah-Hartman
2016-03-01 23:53 ` [PATCH 4.4 016/342] ipv6/udp: use sticky pktinfo egress ifindex on connect() Greg Kroah-Hartman
2016-03-01 23:53 ` [PATCH 4.4 020/342] tcp: do not drop syn_recv on all icmp reports Greg Kroah-Hartman
2016-03-01 23:53 ` [PATCH 4.4 017/342] ipv6: addrconf: Fix recursive spin lock call Greg Kroah-Hartman
2016-03-01 23:53 ` [PATCH 4.4 019/342] unix: correctly track in-flight fds in sending process user_struct Greg Kroah-Hartman
2016-03-01 23:53 ` [PATCH 4.4 021/342] net:Add sysctl_max_skb_frags Greg Kroah-Hartman
2016-03-01 23:53 ` [PATCH 4.4 002/342] gro: Make GRO aware of lightweight tunnels Greg Kroah-Hartman
2016-03-01 23:53 ` [PATCH 4.4 022/342] tg3: Fix for tg3 transmit queue 0 timed out when too many gso_segs Greg Kroah-Hartman
2016-03-01 23:53   ` Greg Kroah-Hartman
2016-03-01 23:53 ` [PATCH 4.4 023/342] enic: increment devcmd2 result ring in case of timeout Greg Kroah-Hartman
2016-03-01 23:53 ` [PATCH 4.4 028/342] bonding: Fix ARP monitor validation Greg Kroah-Hartman
2016-03-01 23:53 ` [PATCH 4.4 026/342] flow_dissector: Fix unaligned access in __skb_flow_dissector when used by eth_get_headlen Greg Kroah-Hartman
2016-03-01 23:53 ` [PATCH 4.4 027/342] bpf: fix branch offset adjustment on backjumps after patching ctx expansion Greg Kroah-Hartman
2016-03-01 23:53 ` [PATCH 4.4 024/342] sctp: translate network order to host order when users get a hmacid Greg Kroah-Hartman
2016-03-01 23:53 ` [PATCH 4.4 025/342] net: Copy inner L3 and L4 headers as unaligned on GRE TEB Greg Kroah-Hartman
2016-03-01 23:53 ` [PATCH 4.4 003/342] net: dp83640: Fix tx timestamp overflow handling Greg Kroah-Hartman
2016-03-01 23:53 ` [PATCH 4.4 029/342] ipv4: fix memory leaks in ip_cmsg_send() callers Greg Kroah-Hartman
2016-03-01 23:53 ` [PATCH 4.4 004/342] tunnels: Allow IPv6 UDP checksums to be correctly controlled Greg Kroah-Hartman
2016-03-01 23:53 ` [PATCH 4.4 005/342] lwt: fix rx checksum setting for lwt devices tunneling over ipv6 Greg Kroah-Hartman
2016-03-01 23:53 ` [PATCH 4.4 006/342] tcp: fix NULL deref in tcp_v4_send_ack() Greg Kroah-Hartman
2016-03-01 23:53 ` [PATCH 4.4 007/342] af_unix: fix struct pid memory leak Greg Kroah-Hartman
2016-03-01 23:53 ` [PATCH 4.4 009/342] sctp: allow setting SCTP_SACK_IMMEDIATELY by the application Greg Kroah-Hartman
2016-03-01 23:53 ` [PATCH 4.4 008/342] pptp: fix illegal memory access caused by multiple bind()s Greg Kroah-Hartman
2016-03-01 23:53 ` [PATCH 4.4 041/342] route: check and remove route cache when we get route Greg Kroah-Hartman
2016-03-01 23:53 ` [PATCH 4.4 031/342] af_unix: Guard against other == sk in unix_dgram_sendmsg Greg Kroah-Hartman
2016-03-01 23:53 ` [PATCH 4.4 040/342] net_sched fix: reclassification needs to consider ether protocol changes Greg Kroah-Hartman
2016-03-01 23:53 ` [PATCH 4.4 043/342] IFF_NO_QUEUE: Fix for drivers not calling ether_setup() Greg Kroah-Hartman
2016-03-01 23:53 ` [PATCH 4.4 045/342] tipc: unlock in error path Greg Kroah-Hartman
2016-03-01 23:53 ` [PATCH 4.4 042/342] tcp/dccp: fix another race at listener dismantle Greg Kroah-Hartman
2016-03-01 23:53 ` [PATCH 4.4 044/342] rtnl: RTM_GETNETCONF: fix wrong return value Greg Kroah-Hartman
2016-03-01 23:53 ` [PATCH 4.4 048/342] ext4: fix bh->b_state corruption Greg Kroah-Hartman
2016-03-01 23:53   ` Greg Kroah-Hartman
2016-03-01 23:53 ` [PATCH 4.4 047/342] sctp: Fix port hash table size computation Greg Kroah-Hartman
2016-03-01 23:53   ` Greg Kroah-Hartman
2016-03-01 23:53 ` [PATCH 4.4 046/342] unix_diag: fix incorrect sign extension in unix_lookup_by_ino Greg Kroah-Hartman
2016-03-01 23:53 ` [PATCH 4.4 049/342] ARM: debug-ll: fix BCM63xx entry for multiplatform Greg Kroah-Hartman
2016-03-01 23:53 ` [PATCH 4.4 032/342] tipc: fix premature addition of node to lookup table Greg Kroah-Hartman
2016-03-01 23:54 ` [PATCH 4.4 051/342] KVM: s390: fix guest fprs memory leak Greg Kroah-Hartman
2016-03-01 23:54 ` [PATCH 4.4 050/342] arm64: errata: Add -mpc-relative-literal-loads to build flags Greg Kroah-Hartman
2016-03-01 23:54 ` [PATCH 4.4 052/342] devm_memremap: Fix error value when memremap failed Greg Kroah-Hartman
2016-03-01 23:54 ` [PATCH 4.4 053/342] drm/gma500: Use correct unref in the gem bo create function Greg Kroah-Hartman
2016-03-01 23:54 ` [PATCH 4.4 054/342] ARM: 8457/1: psci-smp is built only for SMP Greg Kroah-Hartman
2016-03-01 23:54 ` [PATCH 4.4 055/342] lib/ucs2_string: Add ucs2 -> utf8 helper functions Greg Kroah-Hartman
2016-03-01 23:54 ` [PATCH 4.4 059/342] efi: Make efivarfs entries immutable by default Greg Kroah-Hartman
2016-03-01 23:54   ` Greg Kroah-Hartman
2016-03-01 23:54 ` [PATCH 4.4 056/342] efi: Use ucs2_as_utf8 in efivarfs instead of open coding a bad version Greg Kroah-Hartman
2016-03-01 23:54 ` [PATCH 4.4 058/342] efi: Make our variable validation list include the guid Greg Kroah-Hartman
2016-03-01 23:54 ` [PATCH 4.4 057/342] efi: Do variable name validation tests in utf8 Greg Kroah-Hartman
2016-03-01 23:54 ` [PATCH 4.4 033/342] tcp: md5: release request socket instead of listener Greg Kroah-Hartman
2016-03-01 23:54 ` [PATCH 4.4 063/342] bcache: Add a cond_resched() call to gc Greg Kroah-Hartman
2016-03-01 23:54 ` [PATCH 4.4 060/342] efi: Add pstore variables to the deletion whitelist Greg Kroah-Hartman
2016-03-01 23:54 ` [PATCH 4.4 062/342] bcache: fix a livelock when we cause a huge number of cache misses Greg Kroah-Hartman
2016-03-01 23:54   ` Greg Kroah-Hartman
2016-03-01 23:54 ` [PATCH 4.4 064/342] bcache: clear BCACHE_DEV_UNLINK_DONE flag when attaching a backing device Greg Kroah-Hartman
2016-03-01 23:54 ` [PATCH 4.4 061/342] lib/ucs2_string: Correct ucs2 -> utf8 conversion Greg Kroah-Hartman
2016-03-01 23:54 ` [PATCH 4.4 065/342] bcache: fix a leak in bch_cached_dev_run() Greg Kroah-Hartman
2016-03-01 23:54 ` [PATCH 4.4 067/342] bcache: allows use of register in udev to avoid "device_busy" error Greg Kroah-Hartman
2016-03-01 23:54 ` [PATCH 4.4 068/342] bcache: prevent crash on changing writeback_running Greg Kroah-Hartman
2016-03-01 23:54 ` [PATCH 4.4 069/342] bcache: Change refill_dirty() to always scan entire disk if necessary Greg Kroah-Hartman
2016-03-01 23:54 ` [PATCH 4.4 066/342] bcache: unregister reboot notifier if bcache fails to unregister device Greg Kroah-Hartman
2016-03-01 23:54 ` [PATCH 4.4 071/342] can: ems_usb: Fix possible tx overflow Greg Kroah-Hartman
2016-03-01 23:54 ` [PATCH 4.4 034/342] qmi_wwan: add "4G LTE usb-modem U901" Greg Kroah-Hartman
2016-03-01 23:54 ` [PATCH 4.4 070/342] dm thin: fix race condition when destroying thin pool workqueue Greg Kroah-Hartman
2016-03-01 23:54 ` [PATCH 4.4 073/342] USB: cp210x: add IDs for GE B650V3 and B850V3 boards Greg Kroah-Hartman
2016-03-01 23:54 ` [PATCH 4.4 072/342] usb: dwc3: Fix assignment of EP transfer resources Greg Kroah-Hartman
2016-03-01 23:54 ` [PATCH 4.4 074/342] USB: option: add support for SIM7100E Greg Kroah-Hartman
2016-03-01 23:54 ` [PATCH 4.4 075/342] USB: option: add "4G LTE usb-modem U901" Greg Kroah-Hartman
2016-03-01 23:54 ` [PATCH 4.4 077/342] spi: omap2-mcspi: Prevent duplicate gpio_request Greg Kroah-Hartman
2016-03-01 23:54 ` [PATCH 4.4 076/342] drivers: android: correct the size of struct binder_uintptr_t for BC_DEAD_BINDER_DONE Greg Kroah-Hartman
2016-03-01 23:54 ` [PATCH 4.4 035/342] net/mlx4_en: Count HW buffer overrun only once Greg Kroah-Hartman
2016-03-01 23:54 ` [PATCH 4.4 037/342] net/mlx4_en: Avoid changing dev->features directly in run-time Greg Kroah-Hartman
2016-03-01 23:54 ` [PATCH 4.4 036/342] net/mlx4_en: Choose time-stamping shift value according to HW frequency Greg Kroah-Hartman
2016-03-01 23:54   ` Greg Kroah-Hartman
2016-03-01 23:54 ` [PATCH 4.4 038/342] l2tp: Fix error creating L2TP tunnels Greg Kroah-Hartman
2016-03-01 23:54 ` [PATCH 4.4 039/342] pppoe: fix reference counting in PPPoE proxy Greg Kroah-Hartman
2016-03-01 23:54 ` [PATCH 4.4 079/342] drm/i915: shut up gen8+ SDE irq dmesg noise Greg Kroah-Hartman
2016-03-01 23:54 ` [PATCH 4.4 030/342] af_unix: Dont set err in unix_stream_read_generic unless there was an error Greg Kroah-Hartman
2016-03-01 23:54 ` [PATCH 4.4 088/342] Btrfs: igrab inode in writepage Greg Kroah-Hartman
2016-03-01 23:54 ` [PATCH 4.4 089/342] btrfs: statfs: report zero available if metadata are exhausted Greg Kroah-Hartman
2016-03-01 23:54 ` [PATCH 4.4 092/342] Btrfs: fix transaction handle leak on failure to create hard link Greg Kroah-Hartman
2016-03-01 23:54 ` [PATCH 4.4 090/342] Btrfs: send, dont BUG_ON() when an empty symlink is found Greg Kroah-Hartman
2016-03-01 23:54 ` [PATCH 4.4 091/342] Btrfs: fix number of transaction units required to create symlink Greg Kroah-Hartman
2016-03-01 23:54 ` [PATCH 4.4 094/342] btrfs: initialize the seq counter in struct btrfs_device Greg Kroah-Hartman
2016-03-01 23:54 ` [PATCH 4.4 093/342] Btrfs: Initialize btrfs_root->highest_objectid when loading tree root and subvolume roots Greg Kroah-Hartman
2016-03-01 23:54 ` [PATCH 4.4 097/342] s390/dasd: fix refcount for PAV reassignment Greg Kroah-Hartman
2016-03-01 23:54 ` [PATCH 4.4 096/342] s390/dasd: prevent incorrect length error under z/VM after PAV changes Greg Kroah-Hartman
2016-03-01 23:54 ` [PATCH 4.4 095/342] s390: fix normalization bug in exception table sorting Greg Kroah-Hartman
2016-03-01 23:54 ` [PATCH 4.4 098/342] s390/dasd: fix performance drop Greg Kroah-Hartman
2016-03-01 23:54 ` [PATCH 4.4 100/342] s390/fpu: signals vs. floating point control register Greg Kroah-Hartman
2016-03-01 23:54 ` [PATCH 4.4 099/342] s390/compat: correct restore of high gprs on signal return Greg Kroah-Hartman
2016-03-01 23:54 ` [PATCH 4.4 101/342] uml: flush stdout before forking Greg Kroah-Hartman
2016-03-01 23:54 ` [PATCH 4.4 103/342] um: link with -lpthread Greg Kroah-Hartman
2016-03-01 23:54 ` [PATCH 4.4 102/342] uml: fix hostfs mknod() Greg Kroah-Hartman
2016-03-01 23:54 ` [PATCH 4.4 080/342] ocfs2: unlock inode if deleting inode from orphan fails Greg Kroah-Hartman
2016-03-01 23:54 ` [PATCH 4.4 105/342] rtlwifi: rtl_pci: Fix kernel panic Greg Kroah-Hartman
2016-03-01 23:54 ` [PATCH 4.4 104/342] locks: fix unlock when fcntl_setlk races with a close Greg Kroah-Hartman
2016-03-01 23:54 ` [PATCH 4.4 107/342] rtlwifi: rtl8192ce: Fix handling of module parameters Greg Kroah-Hartman
2016-03-01 23:54 ` [PATCH 4.4 106/342] rtlwifi: rtl8192cu: Add missing parameter setup Greg Kroah-Hartman
2016-03-01 23:54 ` [PATCH 4.4 109/342] rtlwifi: rtl8723ae: Fix initialization of module parameters Greg Kroah-Hartman
2016-03-01 23:54 ` [PATCH 4.4 108/342] rtlwifi: rtl8192de: Fix incorrect module parameter descriptions Greg Kroah-Hartman
2016-03-01 23:54 ` [PATCH 4.4 081/342] mm: thp: fix SMP race condition between THP page fault and MADV_DONTNEED Greg Kroah-Hartman
2016-03-01 23:54 ` [PATCH 4.4 110/342] rtlwifi: rtl8192se: Fix module parameter initialization Greg Kroah-Hartman
2016-03-01 23:54 ` [PATCH 4.4 111/342] rtlwifi: rtl8188ee: " Greg Kroah-Hartman
2016-03-01 23:54 ` [PATCH 4.4 113/342] mei: fix fasync return value on error Greg Kroah-Hartman
2016-03-01 23:54 ` [PATCH 4.4 115/342] namei: ->d_inode of a pinned dentry is stable only for positives Greg Kroah-Hartman
2016-03-01 23:54 ` [PATCH 4.4 112/342] rtlwifi: rtl8723be: Fix module parameter initialization Greg Kroah-Hartman
2016-03-01 23:54 ` [PATCH 4.4 117/342] [media] media: dvb-core: Dont force CAN_INVERSION_AUTO in oneshot mode Greg Kroah-Hartman
2016-03-01 23:54 ` [PATCH 4.4 116/342] [media] rc: sunxi-cir: Initialize the spinlock properly Greg Kroah-Hartman
2016-03-01 23:54 ` [PATCH 4.4 114/342] mei: validate request value in client notify request ioctl Greg Kroah-Hartman
2016-03-01 23:54 ` [PATCH 4.4 119/342] [media] gspca: ov534/topro: prevent a division by 0 Greg Kroah-Hartman
2016-03-01 23:54 ` [PATCH 4.4 122/342] dm space map metadata: remove unused variable in brb_pop() Greg Kroah-Hartman
2016-03-01 23:54 ` [PATCH 4.4 082/342] mm: numa: quickly fail allocations for NUMA balancing on full nodes Greg Kroah-Hartman
2016-03-01 23:54 ` [PATCH 4.4 121/342] [media] tda1004x: only update the frontend properties if locked Greg Kroah-Hartman
2016-03-01 23:54 ` [PATCH 4.4 120/342] [media] vb2: fix a regression in poll() behavior for output,streams Greg Kroah-Hartman
2016-03-01 23:54 ` [PATCH 4.4 118/342] [media] si2157: return -EINVAL if firmware blob is too big Greg Kroah-Hartman
2016-03-01 23:54 ` [PATCH 4.4 124/342] dm: fix dm_rq_target_io leak on faults with .request_fn DM w/ blk-mq paths Greg Kroah-Hartman
2016-03-01 23:54 ` [PATCH 4.4 123/342] dm snapshot: fix hung bios when copy error occurs Greg Kroah-Hartman
2016-03-01 23:54 ` [PATCH 4.4 125/342] coresight: checking for NULL string in coresight_name_match() Greg Kroah-Hartman
2016-03-01 23:54 ` [PATCH 4.4 085/342] s390/kvm: remove dependency on struct save_area definition Greg Kroah-Hartman
2016-03-01 23:54 ` [PATCH 4.4 086/342] KVM: s390: fix memory overwrites when vx is disabled Greg Kroah-Hartman
2016-03-01 23:54 ` [PATCH 4.4 083/342] genirq: Validate action before dereferencing it in handle_irq_event_percpu() Greg Kroah-Hartman
2016-03-01 23:54 ` [PATCH 4.4 078/342] iw_cxgb3: Fix incorrectly returning error on success Greg Kroah-Hartman
2016-03-01 23:54 ` [PATCH 4.4 087/342] Btrfs: add missing brelse when superblock checksum fails Greg Kroah-Hartman
2016-03-01 23:54 ` [PATCH 4.4 084/342] clocksource/drivers/vt8500: Increase the minimum delta Greg Kroah-Hartman
2016-03-01 23:54   ` Greg Kroah-Hartman
2016-03-01 23:54 ` [PATCH 4.4 127/342] irqchip/mxs: Add missing set_handle_irq() Greg Kroah-Hartman
2016-03-01 23:54 ` [PATCH 4.4 136/342] mmc: mmc: Fix incorrect use of driver strength switching HS200 and HS400 Greg Kroah-Hartman
2016-03-01 23:54 ` [PATCH 4.4 137/342] mmc: sdhci: Fix sdhci_runtime_pm_bus_on/off() Greg Kroah-Hartman
2016-03-01 23:54 ` [PATCH 4.4 139/342] mmc: mmci: fix an ages old detection error Greg Kroah-Hartman
2016-03-01 23:54   ` Greg Kroah-Hartman
2016-03-01 23:54 ` [PATCH 4.4 140/342] mmc: sdhci-acpi: Fix card detect race for Intel BXT/APL Greg Kroah-Hartman
2016-03-01 23:54 ` [PATCH 4.4 138/342] mmc: core: Enable tuning according to the actual timing Greg Kroah-Hartman
2016-03-01 23:54 ` [PATCH 4.4 142/342] mmc: sdhci-pci: Fix card detect race for Intel BXT/APL Greg Kroah-Hartman
2016-03-01 23:54 ` [PATCH 4.4 143/342] mmc: sdhci: Allow override of mmc host operations Greg Kroah-Hartman
2016-03-01 23:54 ` [PATCH 4.4 141/342] mmc: pxamci: fix again read-only gpio detection polarity Greg Kroah-Hartman
2016-03-01 23:54 ` [PATCH 4.4 144/342] mmc: sdhci: Allow override of get_cd() called from sdhci_request() Greg Kroah-Hartman
2016-03-01 23:54 ` [PATCH 4.4 145/342] tools: hv: vss: fix the write()s argument: error -> vss_msg Greg Kroah-Hartman
2016-03-01 23:54 ` [PATCH 4.4 147/342] Bluetooth: Use continuous scanning when creating LE connections Greg Kroah-Hartman
2016-03-01 23:54 ` [PATCH 4.4 146/342] Drivers: hv: vmbus: Fix a Host signaling bug Greg Kroah-Hartman
2016-03-01 23:54 ` [PATCH 4.4 128/342] irqchip/atmel-aic: Fix wrong bit operation for IRQ priority Greg Kroah-Hartman
2016-03-01 23:54 ` [PATCH 4.4 148/342] Bluetooth: Add support of Toshiba Broadcom based devices Greg Kroah-Hartman
2016-03-01 23:54 ` [PATCH 4.4 149/342] Bluetooth: Fix incorrect removing of IRKs Greg Kroah-Hartman
2016-03-01 23:54 ` [PATCH 4.4 151/342] Bluetooth: 6lowpan: Fix handling of uncompressed IPv6 packets Greg Kroah-Hartman
2016-03-01 23:54 ` [PATCH 4.4 150/342] Bluetooth: 6lowpan: Fix kernel NULL pointer dereferences Greg Kroah-Hartman
2016-03-01 23:54 ` [PATCH 4.4 153/342] cputime: Prevent 32bit overflow in time[val|spec]_to_cputime() Greg Kroah-Hartman
2016-03-01 23:54 ` [PATCH 4.4 154/342] Revert "MIPS: Fix PAGE_MASK definition" Greg Kroah-Hartman
2016-03-01 23:54   ` Greg Kroah-Hartman
2016-03-01 23:54   ` Greg Kroah-Hartman
2016-03-01 23:54 ` [PATCH 4.4 152/342] time: Avoid signed overflow in timekeeping_get_ns() Greg Kroah-Hartman
2016-03-01 23:54 ` [PATCH 4.4 129/342] irqchip/gic-v3-its: Fix double ICC_EOIR write for LPI in EOImode==1 Greg Kroah-Hartman
2016-03-01 23:54 ` [PATCH 4.4 155/342] MIPS: Loongson-3: Fix SMP_ASK_C0COUNT IPI handler Greg Kroah-Hartman
2016-03-01 23:54   ` Greg Kroah-Hartman
2016-03-01 23:54   ` Greg Kroah-Hartman
2016-03-01 23:54 ` [PATCH 4.4 159/342] EDAC: Robustify workqueues destruction Greg Kroah-Hartman
2016-03-01 23:54 ` [PATCH 4.4 157/342] MIPS: Fix some missing CONFIG_CPU_MIPSR6 #ifdefs Greg Kroah-Hartman
2016-03-01 23:54   ` Greg Kroah-Hartman
2016-03-01 23:54   ` Greg Kroah-Hartman
2016-03-01 23:54 ` [PATCH 4.4 158/342] MIPS: Fix buffer overflow in syscall_get_arguments() Greg Kroah-Hartman
2016-03-01 23:54   ` Greg Kroah-Hartman
2016-03-01 23:54 ` [PATCH 4.4 156/342] MIPS: hpet: Choose a safe value for the ETIME check Greg Kroah-Hartman
2016-03-01 23:54   ` Greg Kroah-Hartman
2016-03-01 23:54 ` [PATCH 4.4 161/342] sparc64: fix incorrect sign extension in sys_sparc64_personality Greg Kroah-Hartman
2016-03-01 23:54 ` [PATCH 4.4 160/342] EDAC, mc_sysfs: Fix freeing bus name Greg Kroah-Hartman
2016-03-01 23:54 ` [PATCH 4.4 164/342] regulator: axp20x: Fix GPIO LDO enable value for AXP22x Greg Kroah-Hartman
2016-03-01 23:54 ` [PATCH 4.4 162/342] cxl: use correct operator when writing pcie config space values Greg Kroah-Hartman
2016-03-01 23:54 ` [PATCH 4.4 165/342] regulator: mt6311: MT6311_REGULATOR needs to select REGMAP_I2C Greg Kroah-Hartman
2016-03-01 23:54 ` [PATCH 4.4 163/342] clk: exynos: use irqsave version of spin_lock to avoid deadlock with irqs Greg Kroah-Hartman
2016-03-01 23:54 ` [PATCH 4.4 166/342] virtio_balloon: fix race by fill and leak Greg Kroah-Hartman
2016-03-01 23:54 ` [PATCH 4.4 130/342] posix-clock: Fix return code on the poll methods error path Greg Kroah-Hartman
2016-03-01 23:54 ` [PATCH 4.4 168/342] virtio_pci: fix use after free on release Greg Kroah-Hartman
2016-03-01 23:54 ` [PATCH 4.4 167/342] virtio_balloon: fix race between migration and ballooning Greg Kroah-Hartman
2016-03-01 23:54 ` [PATCH 4.4 169/342] drm/vmwgfx: Fix an incorrect lock check Greg Kroah-Hartman
2016-03-01 23:54 ` [PATCH 4.4 172/342] drm/amdgpu: Fix off-by-one errors in amdgpu_vm_bo_map Greg Kroah-Hartman
2016-03-01 23:54 ` [PATCH 4.4 170/342] drm/vmwgfx: Fix a width / pitch mismatch on framebuffer updates Greg Kroah-Hartman
2016-03-01 23:54 ` [PATCH 4.4 171/342] drm/vmwgfx: respect nomodeset Greg Kroah-Hartman
2016-03-01 23:54 ` [PATCH 4.4 173/342] drm/amdgpu: call hpd_irq_event on resume Greg Kroah-Hartman
2016-03-01 23:54 ` [PATCH 4.4 131/342] clockevents/tcb_clksrc: Prevent disabling an already disabled clock Greg Kroah-Hartman
2016-03-01 23:54   ` Greg Kroah-Hartman
2016-03-01 23:54 ` [PATCH 4.4 132/342] mmc: usdhi6rol0: handle NULL data in timeout Greg Kroah-Hartman
2016-03-01 23:54 ` [PATCH 4.4 133/342] mmc: sdhci-pci: Do not default to 33 Ohm driver strength for Intel SPT Greg Kroah-Hartman
2016-03-01 23:54 ` [PATCH 4.4 135/342] mmc: sdio: Fix invalid vdd in voltage switch power cycle Greg Kroah-Hartman
2016-03-01 23:54 ` [PATCH 4.4 134/342] mmc: sdhci: Fix DMA descriptor with zero data length Greg Kroah-Hartman
2016-03-01 23:54 ` [PATCH 4.4 184/342] drm/amdgpu: remove exp hardware support from iceland Greg Kroah-Hartman
2016-03-01 23:54 ` [PATCH 4.4 126/342] irqchip/omap-intc: Add support for spurious irq handling Greg Kroah-Hartman
2016-03-01 23:54 ` [PATCH 4.4 187/342] drm/amdgpu: hold reference to fences in amdgpu_sa_bo_new (v2) Greg Kroah-Hartman
2016-03-01 23:54 ` [PATCH 4.4 185/342] drm/amdgpu: fix s4 resume Greg Kroah-Hartman
2016-03-01 23:54 ` [PATCH 4.4 186/342] drm/amdgpu: remove unnecessary forward declaration Greg Kroah-Hartman
2016-03-01 23:54 ` [PATCH 4.4 175/342] drm/amdgpu: fix tonga smu resume Greg Kroah-Hartman
2016-03-01 23:54 ` [PATCH 4.4 189/342] drm/amdgpu: use post-decrement in error handling Greg Kroah-Hartman
2016-03-01 23:54 ` [PATCH 4.4 188/342] drm/amdgpu: fix issue with overlapping userptrs Greg Kroah-Hartman
2016-03-01 23:54 ` [PATCH 4.4 190/342] drm/amdgpu: Dont hang in amdgpu_flip_work_func on disabled crtc Greg Kroah-Hartman
2016-03-01 23:54 ` [PATCH 4.4 193/342] drm/nouveau/display: Enable vblank irqs after display engine is on again Greg Kroah-Hartman
2016-03-01 23:54   ` Greg Kroah-Hartman
2016-03-01 23:54 ` [PATCH 4.4 192/342] drm/nouveau/kms: take mode_config mutex in connector hotplug path Greg Kroah-Hartman
2016-03-01 23:54 ` [PATCH 4.4 191/342] drm/amdgpu/pm: adjust display configuration after powerstate Greg Kroah-Hartman
2016-03-01 23:54 ` [PATCH 4.4 195/342] drm/nouveau: platform: Fix deferred probe Greg Kroah-Hartman
2016-03-01 23:54   ` Greg Kroah-Hartman
2016-03-01 23:54 ` [PATCH 4.4 176/342] drm/amdgpu: fix amdgpu_bo_pin_restricted VRAM placing v2 Greg Kroah-Hartman
2016-03-01 23:54 ` [PATCH 4.4 194/342] drm/nouveau/disp/dp: ensure sink is powered up before attempting link training Greg Kroah-Hartman
2016-03-01 23:54 ` [PATCH 4.4 197/342] drm/dp/mst: always send reply for UP request Greg Kroah-Hartman
2016-03-01 23:54 ` [PATCH 4.4 196/342] drm/dp/mst: process broadcast messages correctly Greg Kroah-Hartman
2016-03-01 23:54 ` [PATCH 4.4 199/342] drm/dp/mst: fix in RAD element access Greg Kroah-Hartman
2016-03-01 23:54 ` [PATCH 4.4 201/342] drm/dp/mst: Calculate MST PBN with 31.32 fixed point Greg Kroah-Hartman
2016-03-01 23:54 ` [PATCH 4.4 198/342] drm/dp/mst: fix in MSTB RAD initialization Greg Kroah-Hartman
2016-03-01 23:54 ` [PATCH 4.4 200/342] drm: Add drm_fixp_from_fraction and drm_fixp2int_ceil Greg Kroah-Hartman
2016-03-01 23:54 ` [PATCH 4.4 203/342] drm/dp/mst: Reverse order of MST enable and clearing VC payload table Greg Kroah-Hartman
2016-03-01 23:54 ` [PATCH 4.4 177/342] drm/amdgpu: no need to load MC firmware on fiji Greg Kroah-Hartman
2016-03-01 23:54 ` [PATCH 4.4 202/342] drm/dp/mst: move GUID storage from mgr, port to only mst branch Greg Kroah-Hartman
2016-03-01 23:54 ` [PATCH 4.4 206/342] drm/radeon: call hpd_irq_event on resume Greg Kroah-Hartman
2016-03-01 23:54 ` [PATCH 4.4 205/342] drm/radeon: Fix off-by-one errors in radeon_vm_bo_set_addr Greg Kroah-Hartman
2016-03-01 23:54 ` [PATCH 4.4 204/342] drm/dp/mst: deallocate payload on port destruction Greg Kroah-Hartman
2016-03-01 23:54 ` [PATCH 4.4 209/342] drm/radeon: properly byte swap vce firmware setup Greg Kroah-Hartman
2016-03-01 23:54   ` Greg Kroah-Hartman
2016-03-01 23:54 ` [PATCH 4.4 207/342] drm/radeon: Fix "slow" audio over DP on DCE8+ Greg Kroah-Hartman
2016-03-01 23:54 ` [PATCH 4.4 208/342] drm/radeon: clean up fujitsu quirks Greg Kroah-Hartman
2016-03-01 23:54 ` [PATCH 4.4 211/342] drm/radeon: Add a common function for DFS handling Greg Kroah-Hartman
2016-03-01 23:54 ` [PATCH 4.4 210/342] drm/radeon: cleaned up VCO output settings for DP audio Greg Kroah-Hartman
2016-03-01 23:54 ` [PATCH 4.4 212/342] drm/radeon: fix DP audio support for APU with DCE4.1 display engine Greg Kroah-Hartman
2016-03-01 23:54 ` [PATCH 4.4 178/342] drm/amdgpu: move gmc7 support out of CIK dependency Greg Kroah-Hartman
2016-03-01 23:54 ` [PATCH 4.4 213/342] drm: add helper to check for wc memory support Greg Kroah-Hartman
2016-03-01 23:54 ` [PATCH 4.4 215/342] drm/radeon: hold reference to fences in radeon_sa_bo_new Greg Kroah-Hartman
2016-03-01 23:54 ` [PATCH 4.4 214/342] drm/radeon: mask out WC from BO on unsupported arches Greg Kroah-Hartman
2016-03-01 23:54 ` [PATCH 4.4 216/342] drm: fix missing reference counting decrease Greg Kroah-Hartman
2016-03-01 23:54 ` [PATCH 4.4 217/342] drm/i915: Restore inhibiting the load of the default context Greg Kroah-Hartman
2016-03-01 23:54 ` [PATCH 4.4 219/342] drm/i915: Init power domains early in driver load Greg Kroah-Hartman
2016-03-01 23:54   ` Greg Kroah-Hartman
2016-03-01 23:54 ` [PATCH 4.4 218/342] drm/i915: intel_hpd_init(): Fix suspend/resume reprobing Greg Kroah-Hartman
2016-03-01 23:54 ` [PATCH 4.4 221/342] drm/i915/dp: fall back to 18 bpp when sink capability is unknown Greg Kroah-Hartman
2016-03-01 23:54 ` [PATCH 4.4 182/342] drm/amdgpu: drop topaz support from gmc8 module Greg Kroah-Hartman
2016-03-01 23:54 ` [PATCH 4.4 181/342] drm/amdgpu: pull topaz gmc bits into gmc_v7 Greg Kroah-Hartman
2016-03-01 23:54 ` [PATCH 4.4 179/342] drm/amdgpu: iceland use CI based MC IP Greg Kroah-Hartman
2016-03-01 23:54 ` [PATCH 4.4 180/342] drm/amdgpu: The VI specific EXE bit should only apply to GMC v8.0 above Greg Kroah-Hartman
2016-03-01 23:54 ` [PATCH 4.4 220/342] drm/i915: Make sure DC writes are coherent on flush Greg Kroah-Hartman
2016-03-01 23:55 ` Greg Kroah-Hartman [this message]
2016-03-01 23:55   ` [PATCH 4.4 232/342] drm: Fix treatment of drm_vblank_offdelay in drm_vblank_on() (v2) Greg Kroah-Hartman
2016-03-01 23:55 ` [PATCH 4.4 183/342] drm/amdgpu: dont load MEC2 on topaz Greg Kroah-Hartman
2016-03-01 23:55 ` [PATCH 4.4 174/342] drm/amdgpu: fix lost sync_to if scheduler is enabled Greg Kroah-Hartman
2016-03-01 23:55 ` [PATCH 4.4 223/342] drm/i915/skl: Dont skip mst encoders in skl_ddi_pll_select() Greg Kroah-Hartman
2016-03-01 23:55   ` Greg Kroah-Hartman
2016-03-01 23:55 ` [PATCH 4.4 233/342] drm/radeon: Dont hang in radeon_flip_work_func on disabled crtc. (v2) Greg Kroah-Hartman
2016-03-01 23:55 ` [PATCH 4.4 235/342] make sure that freeing shmem fast symlinks is RCU-delayed Greg Kroah-Hartman
2016-03-01 23:55 ` [PATCH 4.4 234/342] drm/radeon/pm: adjust display configuration after powerstate Greg Kroah-Hartman
2016-03-01 23:55 ` [PATCH 4.4 237/342] ideapad-laptop: Add Lenovo ideapad Y700-17ISK to no_hw_rfkill dmi list Greg Kroah-Hartman
2016-03-01 23:55 ` [PATCH 4.4 236/342] toshiba_acpi: Fix blank screen at boot if transflective backlight is supported Greg Kroah-Hartman
2016-03-01 23:55 ` [PATCH 4.4 238/342] ideapad-laptop: Add Lenovo Yoga 700 to no_hw_rfkill dmi list Greg Kroah-Hartman
2016-03-01 23:55 ` [PATCH 4.4 239/342] uapi: update install list after nvme.h rename Greg Kroah-Hartman
2016-03-01 23:55 ` [PATCH 4.4 240/342] lib: sw842: select crc32 Greg Kroah-Hartman
2016-03-01 23:55 ` [PATCH 4.4 242/342] ACPI / video: Add disable_backlight_sysfs_if quirk for the Toshiba Satellite R830 Greg Kroah-Hartman
2016-03-01 23:55 ` [PATCH 4.4 224/342] drm/i915/dsi: defend gpio table against out of bounds access Greg Kroah-Hartman
2016-03-01 23:55 ` [PATCH 4.4 241/342] ACPI / video: Add disable_backlight_sysfs_if quirk for the Toshiba Portege R700 Greg Kroah-Hartman
2016-03-01 23:55 ` [PATCH 4.4 246/342] dmaengine: dw: fix cyclic transfer setup Greg Kroah-Hartman
2016-03-01 23:55   ` Greg Kroah-Hartman
2016-03-01 23:55 ` [PATCH 4.4 243/342] ACPI: Revert "ACPI / video: Add Dell Inspiron 5737 to the blacklist" Greg Kroah-Hartman
2016-03-01 23:55 ` [PATCH 4.4 245/342] nfit: fix multi-interface dimm handling, acpi6.1 compatibility Greg Kroah-Hartman
2016-03-01 23:55 ` [PATCH 4.4 244/342] ACPI / PCI / hotplug: unlock in error path in acpiphp_enable_slot() Greg Kroah-Hartman
2016-03-01 23:55 ` [PATCH 4.4 247/342] dmaengine: dw: fix cyclic transfer callbacks Greg Kroah-Hartman
2016-03-01 23:55 ` [PATCH 4.4 248/342] dmaengine: at_xdmac: fix resume for cyclic transfers Greg Kroah-Hartman
2016-03-01 23:55 ` [PATCH 4.4 249/342] dmaengine: dw: disable BLOCK IRQs for non-cyclic xfer Greg Kroah-Hartman
2016-03-01 23:55 ` [PATCH 4.4 251/342] IB/qib: fix mcast detach when qp not attached Greg Kroah-Hartman
2016-03-01 23:55 ` [PATCH 4.4 252/342] IB/qib: Support creating qps with GFP_NOIO flag Greg Kroah-Hartman
2016-03-01 23:55 ` [PATCH 4.4 225/342] drm/i915/dsi: dont pass arbitrary data to sideband Greg Kroah-Hartman
2016-03-01 23:55 ` [PATCH 4.4 253/342] IB/mlx5: Expose correct maximum number of CQE capacity Greg Kroah-Hartman
2016-03-01 23:55 ` [PATCH 4.4 250/342] IB/cm: Fix a recently introduced deadlock Greg Kroah-Hartman
2016-03-01 23:55 ` [PATCH 4.4 254/342] Thermal: initialize thermal zone device correctly Greg Kroah-Hartman
2016-03-01 23:55 ` [PATCH 4.4 258/342] hwmon: (gpio-fan) Remove un-necessary speed_index lookup for thermal hook Greg Kroah-Hartman
2016-03-01 23:55   ` Greg Kroah-Hartman
2016-03-01 23:55 ` [PATCH 4.4 257/342] hwmon: (dell-smm) Blacklist Dell Studio XPS 8000 Greg Kroah-Hartman
2016-03-01 23:55 ` [PATCH 4.4 256/342] Thermal: do thermal zone update after a cooling device registered Greg Kroah-Hartman
2016-03-01 23:55 ` [PATCH 4.4 255/342] Thermal: handle thermal zone device properly during system sleep Greg Kroah-Hartman
2016-03-01 23:55 ` [PATCH 4.4 260/342] cpufreq: pxa2xx: fix pxa_cpufreq_change_voltage prototype Greg Kroah-Hartman
2016-03-01 23:55 ` [PATCH 4.4 261/342] cpufreq: Fix NULL reference crash while accessing policy->governor_data Greg Kroah-Hartman
2016-03-01 23:55 ` [PATCH 4.4 259/342] hwmon: (ads1015) Handle negative conversion values correctly Greg Kroah-Hartman
2016-03-01 23:55   ` Greg Kroah-Hartman
2016-03-01 23:55 ` [PATCH 4.4 263/342] libceph: fix ceph_msg_revoke() Greg Kroah-Hartman
2016-03-01 23:55   ` Greg Kroah-Hartman
2016-03-01 23:55 ` [PATCH 4.4 262/342] seccomp: always propagate NO_NEW_PRIVS on tsync Greg Kroah-Hartman
2016-03-01 23:55 ` [PATCH 4.4 226/342] drm/i915: fix error path in intel_setup_gmbus() Greg Kroah-Hartman
2016-03-01 23:55 ` [PATCH 4.4 264/342] libceph: dont bail early from try_read() when skipping a message Greg Kroah-Hartman
2016-03-01 23:55 ` [PATCH 4.4 266/342] libceph: dont spam dmesg with stray reply warnings Greg Kroah-Hartman
2016-03-01 23:55 ` [PATCH 4.4 265/342] libceph: use the right footer size when skipping a message Greg Kroah-Hartman
2016-03-01 23:55 ` [PATCH 4.4 268/342] Staging: speakup: Fix getting port information Greg Kroah-Hartman
2016-03-01 23:55 ` [PATCH 4.4 269/342] Revert "Staging: panel: usleep_range is preferred over udelay" Greg Kroah-Hartman
2016-03-01 23:55 ` [PATCH 4.4 227/342] drm/qxl: use kmalloc_array to alloc reloc_info in qxl_process_single_command Greg Kroah-Hartman
2016-03-01 23:55 ` [PATCH 4.4 228/342] drm/radeon: use post-decrement in error handling Greg Kroah-Hartman
2016-03-01 23:55 ` [PATCH 4.4 267/342] sd: Optimal I/O size is in bytes, not sectors Greg Kroah-Hartman
2016-03-01 23:55 ` [PATCH 4.4 229/342] drm: No-Op redundant calls to drm_vblank_off() (v2) Greg Kroah-Hartman
2016-03-01 23:55   ` Greg Kroah-Hartman
2016-03-01 23:55 ` [PATCH 4.4 231/342] drm: Fix drm_vblank_pre/post_modeset regression from Linux 4.4 Greg Kroah-Hartman
2016-03-01 23:55   ` Greg Kroah-Hartman
2016-03-01 23:55 ` [PATCH 4.4 230/342] drm: Prevent vblank counter bumps > 1 with active vblank clients. (v2) Greg Kroah-Hartman
2016-03-01 23:55   ` Greg Kroah-Hartman
2016-03-01 23:55 ` [PATCH 4.4 222/342] drm/i915: Dont reject primary plane windowing with color keying enabled on SKL+ Greg Kroah-Hartman
2016-03-01 23:55   ` Greg Kroah-Hartman
2016-03-01 23:55 ` [PATCH 4.4 283/342] target: Fix race with SCF_SEND_DELAYED_TAS handling Greg Kroah-Hartman
2016-03-01 23:55   ` Greg Kroah-Hartman
2016-03-01 23:55 ` [PATCH 4.4 271/342] perf stat: Do not clean events private stats Greg Kroah-Hartman
2016-03-01 23:55 ` [PATCH 4.4 281/342] target: Fix TAS handling for multi-session se_node_acls Greg Kroah-Hartman
2016-03-01 23:55   ` Greg Kroah-Hartman
2016-03-01 23:55 ` [PATCH 4.4 284/342] spi: atmel: fix gpio chip-select in case of non-DT platform Greg Kroah-Hartman
2016-03-01 23:55 ` [PATCH 4.4 280/342] target: Fix LUN_RESET active TMR descriptor handling Greg Kroah-Hartman
2016-03-01 23:55 ` [PATCH 4.4 286/342] libata: fix sff host state machine locking while polling Greg Kroah-Hartman
2016-03-01 23:55 ` [PATCH 4.4 282/342] target: Fix remote-port TMR ABORT + se_cmd fabric stop Greg Kroah-Hartman
2016-03-01 23:55 ` [PATCH 4.4 285/342] qla2xxx: Fix stale pointer access Greg Kroah-Hartman
2016-03-01 23:55 ` [PATCH 4.4 287/342] ARCv2: STAR 9000950267: Handle return from intr to Delay Slot #2 Greg Kroah-Hartman
2016-03-01 23:55 ` [PATCH 4.4 288/342] ARCv2: SMP: Emulate IPI to self using software triggered interrupt Greg Kroah-Hartman
2016-03-01 23:55 ` [PATCH 4.4 289/342] PCI/AER: Flush workqueue on device remove to avoid use-after-free Greg Kroah-Hartman
2016-03-01 23:55 ` [PATCH 4.4 292/342] writeback: keep superblock pinned during cgroup writeback association switches Greg Kroah-Hartman
2016-03-01 23:55 ` [PATCH 4.4 290/342] cpuset: make mm migration asynchronous Greg Kroah-Hartman
2016-03-01 23:55 ` [PATCH 4.4 272/342] tick/nohz: Set the correct expiry when switching to nohz/lowres mode Greg Kroah-Hartman
2016-03-01 23:55 ` [PATCH 4.4 291/342] cgroup: make sure a parent css isnt offlined before its children Greg Kroah-Hartman
2016-03-01 23:55   ` Greg Kroah-Hartman
2016-03-01 23:55 ` [PATCH 4.4 294/342] i2c: i801: Adding Intel Lewisburg support for iTCO Greg Kroah-Hartman
2016-03-01 23:55 ` [PATCH 4.4 293/342] phy: core: fix wrong err handle for phy_power_on Greg Kroah-Hartman
2016-03-01 23:55 ` [PATCH 4.4 295/342] bio: return EINTR if copying to user space got interrupted Greg Kroah-Hartman
2016-03-01 23:55 ` [PATCH 4.4 297/342] nfs: fix nfs_size_to_loff_t Greg Kroah-Hartman
2016-03-01 23:55 ` [PATCH 4.4 298/342] NFSv4: Fix a dentry leak on alias use Greg Kroah-Hartman
2016-03-01 23:55 ` [PATCH 4.4 296/342] block: fix use-after-free in dio_bio_complete Greg Kroah-Hartman
2016-03-01 23:55 ` [PATCH 4.4 299/342] of/irq: Fix msi-map calculation for nonzero rid-base Greg Kroah-Hartman
2016-03-01 23:55 ` [PATCH 4.4 273/342] rfkill: fix rfkill_fop_read wait_event usage Greg Kroah-Hartman
2016-03-01 23:55 ` [PATCH 4.4 302/342] KVM: x86: fix missed hardware breakpoints Greg Kroah-Hartman
2016-03-01 23:55 ` [PATCH 4.4 301/342] KVM: arm/arm64: vgic: Ensure bitmaps are long enough Greg Kroah-Hartman
2016-03-01 23:55 ` [PATCH 4.4 300/342] KVM: async_pf: do not warn on page allocation failures Greg Kroah-Hartman
2016-03-01 23:55 ` [PATCH 4.4 303/342] KVM: x86: fix conversion of addresses to linear in 32-bit protected mode Greg Kroah-Hartman
2016-03-01 23:55 ` [PATCH 4.4 305/342] powerpc/eeh: Fix partial hotplug criterion Greg Kroah-Hartman
2016-03-01 23:55 ` [PATCH 4.4 304/342] KVM: x86: MMU: fix ubsan index-out-of-range warning Greg Kroah-Hartman
2016-03-01 23:55 ` [PATCH 4.4 306/342] tracing: Fix showing function event in available_events Greg Kroah-Hartman
2016-03-01 23:55   ` Greg Kroah-Hartman
2016-03-01 23:55 ` [PATCH 4.4 309/342] do_last(): dont let a bogus return value from ->open() et.al. to confuse us Greg Kroah-Hartman
2016-03-01 23:55 ` [PATCH 4.4 308/342] kernel/resource.c: fix muxed resource handling in __request_region() Greg Kroah-Hartman
2016-03-01 23:55 ` [PATCH 4.4 307/342] sunrpc/cache: fix off-by-one in qword_get() Greg Kroah-Hartman
2016-03-01 23:55 ` [PATCH 4.4 274/342] mac80211: Requeue work after scan complete for all VIF types Greg Kroah-Hartman
2016-03-01 23:55 ` [PATCH 4.4 310/342] ARM: OMAP2+: Fix onenand initialization to avoid filesystem corruption Greg Kroah-Hartman
2016-03-01 23:55 ` [PATCH 4.4 311/342] ARM: at91/dt: fix typo in sama5d2 pinmux descriptions Greg Kroah-Hartman
2016-03-01 23:55   ` Greg Kroah-Hartman
2016-03-01 23:55 ` [PATCH 4.4 312/342] xen/arm: correctly handle DMA mapping of compound pages Greg Kroah-Hartman
2016-03-01 23:55 ` [PATCH 4.4 314/342] xen/pciback: Check PF instead of VF for PCI_COMMAND_MEMORY Greg Kroah-Hartman
2016-03-01 23:55 ` [PATCH 4.4 315/342] xen/pciback: Save the number of MSI-X entries to be copied later Greg Kroah-Hartman
2016-03-01 23:55   ` Greg Kroah-Hartman
2016-03-01 23:55 ` [PATCH 4.4 312/342] xen/arm: correctly handle DMA mapping of compound pages Greg Kroah-Hartman
2016-03-01 23:55   ` Greg Kroah-Hartman
2016-03-01 23:55 ` [PATCH 4.4 313/342] xen/scsiback: correct frontend counting Greg Kroah-Hartman
2016-03-01 23:55 ` [PATCH 4.4 316/342] xen/pcifront: Fix mysterious crashes when NUMA locality information was extracted Greg Kroah-Hartman
2016-03-01 23:55 ` [PATCH 4.4 317/342] should_follow_link(): validate ->d_seq after having decided to follow Greg Kroah-Hartman
2016-03-01 23:55 ` [PATCH 4.4 276/342] Revert "workqueue: make sure delayed work run in local cpu" Greg Kroah-Hartman
2016-03-01 23:55 ` [PATCH 4.4 277/342] ALSA: hda - Apply clock gate workaround to Skylake, too Greg Kroah-Hartman
2016-03-01 23:55 ` [PATCH 4.4 275/342] workqueue: handle NUMA_NO_NODE for unbound pool_workqueue lookup Greg Kroah-Hartman
2016-03-01 23:55 ` [PATCH 4.4 279/342] target: Fix LUN_RESET active I/O handling for ACK_KREF Greg Kroah-Hartman
2016-03-01 23:55   ` Greg Kroah-Hartman
2016-03-01 23:55 ` [PATCH 4.4 270/342] cdc-acm:exclude Samsung phone 04e8:685d Greg Kroah-Hartman
2016-03-01 23:55   ` Greg Kroah-Hartman
2016-03-01 23:55 ` [PATCH 4.4 278/342] ALSA: hda - Fixing background noise on Dell Inspiron 3162 Greg Kroah-Hartman
2016-03-01 23:55 ` [PATCH 4.4 319/342] hpfs: dont truncate the file when delete fails Greg Kroah-Hartman
2016-03-01 23:55 ` [PATCH 4.4 328/342] x86/irq: Check vector allocation early Greg Kroah-Hartman
2016-03-01 23:55 ` [PATCH 4.4 330/342] x86/irq: Get rid of code duplication Greg Kroah-Hartman
2016-03-01 23:55 ` [PATCH 4.4 336/342] x86/irq: Plug vector cleanup race Greg Kroah-Hartman
2016-03-01 23:55 ` [PATCH 4.4 334/342] x86/irq: Remove outgoing CPU from vector cleanup mask Greg Kroah-Hartman
2016-03-01 23:55 ` [PATCH 4.4 331/342] x86/irq: Remove offline cpus from vector cleanup Greg Kroah-Hartman
2016-03-01 23:55 ` [PATCH 4.4 332/342] x86/irq: Clear move_in_progress before sending cleanup IPI Greg Kroah-Hartman
2016-03-01 23:55 ` [PATCH 4.4 335/342] x86/irq: Call irq_force_move_complete with irq descriptor Greg Kroah-Hartman
2016-03-01 23:55 ` [PATCH 4.4 329/342] x86/irq: Copy vectormask instead of an AND operation Greg Kroah-Hartman
2016-03-01 23:55 ` [PATCH 4.4 333/342] x86/irq: Remove the cpumask allocation from send_cleanup_vector() Greg Kroah-Hartman
2016-03-01 23:55 ` [PATCH 4.4 337/342] IB/cma: Fix RDMA port validation for iWarp Greg Kroah-Hartman
2016-03-01 23:55 ` [PATCH 4.4 338/342] security: let security modules use PTRACE_MODE_* with bitmasks Greg Kroah-Hartman
2016-03-01 23:55 ` [PATCH 4.4 339/342] iwlwifi: dvm: fix WoWLAN Greg Kroah-Hartman
2016-03-01 23:55 ` [PATCH 4.4 341/342] iwlwifi: update and fix 7265 series PCI IDs Greg Kroah-Hartman
2016-03-01 23:55 ` [PATCH 4.4 320/342] x86/mpx: Fix off-by-one comparison with nr_registers Greg Kroah-Hartman
2016-03-01 23:55 ` [PATCH 4.4 340/342] iwlwifi: pcie: properly configure the debug buffer size for 8000 Greg Kroah-Hartman
2016-03-01 23:55 ` [PATCH 4.4 321/342] x86/entry/compat: Add missing CLAC to entry_INT80_32 Greg Kroah-Hartman
2016-03-01 23:55 ` [PATCH 4.4 342/342] iwlwifi: mvm: dont allow sched scans without matches to be started Greg Kroah-Hartman
2016-03-01 23:55 ` [PATCH 4.4 322/342] x86/irq: Call chip->irq_set_affinity in proper context Greg Kroah-Hartman
2016-03-01 23:55 ` [PATCH 4.4 324/342] x86/irq: Validate that irq descriptor is still active Greg Kroah-Hartman
2016-03-01 23:55 ` [PATCH 4.4 318/342] do_last(): ELOOP failure exit should be done after leaving RCU mode Greg Kroah-Hartman
2016-03-01 23:55 ` [PATCH 4.4 323/342] x86/irq: Fix a race in x86_vector_free_irqs() Greg Kroah-Hartman
2016-03-01 23:55 ` [PATCH 4.4 325/342] x86/irq: Do not use apic_chip_data.old_domain as temporary buffer Greg Kroah-Hartman
2016-03-01 23:55 ` [PATCH 4.4 327/342] x86/irq: Reorganize the search in assign_irq_vector Greg Kroah-Hartman
2016-03-01 23:55 ` [PATCH 4.4 326/342] x86/irq: Reorganize the return path " Greg Kroah-Hartman
2016-03-02  1:38 ` [PATCH 4.4 000/342] 4.4.4-stable review Shuah Khan
2016-03-02 18:48   ` Greg Kroah-Hartman
2016-03-02 18:48     ` Greg Kroah-Hartman
2016-03-02 14:35 ` Guenter Roeck
2016-03-02 17:29   ` Greg Kroah-Hartman
     [not found] ` <56d7fab9.d7c21c0a.a064c.51a5@mx.google.com>
     [not found]   ` <7ha8mfwce9.fsf@baylibre.com>
2016-03-03 23:13     ` 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=20160301234535.419474625@linuxfoundation.org \
    --to=gregkh@linuxfoundation.org \
    --cc=airlied@redhat.com \
    --cc=alexander.deucher@amd.com \
    --cc=christian.koenig@amd.com \
    --cc=daniel.vetter@ffwll.ch \
    --cc=dri-devel@lists.freedesktop.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=mario.kleiner.de@gmail.com \
    --cc=michel@daenzer.net \
    --cc=stable@vger.kernel.org \
    --cc=vbabka@suse.cz \
    --cc=ville.syrjala@linux.intel.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.