stable.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [added to the 3.18 stable tree] VFS: net/unix: d_backing_inode() annotations
@ 2016-07-12  2:57 Sasha Levin
  2016-07-12  2:57 ` [added to the 3.18 stable tree] VFS: AF_UNIX sockets should call mknod on the top layer only Sasha Levin
                   ` (225 more replies)
  0 siblings, 226 replies; 235+ messages in thread
From: Sasha Levin @ 2016-07-12  2:57 UTC (permalink / raw)
  To: stable, stable-commits; +Cc: David Howells, Al Viro, Sasha Levin

From: David Howells <dhowells@redhat.com>

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

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

[ Upstream commit a25b376bded1ba7fd1d455e140d723b7de2e343c ]

places where we are dealing with S_ISSOCK file creation/lookups.

Signed-off-by: David Howells <dhowells@redhat.com>
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Signed-off-by: Sasha Levin <sasha.levin@oracle.com>
---
 net/unix/af_unix.c | 6 +++---
 net/unix/diag.c    | 2 +-
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/net/unix/af_unix.c b/net/unix/af_unix.c
index 20d7526..bba93a6 100644
--- a/net/unix/af_unix.c
+++ b/net/unix/af_unix.c
@@ -305,7 +305,7 @@ static struct sock *unix_find_socket_byinode(struct inode *i)
 		    &unix_socket_table[i->i_ino & (UNIX_HASH_SIZE - 1)]) {
 		struct dentry *dentry = unix_sk(s)->path.dentry;
 
-		if (dentry && dentry->d_inode == i) {
+		if (dentry && d_backing_inode(dentry) == i) {
 			sock_hold(s);
 			goto found;
 		}
@@ -898,7 +898,7 @@ static struct sock *unix_find_other(struct net *net,
 		err = kern_path(sunname->sun_path, LOOKUP_FOLLOW, &path);
 		if (err)
 			goto fail;
-		inode = path.dentry->d_inode;
+		inode = d_backing_inode(path.dentry);
 		err = inode_permission(inode, MAY_WRITE);
 		if (err)
 			goto put_fail;
@@ -1025,7 +1025,7 @@ static int unix_bind(struct socket *sock, struct sockaddr *uaddr, int addr_len)
 			goto out_up;
 		}
 		addr->hash = UNIX_HASH_SIZE;
-		hash = path.dentry->d_inode->i_ino & (UNIX_HASH_SIZE-1);
+		hash = d_backing_inode(path.dentry)->i_ino & (UNIX_HASH_SIZE-1);
 		spin_lock(&unix_table_lock);
 		u->path = path;
 		list = &unix_socket_table[hash];
diff --git a/net/unix/diag.c b/net/unix/diag.c
index 86fa0f3..9d4218f 100644
--- a/net/unix/diag.c
+++ b/net/unix/diag.c
@@ -25,7 +25,7 @@ static int sk_diag_dump_vfs(struct sock *sk, struct sk_buff *nlskb)
 
 	if (dentry) {
 		struct unix_diag_vfs uv = {
-			.udiag_vfs_ino = dentry->d_inode->i_ino,
+			.udiag_vfs_ino = d_backing_inode(dentry)->i_ino,
 			.udiag_vfs_dev = dentry->d_sb->s_dev,
 		};
 
-- 
2.5.0


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

end of thread, other threads:[~2016-07-30 18:05 UTC | newest]

Thread overview: 235+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-07-12  2:57 [added to the 3.18 stable tree] VFS: net/unix: d_backing_inode() annotations Sasha Levin
2016-07-12  2:57 ` [added to the 3.18 stable tree] VFS: AF_UNIX sockets should call mknod on the top layer only Sasha Levin
2016-07-12  2:57 ` [added to the 3.18 stable tree] af_unix: Fix splice-bind deadlock Sasha Levin
2016-07-12  2:57 ` [added to the 3.18 stable tree] percpu: fix synchronization between chunk->map_extend_work and chunk destruction Sasha Levin
2016-07-12  2:57 ` [added to the 3.18 stable tree] percpu: fix synchronization between synchronous map extension " Sasha Levin
2016-07-12  2:57 ` [added to the 3.18 stable tree] cgroup: remove redundant cleanup in css_create Sasha Levin
2016-07-12  2:57 ` [added to the 3.18 stable tree] usb: dwc3: exynos: Remove local variable for clock from probe Sasha Levin
2016-07-12  2:57 ` [added to the 3.18 stable tree] usb: dwc3: exynos: Fix deferred probing storm Sasha Levin
2016-07-12  2:57 ` [added to the 3.18 stable tree] usb: gadget: fix spinlock dead lock in gadgetfs Sasha Levin
2016-07-12  2:57 ` [added to the 3.18 stable tree] HID: elo: kill not flush the work Sasha Levin
2016-07-12  2:57 ` [added to the 3.18 stable tree] xhci: Fix handling timeouted commands on hosts in weird states Sasha Levin
2016-07-12  2:57 ` [added to the 3.18 stable tree] usb: xhci-plat: properly handle probe deferral for devm_clk_get() Sasha Levin
2016-07-12  2:57 ` [added to the 3.18 stable tree] usb: quirks: Fix sorting Sasha Levin
2016-07-12  2:57 ` [added to the 3.18 stable tree] usb: quirks: Add no-lpm quirk for Acer C120 LED Projector Sasha Levin
2016-07-12  2:57 ` [added to the 3.18 stable tree] USB: xhci: Add broken streams quirk for Frescologic device id 1009 Sasha Levin
2016-07-12  2:57 ` [added to the 3.18 stable tree] usb: musb: Ensure rx reinit occurs for shared_fifo endpoints Sasha Levin
2016-07-12  2:57 ` [added to the 3.18 stable tree] usb: musb: Stop bulk endpoint while queue is rotated Sasha Levin
2016-07-12  2:57 ` [added to the 3.18 stable tree] usb: host: ehci-tegra: Grab the correct UTMI pads reset Sasha Levin
2016-07-12  2:57 ` [added to the 3.18 stable tree] scsi: fix race between simultaneous decrements of ->host_failed Sasha Levin
2016-07-12  2:57 ` [added to the 3.18 stable tree] ARM: 8578/1: mm: ensure pmd_present only checks the valid bit Sasha Levin
2016-07-12  2:57 ` [added to the 3.18 stable tree] ARM: 8579/1: mm: Fix definition of pmd_mknotpresent Sasha Levin
2016-07-12  2:57 ` [added to the 3.18 stable tree] crypto: ux500 - memmove the right size Sasha Levin
2016-07-12  2:57 ` [added to the 3.18 stable tree] drm/radeon: fix asic initialization for virtualized environments Sasha Levin
2016-07-12  2:57 ` [added to the 3.18 stable tree] usb: common: otg-fsm: add license to usb-otg-fsm Sasha Levin
2016-07-12  2:57 ` [added to the 3.18 stable tree] MIPS: KVM: Fix modular KVM under QEMU Sasha Levin
2016-07-12  2:57 ` [added to the 3.18 stable tree] spi: sun4i: fix FIFO limit Sasha Levin
2016-07-12  2:57 ` [added to the 3.18 stable tree] spi: sunxi: fix transfer timeout Sasha Levin
2016-07-12  8:25   ` Michal Suchanek
2016-07-12 13:01     ` Sasha Levin
2016-07-12  2:58 ` [added to the 3.18 stable tree] kprobes/x86: Clear TF bit in fault on single-stepping Sasha Levin
2016-07-12  2:58 ` [added to the 3.18 stable tree] kernel/sysrq, watchdog, sched/core: Reset watchdog on all CPUs while processing sysrq-w Sasha Levin
2016-07-12  2:58 ` [added to the 3.18 stable tree] drm/i915/ilk: Don't disable SSC source if it's in use Sasha Levin
2016-07-12  2:58 ` [added to the 3.18 stable tree] nfsd4/rpc: move backchannel create logic into rpc code Sasha Levin
2016-07-12  2:58 ` [added to the 3.18 stable tree] base: make module_create_drivers_dir race-free Sasha Levin
2016-07-12  2:58 ` [added to the 3.18 stable tree] kvm: Fix irq route entries exceeding KVM_MAX_IRQ_ROUTES Sasha Levin
2016-07-12  2:58 ` [added to the 3.18 stable tree] KEYS: potential uninitialized variable Sasha Levin
2016-07-12  2:58 ` [added to the 3.18 stable tree] Btrfs: make btrfs_abort_transaction consider existence of new block groups Sasha Levin
2016-07-12  2:58 ` [added to the 3.18 stable tree] btrfs: account for non-CoW'd blocks in btrfs_abort_transaction Sasha Levin
2016-07-12  2:58 ` [added to the 3.18 stable tree] IB/mlx4: Properly initialize GRH TClass and FlowLabel in AHs Sasha Levin
2016-07-12  2:58 ` [added to the 3.18 stable tree] can: c_can: Update D_CAN TX and RX functions to 32 bit - fix Altera Cyclone access Sasha Levin
2016-07-12  2:58 ` [added to the 3.18 stable tree] can: at91_can: RX queue could get stuck at high bus load Sasha Levin
2016-07-12  2:58 ` [added to the 3.18 stable tree] tracing: Handle NULL formats in hold_module_trace_bprintk_format() Sasha Levin
2016-07-12  2:58 ` [added to the 3.18 stable tree] arm64: mm: remove page_mapping check in __sync_icache_dcache Sasha Levin
2016-07-12  2:58 ` [added to the 3.18 stable tree] pinctrl: imx: Do not treat a PIN without MUX register as an error Sasha Levin
2016-07-12  2:58 ` [added to the 3.18 stable tree] pinctrl: single: Fix missing flush of posted write for a wakeirq Sasha Levin
2016-07-12  2:58 ` [added to the 3.18 stable tree] UBI: Fastmap: Fix race in ubi_eba_atomic_leb_change() Sasha Levin
2016-07-12  2:58 ` [added to the 3.18 stable tree] mm: Export migrate_page_move_mapping and migrate_page_copy Sasha Levin
2016-07-12  2:58 ` [added to the 3.18 stable tree] UBIFS: Implement ->migratepage() Sasha Levin
2016-07-12  2:58 ` [added to the 3.18 stable tree] can: fix handling of unmodifiable configuration options fix Sasha Levin
2016-07-12  2:58 ` [added to the 3.18 stable tree] can: fix oops caused by wrong rtnl dellink usage Sasha Levin
2016-07-12  2:58 ` [added to the 3.18 stable tree] xen/pciback: Fix conf_space read/write overlap check Sasha Levin
2016-07-12  2:58 ` [added to the 3.18 stable tree] Input: wacom_w8001 - w8001_MAX_LENGTH should be 13 Sasha Levin
2016-07-12  2:58 ` [added to the 3.18 stable tree] Input: elantech - add new icbody type Sasha Levin
2016-07-12  2:58 ` [added to the 3.18 stable tree] Input: elantech - add more IC body types to the list Sasha Levin
2016-07-12  2:58 ` [added to the 3.18 stable tree] drm/nouveau: fix for disabled fbdev emulation Sasha Levin
2016-07-12  2:58 ` [added to the 3.18 stable tree] decode_negTokenInit had wrong calling sequence Sasha Levin
2016-07-12  2:58 ` [added to the 3.18 stable tree] [SMB3] Fix sec=krb5 on smb3 mounts Sasha Levin
2016-07-12  2:58 ` [added to the 3.18 stable tree] cifs: dynamic allocation of ntlmssp blob Sasha Levin
2016-07-12  2:58 ` [added to the 3.18 stable tree] HID: hiddev: validate num_values for HIDIOCGUSAGES, HIDIOCSUSAGES commands Sasha Levin
2016-07-12  2:58 ` [added to the 3.18 stable tree] ALSA: hda - remove one pin from ALC292_STANDARD_PINS Sasha Levin
2016-07-12  2:58 ` [added to the 3.18 stable tree] ALSA: dummy: Fix a use-after-free at closing Sasha Levin
2016-07-12  2:58 ` [added to the 3.18 stable tree] Fix reconnect to not defer smb3 session reconnect long after socket reconnect Sasha Levin
2016-07-12  2:58 ` [added to the 3.18 stable tree] File names with trailing period or space need special case conversion Sasha Levin
2016-07-12  2:58 ` [added to the 3.18 stable tree] USB: EHCI: declare hostpc register as zero-length array Sasha Levin
2016-07-12  2:58 ` [added to the 3.18 stable tree] tmpfs: don't undo fallocate past its last page Sasha Levin
2016-07-12  9:31   ` Vlastimil Babka
2016-07-12  2:58 ` [added to the 3.18 stable tree] mm: rename deactivate_page to deactivate_file_page Sasha Levin
2016-07-12  2:58 ` [added to the 3.18 stable tree] mm/swap.c: flush lru pvecs on compound page arrival Sasha Levin
2016-07-12  2:58 ` [added to the 3.18 stable tree] mm, compaction: skip compound pages by order in free scanner Sasha Levin
2016-07-12  2:58 ` [added to the 3.18 stable tree] mm, compaction: abort free scanner if split fails Sasha Levin
2016-07-12  2:58 ` [added to the 3.18 stable tree] fs/nilfs2: fix potential underflow in call to crc32_le Sasha Levin
2016-07-12  2:58 ` [added to the 3.18 stable tree] powerpc/tm: Always reclaim in start_thread() for exec() class syscalls Sasha Levin
2016-07-12  2:58 ` [added to the 3.18 stable tree] KVM: arm/arm64: Stop leaking vcpu pid references Sasha Levin
2016-07-12  2:58 ` [added to the 3.18 stable tree] make nfs_atomic_open() call d_drop() on all ->open_context() errors Sasha Levin
2016-07-12  2:58 ` [added to the 3.18 stable tree] USB: don't free bandwidth_mutex too early Sasha Levin
2016-07-12  2:58 ` [added to the 3.18 stable tree] ARC: unwind: ensure that .debug_frame is generated (vs. .eh_frame) Sasha Levin
2016-07-12  2:58 ` [added to the 3.18 stable tree] arc: unwind: warn only once if DW2_UNWIND is disabled Sasha Levin
2016-07-12  2:58 ` [added to the 3.18 stable tree] Revert "s390/kdump: Clear subchannel ID to signal non-CCW/SCSI IPL" Sasha Levin
2016-07-12  2:58 ` [added to the 3.18 stable tree] NFS: Fix another OPEN_DOWNGRADE bug Sasha Levin
2016-07-12  2:58 ` [added to the 3.18 stable tree] namespace: update event counter when umounting a deleted dentry Sasha Levin
2016-07-12  2:58 ` [added to the 3.18 stable tree] locks: use file_inode() Sasha Levin
2016-07-12  2:58 ` [added to the 3.18 stable tree] PCI: Move domain assignment from arm64 to generic code Sasha Levin
2016-07-12  2:58 ` [added to the 3.18 stable tree] PCI: Allow a NULL "parent" pointer in pci_bus_assign_domain_nr() Sasha Levin
2016-07-12  2:58 ` [added to the 3.18 stable tree] ASoC: samsung: pass DMA channels as pointers Sasha Levin
2016-07-12  2:58 ` [added to the 3.18 stable tree] ALSA: usb-audio: Minor code cleanup in create_fixed_stream_quirk() Sasha Levin
2016-07-12  2:58 ` [added to the 3.18 stable tree] ALSA: usb-audio: Fix double-free in error paths after snd_usb_add_audio_stream() call Sasha Levin
2016-07-12  2:58 ` [added to the 3.18 stable tree] HID: logitech: fix Dual Action gamepad support Sasha Levin
2016-07-12  2:58 ` [added to the 3.18 stable tree] 8250: use callbacks to access UART_DLL/UART_DLM Sasha Levin
2016-07-12  2:58 ` [added to the 3.18 stable tree] mtip32xx: Fix for rmmod crash when drive is in FTL rebuild Sasha Levin
2016-07-12  2:58 ` [added to the 3.18 stable tree] mtip32xx: Fix broken service thread handling Sasha Levin
2016-07-12  2:59 ` [added to the 3.18 stable tree] hwmon: (max1111) Return -ENODEV from max1111_read_channel if not instantiated Sasha Levin
2016-07-12  2:59 ` [added to the 3.18 stable tree] PKCS#7: pkcs7_validate_trust(): initialize the _trusted output argument Sasha Levin
2016-07-12  2:59 ` [added to the 3.18 stable tree] ALSA: timer: Use mod_timer() for rearming the system timer Sasha Levin
2016-07-12  2:59 ` [added to the 3.18 stable tree] mm: fix invalid node in alloc_migrate_target() Sasha Levin
2016-07-12  2:59 ` [added to the 3.18 stable tree] powerpc/mm: Fixup preempt underflow with huge pages Sasha Levin
2016-07-12  7:28   ` Sebastian Andrzej Siewior
2016-07-12  8:42     ` Sasha Levin
2016-07-12  2:59 ` [added to the 3.18 stable tree] drm/udl: Use unlocked gem unreferencing Sasha Levin
2016-07-12  2:59 ` [added to the 3.18 stable tree] drm/radeon: add a dpm quirk for sapphire Dual-X R7 370 2G D5 Sasha Levin
2016-07-12  2:59 ` [added to the 3.18 stable tree] drm/radeon: add a dpm quirk for all R7 370 parts Sasha Levin
2016-07-12  2:59 ` [added to the 3.18 stable tree] tcp: convert cached rtt from usec to jiffies when feeding initial rto Sasha Levin
2016-07-12  2:59 ` [added to the 3.18 stable tree] net: jme: fix suspend/resume on JMC260 Sasha Levin
2016-07-12  2:59 ` [added to the 3.18 stable tree] net: qca_spi: Don't clear IFF_BROADCAST Sasha Levin
2016-07-12  2:59 ` [added to the 3.18 stable tree] net: qca_spi: clear IFF_TX_SKB_SHARING Sasha Levin
2016-07-12  2:59 ` [added to the 3.18 stable tree] sctp: lack the check for ports in sctp_v6_cmp_addr Sasha Levin
2016-07-12  2:59 ` [added to the 3.18 stable tree] qmi_wwan: add Sierra Wireless EM74xx device ID Sasha Levin
2016-07-12  2:59 ` [added to the 3.18 stable tree] ipv6: re-enable fragment header matching in ipv6_find_hdr Sasha Levin
2016-07-12  2:59 ` [added to the 3.18 stable tree] cdc_ncm: toggle altsetting to force reset before setup Sasha Levin
2016-07-12  2:59 ` [added to the 3.18 stable tree] usbnet: cleanup after bind() in probe() Sasha Levin
2016-07-12  2:59 ` [added to the 3.18 stable tree] udp6: fix UDP/IPv6 encap resubmit path Sasha Levin
2016-07-12  2:59 ` [added to the 3.18 stable tree] sh_eth: fix NULL pointer dereference in sh_eth_ring_format() Sasha Levin
2016-07-12  2:59 ` [added to the 3.18 stable tree] sh_eth: Remove redundant alignment adjustment Sasha Levin
2016-07-12  2:59 ` [added to the 3.18 stable tree] sh_eth: Fix DMA-API usage for RX buffers Sasha Levin
2016-07-12  2:59 ` [added to the 3.18 stable tree] sh_eth: fix RX buffer size alignment Sasha Levin
2016-07-12  2:59 ` [added to the 3.18 stable tree] qlcnic: Remove unnecessary usage of atomic_t Sasha Levin
2016-07-12  2:59 ` [added to the 3.18 stable tree] qlcnic: Fix mailbox completion handling during spurious interrupt Sasha Levin
2016-07-12  2:59 ` [added to the 3.18 stable tree] ipv4: Don't do expensive useless work during inetdev destroy Sasha Levin
2016-07-12  2:59 ` [added to the 3.18 stable tree] net: Fix use after free in the recvmmsg exit path Sasha Levin
2016-07-12  2:59 ` [added to the 3.18 stable tree] mlx4: add missing braces in verify_qp_parameters Sasha Levin
2016-07-12  2:59 ` [added to the 3.18 stable tree] farsync: fix off-by-one bug in fst_add_one Sasha Levin
2016-07-12  2:59 ` [added to the 3.18 stable tree] ath9k: fix buffer overrun for ar9287 Sasha Levin
2016-07-12  2:59 ` [added to the 3.18 stable tree] ppp: ensure file->private_data can't be overridden Sasha Levin
2016-07-12  2:59 ` [added to the 3.18 stable tree] qlge: Fix receive packets drop Sasha Levin
2016-07-12  2:59 ` [added to the 3.18 stable tree] net: bcmgenet: fix dma api length mismatch Sasha Levin
2016-07-12  2:59 ` [added to the 3.18 stable tree] ipv4: fix broadcast packets reception Sasha Levin
2016-07-12  2:59 ` [added to the 3.18 stable tree] ppp: take reference on channels netns Sasha Levin
2016-07-12  2:59 ` [added to the 3.18 stable tree] xfrm: Fix crash observed during device unregistration and decryption Sasha Levin
2016-07-12  2:59 ` [added to the 3.18 stable tree] qmi_wwan: add "D-Link DWM-221 B1" device id Sasha Levin
2016-07-12  2:59 ` [added to the 3.18 stable tree] ipv4: l2tp: fix a potential issue in l2tp_ip_recv Sasha Levin
2016-07-12  2:59 ` [added to the 3.18 stable tree] ipv6: l2tp: fix a potential issue in l2tp_ip6_recv Sasha Levin
2016-07-12  2:59 ` [added to the 3.18 stable tree] ip6_tunnel: set rtnl_link_ops before calling register_netdevice Sasha Levin
2016-07-12  2:59 ` [added to the 3.18 stable tree] pinctrl: nomadik: fix pull debug print inversion Sasha Levin
2016-07-12  2:59 ` [added to the 3.18 stable tree] [media] v4l: vsp1: Set the SRU CTRL0 register when starting the stream Sasha Levin
2016-07-12  2:59 ` [added to the 3.18 stable tree] mac80211: fix unnecessary frame drops in mesh fwding Sasha Levin
2016-07-12  2:59 ` [added to the 3.18 stable tree] futex: Acknowledge a new waiter in counter before plist Sasha Levin
2016-07-12  2:59 ` [added to the 3.18 stable tree] powerpc: Update TM user feature bits in scan_features() Sasha Levin
2016-07-12  2:59 ` [added to the 3.18 stable tree] Input: pmic8xxx-pwrkey - fix algorithm for converting trigger delay Sasha Levin
2016-07-12  2:59 ` [added to the 3.18 stable tree] xen kconfig: don't "select INPUT_XEN_KBDDEV_FRONTEND" Sasha Levin
2016-07-12  2:59 ` [added to the 3.18 stable tree] pinctrl: single: Fix pcs_parse_bits_in_pinctrl_entry to use __ffs than ffs Sasha Levin
2016-07-12  2:59 ` [added to the 3.18 stable tree] i2c: exynos5: Fix possible ABBA deadlock by keeping I2C clock prepared Sasha Levin
2016-07-12  2:59 ` [added to the 3.18 stable tree] ASoC: s3c24xx: use const snd_soc_component_driver pointer Sasha Levin
2016-07-12  2:59 ` [added to the 3.18 stable tree] ASoC: ssm4567: Reset device before regcache_sync() Sasha Levin
2016-07-12  2:59 ` [added to the 3.18 stable tree] efi: Expose non-blocking set_variable() wrapper to efivars Sasha Levin
2016-07-12  2:59 ` [added to the 3.18 stable tree] USB: usbip: fix potential out-of-bounds write Sasha Levin
2016-07-12  2:59 ` [added to the 3.18 stable tree] spi/rockchip: Make sure spi clk is on in rockchip_spi_set_cs Sasha Levin
2016-07-12  2:59 ` [added to the 3.18 stable tree] regulator: s5m8767: fix get_register() error handling Sasha Levin
2016-07-12  2:59 ` [added to the 3.18 stable tree] paride: make 'verbose' parameter an 'int' again Sasha Levin
2016-07-12  2:59 ` [added to the 3.18 stable tree] fbdev: da8xx-fb: fix videomodes of lcd panels Sasha Levin
2016-07-12  2:59 ` [added to the 3.18 stable tree] misc/bmp085: Enable building as a module Sasha Levin
2016-07-12  2:59 ` [added to the 3.18 stable tree] rtc: hym8563: fix invalid year calculation Sasha Levin
2016-07-12  2:59 ` [added to the 3.18 stable tree] rtc: vr41xx: Wire up alarm_irq_enable Sasha Levin
2016-07-12  2:59 ` [added to the 3.18 stable tree] rtc: max77686: Properly handle regmap_irq_get_virq() error code Sasha Levin
2016-07-12  3:00 ` [added to the 3.18 stable tree] drivers/misc/ad525x_dpot: AD5274 fix RDAC read back errors Sasha Levin
2016-07-12  3:00 ` [added to the 3.18 stable tree] x86/mm/kmmio: Fix mmiotrace for hugepages Sasha Levin
2016-07-12  3:00 ` [added to the 3.18 stable tree] ext4: fix NULL pointer dereference in ext4_mark_inode_dirty() Sasha Levin
2016-07-12  3:00 ` [added to the 3.18 stable tree] perf tools: handle spaces in file names obtained from /proc/pid/maps Sasha Levin
2016-07-12  3:00 ` [added to the 3.18 stable tree] perf stat: Document --detailed option Sasha Levin
2016-07-12  3:00 ` [added to the 3.18 stable tree] ARM: OMAP3: Add cpuidle parameters table for omap3430 Sasha Levin
2016-07-12  3:00 ` [added to the 3.18 stable tree] jme: Do not enable NIC WoL functions on S0 Sasha Levin
2016-07-12  3:00 ` [added to the 3.18 stable tree] jme: Fix device PM wakeup API usage Sasha Levin
2016-07-12  3:00 ` [added to the 3.18 stable tree] sunrpc/cache: drop reference when sunrpc_cache_pipe_upcall() detects a race Sasha Levin
2016-07-12  3:00 ` [added to the 3.18 stable tree] megaraid_sas: add missing curly braces in ioctl handler Sasha Levin
2016-07-12  3:00 ` [added to the 3.18 stable tree] ipvs: correct initial offset of Call-ID header search in SIP persistence engine Sasha Levin
2016-07-12  3:00 ` [added to the 3.18 stable tree] nbd: ratelimit error msgs after socket close Sasha Levin
2016-07-12  3:00 ` [added to the 3.18 stable tree] clk: rockchip: free memory in error cases when registering clock branches Sasha Levin
2016-07-12  3:00 ` [added to the 3.18 stable tree] clk: qcom: msm8960: fix ce3_core clk enable register Sasha Levin
2016-07-12  3:00 ` [added to the 3.18 stable tree] clk: versatile: sp810: support reentrance Sasha Levin
2016-07-12  3:00 ` [added to the 3.18 stable tree] clk: qcom: msm8960: Fix ce3_src register offset Sasha Levin
2016-07-12  3:00 ` [added to the 3.18 stable tree] lpfc: fix misleading indentation Sasha Levin
2016-07-12  3:00 ` [added to the 3.18 stable tree] Input: zforce_ts - fix dual touch recognition Sasha Levin
2016-07-12  3:00 ` [added to the 3.18 stable tree] proc: prevent accessing /proc/<PID>/environ until it's ready Sasha Levin
2016-07-12  3:00 ` [added to the 3.18 stable tree] batman-adv: Check skb size before using encapsulated ETH+VLAN header Sasha Levin
2016-07-12  3:00 ` [added to the 3.18 stable tree] batman-adv: Fix broadcast/ogm queue limit on a removed interface Sasha Levin
2016-07-12  3:00 ` [added to the 3.18 stable tree] batman-adv: Reduce refcnt of removed router when updating route Sasha Levin
2016-07-12  3:00 ` [added to the 3.18 stable tree] decnet: Do not build routes to devices without decnet private data Sasha Levin
2016-07-12  3:00 ` [added to the 3.18 stable tree] route: do not cache fib route info on local routes with oif Sasha Levin
2016-07-12  3:00 ` [added to the 3.18 stable tree] packet: fix heap info leak in PACKET_DIAG_MCLIST sock_diag interface Sasha Levin
2016-07-12  3:00 ` [added to the 3.18 stable tree] net: sched: do not requeue a NULL skb Sasha Levin
2016-07-12  3:00 ` [added to the 3.18 stable tree] atl2: Disable unimplemented scatter/gather feature Sasha Levin
2016-07-12  3:00 ` [added to the 3.18 stable tree] net/mlx4_en: fix spurious timestamping callbacks Sasha Levin
2016-07-12  3:00 ` [added to the 3.18 stable tree] bpf: fix double-fdput in replace_map_fd_with_map_ptr() Sasha Levin
2016-07-12  3:00 ` [added to the 3.18 stable tree] net_sched: introduce qdisc_replace() helper Sasha Levin
2016-07-12  3:00 ` [added to the 3.18 stable tree] net_sched: update hierarchical backlog too Sasha Levin
2016-07-12  3:00 ` [added to the 3.18 stable tree] sch_htb: update backlog as well Sasha Levin
2016-07-12  3:00 ` [added to the 3.18 stable tree] sch_dsmark: " Sasha Levin
2016-07-12  3:00 ` [added to the 3.18 stable tree] netem: Segment GSO packets on enqueue Sasha Levin
2016-07-12  3:00 ` [added to the 3.18 stable tree] net: fec: only clear a queue's work bit if the queue was emptied Sasha Levin
2016-07-12  3:00 ` [added to the 3.18 stable tree] net: fix infoleak in llc Sasha Levin
2016-07-12  3:00 ` [added to the 3.18 stable tree] net: fix infoleak in rtnetlink Sasha Levin
2016-07-12  3:00 ` [added to the 3.18 stable tree] VSOCK: do not disconnect socket when peer has shutdown SEND only Sasha Levin
2016-07-12  3:00 ` [added to the 3.18 stable tree] net: bridge: fix old ioctl unlocked net device walk Sasha Levin
2016-07-12  3:00 ` [added to the 3.18 stable tree] net: fix a kernel infoleak in x25 module Sasha Levin
2016-07-12  3:00 ` [added to the 3.18 stable tree] tcp: refresh skb timestamp at retransmit time Sasha Levin
2016-07-12  3:00 ` [added to the 3.18 stable tree] drm/radeon: fix PLL sharing on DCE6.1 (v2) Sasha Levin
2016-07-12  3:00 ` [added to the 3.18 stable tree] Btrfs: don't use src fd for printk Sasha Levin
2016-07-12  3:00 ` [added to the 3.18 stable tree] tty: vt, return error when con_startup fails Sasha Levin
2016-07-12  3:00 ` [added to the 3.18 stable tree] serial: samsung: Reorder the sequence of clock control when call s3c24xx_serial_set_termios() Sasha Levin
2016-07-12  3:00 ` [added to the 3.18 stable tree] MIPS: Reserve nosave data for hibernation Sasha Levin
2016-07-12  3:00 ` [added to the 3.18 stable tree] pipe: limit the per-user amount of pages allocated in pipes Sasha Levin
2016-07-12  3:00 ` [added to the 3.18 stable tree] xfs: print name of verifier if it fails Sasha Levin
2016-07-12  3:00 ` [added to the 3.18 stable tree] netlink: Fix dump skb leak/double free Sasha Levin
2016-07-12  3:00 ` [added to the 3.18 stable tree] tuntap: correctly wake up process during uninit Sasha Levin
2016-07-12  3:00 ` [added to the 3.18 stable tree] sfc: on MC reset, clear PIO buffer linkage in TXQs Sasha Levin
2016-07-12  3:00 ` [added to the 3.18 stable tree] tcp: record TLP and ER timer stats in v6 stats Sasha Levin
2016-07-12  3:00 ` [added to the 3.18 stable tree] sparc: Fix system call tracing register handling Sasha Levin
2016-07-12  3:00 ` [added to the 3.18 stable tree] sparc64: Fix bootup regressions on some Kconfig combinations Sasha Levin
2016-07-12  3:00 ` [added to the 3.18 stable tree] sparc64: Fix numa node distance initialization Sasha Levin
2016-07-30 18:05   ` Nitin Gupta
2016-07-12  3:00 ` [added to the 3.18 stable tree] sparc64: Fix sparc64_set_context stack handling Sasha Levin
2016-07-12  3:00 ` [added to the 3.18 stable tree] sparc/PCI: Fix for panic while enabling SR-IOV Sasha Levin
2016-07-12  3:00 ` [added to the 3.18 stable tree] sparc64: Take ctx_alloc_lock properly in hugetlb_setup() Sasha Levin
2016-07-12  3:00 ` [added to the 3.18 stable tree] sparc: Harden signal return frame checks Sasha Levin
2016-07-12  3:00 ` [added to the 3.18 stable tree] sparc64: Fix return from trap window fill crashes Sasha Levin
2016-07-12  3:01 ` [added to the 3.18 stable tree] MIPS: Fix 64k page support for 32 bit kernels Sasha Levin
2016-07-12  3:01 ` [added to the 3.18 stable tree] netfilter: x_tables: validate e->target_offset early Sasha Levin
2016-07-12  3:01 ` [added to the 3.18 stable tree] netfilter: x_tables: make sure e->next_offset covers remaining blob size Sasha Levin
2016-07-12  3:01 ` [added to the 3.18 stable tree] netfilter: x_tables: fix unconditional helper Sasha Levin
2016-07-12  3:01 ` [added to the 3.18 stable tree] netfilter: x_tables: don't move to non-existent next rule Sasha Levin
2016-07-12  3:01 ` [added to the 3.18 stable tree] netfilter: x_tables: validate targets of jumps Sasha Levin
2016-07-12  8:58   ` Florian Westphal
2016-07-12 13:02     ` Sasha Levin
2016-07-12  3:01 ` [added to the 3.18 stable tree] netfilter: x_tables: add and use xt_check_entry_offsets Sasha Levin
2016-07-12  3:01 ` [added to the 3.18 stable tree] netfilter: x_tables: kill check_entry helper Sasha Levin
2016-07-12  3:01 ` [added to the 3.18 stable tree] netfilter: x_tables: assert minimum target size Sasha Levin
2016-07-12  3:01 ` [added to the 3.18 stable tree] netfilter: x_tables: add compat version of xt_check_entry_offsets Sasha Levin
2016-07-12  3:01 ` [added to the 3.18 stable tree] netfilter: x_tables: check standard target size too Sasha Levin
2016-07-12  3:01 ` [added to the 3.18 stable tree] netfilter: x_tables: check for bogus target offset Sasha Levin
2016-07-12  3:01 ` [added to the 3.18 stable tree] netfilter: x_tables: validate all offsets and sizes in a rule Sasha Levin
2016-07-12  3:01 ` [added to the 3.18 stable tree] netfilter: x_tables: don't reject valid target size on some architectures Sasha Levin
2016-07-12  3:01 ` [added to the 3.18 stable tree] netfilter: arp_tables: simplify translate_compat_table args Sasha Levin
2016-07-12  3:01 ` [added to the 3.18 stable tree] netfilter: ip_tables: " Sasha Levin
2016-07-12  3:01 ` [added to the 3.18 stable tree] netfilter: ip6_tables: " Sasha Levin
2016-07-12  3:01 ` [added to the 3.18 stable tree] netfilter: x_tables: xt_compat_match_from_user doesn't need a retval Sasha Levin
2016-07-12  3:01 ` [added to the 3.18 stable tree] netfilter: x_tables: do compat validation via translate_table Sasha Levin
2016-07-12  3:01 ` [added to the 3.18 stable tree] netfilter: x_tables: introduce and use xt_copy_counters_from_user 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).