stable.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [added to the 3.18 stable tree] ovl: allow zero size xattr
@ 2016-02-10 14:56 Sasha Levin
  2016-02-10 14:56 ` [added to the 3.18 stable tree] ovl: use a minimal buffer in ovl_copy_xattr Sasha Levin
                   ` (188 more replies)
  0 siblings, 189 replies; 193+ messages in thread
From: Sasha Levin @ 2016-02-10 14:56 UTC (permalink / raw)
  To: stable, stable-commits; +Cc: Miklos Szeredi, Sasha Levin

From: Miklos Szeredi <miklos@szeredi.hu>

This patch has been added to the 3.18 stable tree. If you have any
objections, please let us know.

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

[ Upstream commit 97daf8b97ad6f913a34c82515be64dc9ac08d63e ]

When ovl_copy_xattr() encountered a zero size xattr no more xattrs were
copied and the function returned success.  This is clearly not the desired
behavior.

Signed-off-by: Miklos Szeredi <miklos@szeredi.hu>
Cc: <stable@vger.kernel.org>
Signed-off-by: Sasha Levin <sasha.levin@oracle.com>
---
 fs/overlayfs/copy_up.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/fs/overlayfs/copy_up.c b/fs/overlayfs/copy_up.c
index ea10a87..21b5d40 100644
--- a/fs/overlayfs/copy_up.c
+++ b/fs/overlayfs/copy_up.c
@@ -54,7 +54,7 @@ int ovl_copy_xattr(struct dentry *old, struct dentry *new)
 
 	for (name = buf; name < (buf + list_size); name += strlen(name) + 1) {
 		size = vfs_getxattr(old, name, value, XATTR_SIZE_MAX);
-		if (size <= 0) {
+		if (size < 0) {
 			error = size;
 			goto out_free_value;
 		}
-- 
2.5.0


^ permalink raw reply related	[flat|nested] 193+ messages in thread

end of thread, other threads:[~2016-02-15  5:59 UTC | newest]

Thread overview: 193+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-02-10 14:56 [added to the 3.18 stable tree] ovl: allow zero size xattr Sasha Levin
2016-02-10 14:56 ` [added to the 3.18 stable tree] ovl: use a minimal buffer in ovl_copy_xattr Sasha Levin
2016-02-10 14:56 ` [added to the 3.18 stable tree] [media] vb2: fix a regression in poll() behavior for output,streams Sasha Levin
2016-02-10 14:56 ` [added to the 3.18 stable tree] [media] gspca: ov534/topro: prevent a division by 0 Sasha Levin
2016-02-10 14:56 ` [added to the 3.18 stable tree] [media] media: dvb-core: Don't force CAN_INVERSION_AUTO in oneshot mode Sasha Levin
2016-02-10 14:56 ` [added to the 3.18 stable tree] tools lib traceevent: Fix output of %llu for 64 bit values read on 32 bit machines Sasha Levin
2016-02-10 14:56 ` [added to the 3.18 stable tree] drm/radeon: call hpd_irq_event on resume Sasha Levin
2016-02-10 14:56 ` [added to the 3.18 stable tree] time: Avoid signed overflow in timekeeping_get_ns() Sasha Levin
2016-02-10 14:57 ` [added to the 3.18 stable tree] KVM: PPC: Fix emulation of H_SET_DABR/X on POWER8 Sasha Levin
2016-02-10 14:57 ` [added to the 3.18 stable tree] ovl: root: copy attr Sasha Levin
2016-02-10 14:57 ` [added to the 3.18 stable tree] Bluetooth: Add support of Toshiba Broadcom based devices Sasha Levin
2016-02-10 14:57 ` [added to the 3.18 stable tree] rtlwifi: fix memory leak for USB device Sasha Levin
2016-02-10 14:57 ` [added to the 3.18 stable tree] wlcore/wl12xx: spi: fix oops on firmware load Sasha Levin
2016-02-10 14:57 ` [added to the 3.18 stable tree] ovl: check dentry positiveness in ovl_cleanup_whiteouts() Sasha Levin
2016-02-10 14:57 ` [added to the 3.18 stable tree] EDAC: Robustify workqueues destruction Sasha Levin
2016-02-10 14:57 ` [added to the 3.18 stable tree] dm thin: fix race condition when destroying thin pool workqueue Sasha Levin
2016-02-10 14:57 ` [added to the 3.18 stable tree] futex: Drop refcount if requeue_pi() acquired the rtmutex Sasha Levin
2016-02-10 14:57 ` [added to the 3.18 stable tree] drm/radeon: fence PT updates manually v2 Sasha Levin
2016-02-10 14:57 ` [added to the 3.18 stable tree] drm/radeon: Fix off-by-one errors in radeon_vm_bo_set_addr Sasha Levin
2016-02-10 14:57 ` [added to the 3.18 stable tree] drm/radeon: clean up fujitsu quirks Sasha Levin
2016-02-10 14:57 ` [added to the 3.18 stable tree] mmc: sdio: Fix invalid vdd in voltage switch power cycle Sasha Levin
2016-02-10 14:57 ` [added to the 3.18 stable tree] mmc: sdhci: Fix sdhci_runtime_pm_bus_on/off() Sasha Levin
2016-02-10 14:57 ` [added to the 3.18 stable tree] udf: limit the maximum number of indirect extents in a row Sasha Levin
2016-02-10 14:57 ` [added to the 3.18 stable tree] nfs: Fix race in __update_open_stateid() Sasha Levin
2016-02-10 14:57 ` [added to the 3.18 stable tree] Thermal: initialize thermal zone device correctly Sasha Levin
2016-02-10 14:57 ` [added to the 3.18 stable tree] Thermal: handle thermal zone device properly during system sleep Sasha Levin
2016-02-10 14:57 ` [added to the 3.18 stable tree] Thermal: do thermal zone update after a cooling device registered Sasha Levin
2016-02-10 14:57 ` [added to the 3.18 stable tree] posix-clock: Fix return code on the poll method's error path Sasha Levin
2016-02-10 14:57 ` [added to the 3.18 stable tree] rtlwifi: rtl8188ee: Fix module parameter initialization Sasha Levin
2016-02-10 14:57 ` [added to the 3.18 stable tree] rtlwifi: rtl8192de: Fix incorrect module parameter descriptions Sasha Levin
2016-02-10 14:57 ` [added to the 3.18 stable tree] rtlwifi: rtl8192se: Fix module parameter initialization Sasha Levin
2016-02-10 14:57 ` [added to the 3.18 stable tree] rtlwifi: rtl8192ce: Fix handling of module parameters Sasha Levin
2016-02-10 14:57 ` [added to the 3.18 stable tree] rtlwifi: rtl8192cu: Add missing parameter setup Sasha Levin
2016-02-10 14:57 ` [added to the 3.18 stable tree] NFS: Remove the "NFS_CAP_CHANGE_ATTR" capability Sasha Levin
2016-02-10 14:57 ` [added to the 3.18 stable tree] NFS: Fix attribute cache revalidation Sasha Levin
2016-02-10 14:57 ` [added to the 3.18 stable tree] rtlwifi: rtl_pci: Fix kernel panic Sasha Levin
2016-02-10 14:57 ` [added to the 3.18 stable tree] bcache: fix a livelock when we cause a huge number of cache misses Sasha Levin
2016-02-10 14:57 ` [added to the 3.18 stable tree] bcache: Add a cond_resched() call to gc Sasha Levin
2016-02-10 14:57 ` [added to the 3.18 stable tree] bcache: clear BCACHE_DEV_UNLINK_DONE flag when attaching a backing device Sasha Levin
2016-02-10 14:57 ` [added to the 3.18 stable tree] bcache: fix a leak in bch_cached_dev_run() Sasha Levin
2016-02-10 14:57 ` [added to the 3.18 stable tree] bcache: unregister reboot notifier if bcache fails to unregister device Sasha Levin
2016-02-10 14:57 ` [added to the 3.18 stable tree] bcache: allows use of register in udev to avoid "device_busy" error Sasha Levin
2016-02-10 14:57 ` [added to the 3.18 stable tree] bcache: prevent crash on changing writeback_running Sasha Levin
2016-02-10 14:57 ` [added to the 3.18 stable tree] bcache: Change refill_dirty() to always scan entire disk if necessary Sasha Levin
2016-02-10 14:57 ` [added to the 3.18 stable tree] wlcore/wl12xx: spi: fix NULL pointer dereference (Oops) Sasha Levin
2016-02-10 14:57 ` [added to the 3.18 stable tree] Input: i8042 - add Fujitsu Lifebook U745 to the nomux list Sasha Levin
2016-02-10 14:57 ` [added to the 3.18 stable tree] udf: Prevent buffer overrun with multi-byte characters Sasha Levin
2016-02-10 14:57 ` [added to the 3.18 stable tree] udf: Check output buffer length when converting name to CS0 Sasha Levin
2016-02-10 14:57 ` [added to the 3.18 stable tree] drm/dp/mst: process broadcast messages correctly Sasha Levin
2016-02-10 14:57 ` [added to the 3.18 stable tree] drm/dp/mst: fix in MSTB RAD initialization Sasha Levin
2016-02-10 14:57 ` [added to the 3.18 stable tree] gpu: drm: drm_dp_mst_topology.c: Fix improper use of strncat Sasha Levin
2016-02-10 14:57 ` [added to the 3.18 stable tree] drm/dp/mst: fix in RAD element access Sasha Levin
2016-02-10 14:57 ` [added to the 3.18 stable tree] PCI: Fix minimum allocation address overwrite Sasha Levin
2016-02-10 14:57 ` [added to the 3.18 stable tree] PCI: imx6: Use tabs for indentation Sasha Levin
2016-02-10 14:57 ` [added to the 3.18 stable tree] PCI: host: Mark PCIe/PCI (MSI) IRQ cascade handlers as IRQF_NO_THREAD Sasha Levin
2016-02-10 14:57 ` [added to the 3.18 stable tree] iwlwifi: update and fix 7265 series PCI IDs Sasha Levin
2016-02-10 14:57 ` [added to the 3.18 stable tree] locks: update comments that refer to inode->i_flock Sasha Levin
2016-02-10 14:57 ` [added to the 3.18 stable tree] locks: fix unlock when fcntl_setlk races with a close Sasha Levin
2016-02-10 14:57 ` [added to the 3.18 stable tree] dm snapshot: fix hung bios when copy error occurs Sasha Levin
2016-02-10 14:57 ` [added to the 3.18 stable tree] uml: fix hostfs mknod() Sasha Levin
2016-02-10 14:57 ` [added to the 3.18 stable tree] uml: flush stdout before forking Sasha Levin
2016-02-10 14:57 ` [added to the 3.18 stable tree] drm/nouveau/kms: take mode_config mutex in connector hotplug path Sasha Levin
2016-02-10 14:57 ` [added to the 3.18 stable tree] s390: fix normalization bug in exception table sorting Sasha Levin
2016-02-10 14:57 ` [added to the 3.18 stable tree] xfs: inode recovery readahead can race with inode buffer creation Sasha Levin
2016-02-10 14:57 ` [added to the 3.18 stable tree] xfs: handle dquot buffer readahead in log recovery correctly Sasha Levin
2016-02-10 14:57 ` [added to the 3.18 stable tree] Input: elantech - mark protocols v2 and v3 as semi-mt Sasha Levin
2016-02-10 14:57 ` [added to the 3.18 stable tree] virtio_balloon: fix race between migration and ballooning Sasha Levin
2016-02-10 14:57 ` [added to the 3.18 stable tree] parisc: Fix __ARCH_SI_PREAMBLE_SIZE Sasha Levin
2016-02-10 14:58 ` [added to the 3.18 stable tree] KVM: PPC: Fix ONE_REG AltiVec support Sasha Levin
2016-02-10 14:58 ` [added to the 3.18 stable tree] dmaengine: dw: Make error prints unique. Part #1 Sasha Levin
2016-02-10 14:58 ` [added to the 3.18 stable tree] dmaengine: dw: fix cyclic transfer setup Sasha Levin
2016-02-10 14:58 ` [added to the 3.18 stable tree] dmaengine: dw: fix cyclic transfer callbacks Sasha Levin
2016-02-10 14:58 ` [added to the 3.18 stable tree] mmc: mmci: fix an ages old detection error Sasha Levin
2016-02-10 14:58 ` [added to the 3.18 stable tree] mmc: core: Fix error paths and messages in mmc_init_card Sasha Levin
2016-02-10 14:58 ` [added to the 3.18 stable tree] mmc: core: Simplify by adding mmc_execute_tuning() Sasha Levin
2016-02-10 14:58 ` [added to the 3.18 stable tree] mmc: core: enable CMD19 tuning for DDR50 mode Sasha Levin
2016-02-10 14:58 ` [added to the 3.18 stable tree] mmc: core: Enable tuning according to the actual timing Sasha Levin
2016-02-10 14:58 ` [added to the 3.18 stable tree] sparc64: fix incorrect sign extension in sys_sparc64_personality Sasha Levin
2016-02-10 14:58 ` [added to the 3.18 stable tree] cifs: convert to print_hex_dump() instead of custom implementation Sasha Levin
2016-02-10 14:58 ` [added to the 3.18 stable tree] cifs: convert printk(LEVEL...) to pr_<level> Sasha Levin
2016-02-10 14:58 ` [added to the 3.18 stable tree] cifs: Ratelimit kernel log messages Sasha Levin
2016-02-10 14:58 ` [added to the 3.18 stable tree] cifs: fix race between call_async() and reconnect() Sasha Levin
2016-02-10 14:58 ` [added to the 3.18 stable tree] cifs_dbg() outputs an uninitialized buffer in cifs_readdir() Sasha Levin
2016-02-10 14:58 ` [added to the 3.18 stable tree] m32r: fix m32104ut_defconfig build fail Sasha Levin
2016-02-10 14:58 ` [added to the 3.18 stable tree] dma-debug: switch check from _text to _stext Sasha Levin
2016-02-10 14:58 ` [added to the 3.18 stable tree] scripts/bloat-o-meter: fix python3 syntax error Sasha Levin
2016-02-10 14:58 ` [added to the 3.18 stable tree] ocfs2/dlm: ignore cleaning the migration mle that is inuse Sasha Levin
2016-02-10 14:58 ` [added to the 3.18 stable tree] zram/zcomp: use GFP_NOIO to allocate streams Sasha Levin
2016-02-10 14:58 ` [added to the 3.18 stable tree] zram: try vmalloc() after kmalloc() Sasha Levin
2016-02-10 14:58 ` [added to the 3.18 stable tree] mm: soft-offline: check return value in second __get_any_page() call Sasha Levin
2016-02-10 14:58 ` [added to the 3.18 stable tree] memcg: only free spare array when readers are done Sasha Levin
2016-02-10 14:58 ` [added to the 3.18 stable tree] panic: release stale console lock to always get the logbuf printed out Sasha Levin
2016-02-10 14:58 ` [added to the 3.18 stable tree] kernel/panic.c: turn off locks debug before releasing console lock Sasha Levin
2016-02-10 14:58 ` [added to the 3.18 stable tree] printk: do cond_resched() between lines while outputting to consoles Sasha Levin
2016-02-10 14:58 ` [added to the 3.18 stable tree] crypto: af_alg - Disallow bind/setkey/... after accept(2) Sasha Levin
2016-02-10 14:58 ` [added to the 3.18 stable tree] crypto: af_alg - Fix socket double-free when accept fails Sasha Levin
2016-02-10 14:58 ` [added to the 3.18 stable tree] crypto: af_alg - Add nokey compatibility path Sasha Levin
2016-02-10 14:58 ` [added to the 3.18 stable tree] mac802154: fix typo IEEE802515 to IEEE802154 Sasha Levin
2016-02-10 14:58 ` [added to the 3.18 stable tree] crypto: hash - Add crypto_ahash_has_setkey Sasha Levin
2016-02-10 14:58 ` [added to the 3.18 stable tree] crypto: algif_hash - Require setkey before accept(2) Sasha Levin
2016-02-10 14:58 ` [added to the 3.18 stable tree] crypto: af_alg - Allow af_af_alg_release_parent to be called on nokey path Sasha Levin
2016-02-10 14:58 ` [added to the 3.18 stable tree] crypto: algif_hash - Remove custom release parent function Sasha Levin
2016-02-10 14:58 ` [added to the 3.18 stable tree] crypto: af_alg - Forbid bind(2) when nokey child sockets are present Sasha Levin
2016-02-10 14:58 ` [added to the 3.18 stable tree] crypto: algif_hash - Fix race condition in hash_check_key Sasha Levin
2016-02-10 14:58 ` [added to the 3.18 stable tree] crypto: crc32c - Fix crc32c soft dependency Sasha Levin
2016-02-10 14:58 ` [added to the 3.18 stable tree] IB/qib: fix mcast detach when qp not attached Sasha Levin
2016-02-10 14:58 ` [added to the 3.18 stable tree] IB/qib: Support creating qps with GFP_NOIO flag Sasha Levin
2016-02-10 14:58 ` [added to the 3.18 stable tree] ideapad-laptop: Add Lenovo ideapad Y700-17ISK to no_hw_rfkill dmi list Sasha Levin
2016-02-10 14:58 ` [added to the 3.18 stable tree] iscsi-target: Fix potential dead-lock during node acl delete Sasha Levin
2016-02-10 14:58 ` [added to the 3.18 stable tree] powerpc: Simplify module TOC handling Sasha Levin
2016-02-15  5:59   ` Michael Ellerman
2016-02-10 14:58 ` [added to the 3.18 stable tree] MIPS: Fix some missing CONFIG_CPU_MIPSR6 #ifdefs Sasha Levin
2016-02-10 14:58 ` [added to the 3.18 stable tree] ACPI / PCI / hotplug: unlock in error path in acpiphp_enable_slot() Sasha Levin
2016-02-10 14:58 ` [added to the 3.18 stable tree] ideapad-laptop: Add Lenovo Yoga 900 to no_hw_rfkill dmi list Sasha Levin
2016-02-10 14:58 ` [added to the 3.18 stable tree] ideapad-laptop: Add Lenovo Yoga 700 " Sasha Levin
2016-02-10 14:58 ` [added to the 3.18 stable tree] usb: cdc-acm: handle unlinked urb in acm read callback Sasha Levin
2016-02-10 14:58 ` [added to the 3.18 stable tree] usb: cdc-acm: send zero packet for intel 7260 modem Sasha Levin
2016-02-10 14:58 ` [added to the 3.18 stable tree] cdc-acm:exclude Samsung phone 04e8:685d Sasha Levin
2016-02-10 14:58 ` [added to the 3.18 stable tree] usb: hub: do not clear BOS field during reset device Sasha Levin
2016-02-10 14:58 ` [added to the 3.18 stable tree] USB: cp210x: add ID for IAI USB to RS485 adaptor Sasha Levin
2016-02-10 14:58 ` [added to the 3.18 stable tree] USB: visor: fix null-deref at probe Sasha Levin
2016-02-10 14:58 ` [added to the 3.18 stable tree] USB: serial: visor: fix crash on detecting device without write_urbs Sasha Levin
2016-02-10 14:58 ` [added to the 3.18 stable tree] USB: serial: option: Adding support for Telit LE922 Sasha Levin
2016-02-10 14:58 ` [added to the 3.18 stable tree] ALSA: seq: Fix incorrect sanity check at snd_seq_oss_synth_cleanup() Sasha Levin
2016-02-10 14:58 ` [added to the 3.18 stable tree] ALSA: seq: Degrade the error message for too many opens Sasha Levin
2016-02-10 14:58 ` [added to the 3.18 stable tree] USB: serial: ftdi_sio: add support for Yaesu SCU-18 cable Sasha Levin
2016-02-10 14:58 ` [added to the 3.18 stable tree] USB: option: fix Cinterion AHxx enumeration Sasha Levin
2016-02-10 14:58 ` [added to the 3.18 stable tree] ALSA: compress: Disable GET_CODEC_CAPS ioctl for some architectures Sasha Levin
2016-02-10 14:58 ` [added to the 3.18 stable tree] ALSA: usb-audio: Fix TEAC UD-501/UD-503/NT-503 usb delay Sasha Levin
2016-02-10 14:59 ` [added to the 3.18 stable tree] ALSA: bebob: Use a signed return type for get_formation_index Sasha Levin
2016-02-10 14:59 ` [added to the 3.18 stable tree] arm64: mm: avoid calling apply_to_page_range on empty range Sasha Levin
2016-02-10 14:59 ` [added to the 3.18 stable tree] powerpc/eeh: Fix PE location code Sasha Levin
2016-02-10 14:59 ` [added to the 3.18 stable tree] SCSI: fix crashes in sd and sr runtime PM Sasha Levin
2016-02-10 14:59 ` [added to the 3.18 stable tree] tty: Fix unsafe ldisc reference via ioctl(TIOCGETD) Sasha Levin
2016-02-10 14:59 ` [added to the 3.18 stable tree] n_tty: Fix unsafe reference to "other" ldisc Sasha Levin
2016-02-10 14:59 ` [added to the 3.18 stable tree] staging/speakup: Use tty_ldisc_ref() for paste kworker Sasha Levin
2016-02-10 14:59 ` [added to the 3.18 stable tree] irqchip/atmel-aic: Fix wrong bit operation for IRQ priority Sasha Levin
2016-02-10 14:59 ` [added to the 3.18 stable tree] seccomp: always propagate NO_NEW_PRIVS on tsync Sasha Levin
2016-02-10 14:59 ` [added to the 3.18 stable tree] KEYS: prevent keys from being removed from specified keyrings Sasha Levin
2016-02-10 15:19   ` Mimi Zohar
2016-02-10 18:04     ` Sasha Levin
2016-02-10 14:59 ` [added to the 3.18 stable tree] ALSA: dummy: Disable switching timer backend via sysfs Sasha Levin
2016-02-10 14:59 ` [added to the 3.18 stable tree] drm/vmwgfx: respect 'nomodeset' Sasha Levin
2016-02-10 14:59 ` [added to the 3.18 stable tree] Staging: speakup: Fix getting port information Sasha Levin
2016-02-10 14:59 ` [added to the 3.18 stable tree] x86/mm/pat: Avoid truncation when converting cpa->numpages to address Sasha Levin
2016-02-10 14:59 ` [added to the 3.18 stable tree] serial: 8250_pci: Add Intel Broadwell ports Sasha Levin
2016-02-10 14:59 ` [added to the 3.18 stable tree] USB: fix invalid memory access in hub_activate() Sasha Levin
2016-02-10 14:59 ` [added to the 3.18 stable tree] arm64: restore bogomips information in /proc/cpuinfo Sasha Levin
2016-02-10 14:59 ` [added to the 3.18 stable tree] mac80211: Requeue work after scan complete for all VIF types Sasha Levin
2016-02-10 14:59 ` [added to the 3.18 stable tree] rfkill: fix rfkill_fop_read wait_event usage Sasha Levin
2016-02-10 14:59 ` [added to the 3.18 stable tree] ARM: dts: at91: sama5d4: fix instance id of DBGU Sasha Levin
2016-02-10 14:59 ` [added to the 3.18 stable tree] crypto: shash - Fix has_key setting Sasha Levin
2016-02-10 14:59 ` [added to the 3.18 stable tree] drm/i915/dp: fall back to 18 bpp when sink capability is unknown Sasha Levin
2016-02-10 14:59 ` [added to the 3.18 stable tree] ALSA: usb: Add native DSD support for Aune X1S Sasha Levin
2016-02-10 14:59 ` [added to the 3.18 stable tree] ALSA: usb-audio: Add native DSD support for PS Audio NuWave DAC Sasha Levin
2016-02-10 14:59 ` [added to the 3.18 stable tree] ALSA: usb-audio: Add quirk for Microsoft LifeCam HD-6000 Sasha Levin
2016-02-10 14:59 ` [added to the 3.18 stable tree] crypto: algif_hash - wait for crypto_ahash_init() to complete Sasha Levin
2016-02-10 14:59 ` [added to the 3.18 stable tree] ALSA: seq: Fix race at closing in virmidi driver Sasha Levin
2016-02-10 14:59 ` [added to the 3.18 stable tree] ALSA: rawmidi: Remove kernel WARNING for NULL user-space buffer check Sasha Levin
2016-02-10 14:59 ` [added to the 3.18 stable tree] ALSA: pcm: Fix potential deadlock in OSS emulation Sasha Levin
2016-02-10 14:59 ` [added to the 3.18 stable tree] ALSA: seq: Fix yet another races among ALSA timer accesses Sasha Levin
2016-02-10 14:59 ` [added to the 3.18 stable tree] ALSA: timer: Harden slave timer list handling Sasha Levin
2016-02-10 14:59 ` [added to the 3.18 stable tree] ALSA: timer: Code cleanup Sasha Levin
2016-02-10 14:59 ` [added to the 3.18 stable tree] ALSA: timer: Fix link corruption due to double start or stop Sasha Levin
2016-02-10 14:59 ` [added to the 3.18 stable tree] drm: add helper to check for wc memory support Sasha Levin
2016-02-10 14:59 ` [added to the 3.18 stable tree] drm/radeon: Always disable RADEON_GEM_GTT_UC along with RADEON_GEM_GTT_WC Sasha Levin
2016-02-10 14:59 ` [added to the 3.18 stable tree] drm/radeon: mask out WC from BO on unsupported arches Sasha Levin
2016-02-10 14:59 ` [added to the 3.18 stable tree] ALSA: hda - Add fixup for Mac Mini 7,1 model Sasha Levin
2016-02-10 14:59 ` [added to the 3.18 stable tree] ALSA: rawmidi: Make snd_rawmidi_transmit() race-free Sasha Levin
2016-02-10 14:59 ` [added to the 3.18 stable tree] ALSA: rawmidi: Fix race at copying & updating the position Sasha Levin
2016-02-10 14:59 ` [added to the 3.18 stable tree] ALSA: seq: Fix lockdep warnings due to double mutex locks Sasha Levin
2016-02-10 14:59 ` [added to the 3.18 stable tree] drivers/scsi/sg.c: mark VMA as VM_IO to prevent migration Sasha Levin
2016-02-10 14:59 ` [added to the 3.18 stable tree] radix-tree: fix race in gang lookup Sasha Levin
2016-02-10 14:59 ` [added to the 3.18 stable tree] xhci: call BIOS workaround to enable runtime suspend on Intel Braswell Sasha Levin
2016-02-10 14:59 ` [added to the 3.18 stable tree] xhci: Workaround to get D3 working in Intel xHCI Sasha Levin
2016-02-10 14:59 ` [added to the 3.18 stable tree] xhci: Move xhci_pme_quirk() behind #ifdef CONFIG_PM Sasha Levin
2016-02-10 14:59 ` [added to the 3.18 stable tree] usb: xhci: handle both SSIC ports in PME stuck quirk Sasha Levin
2016-02-10 14:59 ` [added to the 3.18 stable tree] usb: xhci: add a quirk bit for ssic port unused Sasha Levin
2016-02-10 14:59 ` [added to the 3.18 stable tree] usb: xhci: set SSIC port unused only if xhci_suspend succeeds Sasha Levin
2016-02-10 14:59 ` [added to the 3.18 stable tree] usb: xhci: apply XHCI_PME_STUCK_QUIRK to Intel Broxton-M platforms Sasha Levin
2016-02-10 14:59 ` [added to the 3.18 stable tree] xhci: Fix list corruption in urb dequeue at host removal Sasha Levin
2016-02-10 14:59 ` [added to the 3.18 stable tree] [media] tda1004x: only update the frontend properties if locked Sasha Levin
2016-02-10 14:59 ` [added to the 3.18 stable tree] ALSA: timer: Fix double unlink of active_list Sasha Levin
2016-02-10 14:59 ` [added to the 3.18 stable tree] ALSA: timer: Fix leftover link at closing Sasha Levin
2016-02-10 14:59 ` [added to the 3.18 stable tree] [media] saa7134-alsa: Only frees registered sound cards Sasha Levin
2016-02-10 14:59 ` [added to the 3.18 stable tree] ARM: nomadik: set up MCDATDIR2 Sasha Levin
2016-02-10 14:59 ` [added to the 3.18 stable tree] drm: fix missing reference counting decrease Sasha Levin
2016-02-10 14:59 ` [added to the 3.18 stable tree] drm: Add drm_fixp_from_fraction and drm_fixp2int_ceil Sasha Levin
2016-02-10 14:59 ` [added to the 3.18 stable tree] drm/dp/mst: Calculate MST PBN with 31.32 fixed point Sasha Levin
2016-02-10 14:59 ` [added to the 3.18 stable tree] dump_stack: avoid potential deadlocks Sasha Levin
2016-02-10 14:59 ` [added to the 3.18 stable tree] ocfs2/dlm: clear refmap bit of recovery lock while doing local recovery cleanup Sasha Levin
2016-02-10 15:00 ` [added to the 3.18 stable tree] mm: replace vma_lock_anon_vma with anon_vma_lock_read/write Sasha Levin
2016-02-10 15:00 ` [added to the 3.18 stable tree] radix-tree: fix oops after radix_tree_iter_retry Sasha Levin

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).