linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Sasha Levin <sashal@kernel.org>
To: linux-kernel@vger.kernel.org, stable@vger.kernel.org
Cc: Christoph Hellwig <hch@lst.de>, Kees Cook <keescook@chromium.org>,
	Sami Tolvanen <samitolvanen@google.com>,
	Nick Desaulniers <ndesaulniers@google.com>,
	Andrew Morton <akpm@linux-foundation.org>,
	Linus Torvalds <torvalds@linux-foundation.org>,
	Sasha Levin <sashal@kernel.org>,
	v9fs-developer@lists.sourceforge.net
Subject: [PATCH AUTOSEL 5.1 127/141] 9p: pass the correct prototype to read_cache_page
Date: Fri, 19 Jul 2019 00:02:32 -0400	[thread overview]
Message-ID: <20190719040246.15945-127-sashal@kernel.org> (raw)
In-Reply-To: <20190719040246.15945-1-sashal@kernel.org>

From: Christoph Hellwig <hch@lst.de>

[ Upstream commit f053cbd4366051d7eb6ba1b8d529d20f719c2963 ]

Fix the callback 9p passes to read_cache_page to actually have the
proper type expected.  Casting around function pointers can easily
hide typing bugs, and defeats control flow protection.

Link: http://lkml.kernel.org/r/20190520055731.24538-5-hch@lst.de
Signed-off-by: Christoph Hellwig <hch@lst.de>
Reviewed-by: Kees Cook <keescook@chromium.org>
Cc: Sami Tolvanen <samitolvanen@google.com>
Cc: Nick Desaulniers <ndesaulniers@google.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
 fs/9p/vfs_addr.c | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/fs/9p/vfs_addr.c b/fs/9p/vfs_addr.c
index 0bcbcc20f769..02e0fc51401e 100644
--- a/fs/9p/vfs_addr.c
+++ b/fs/9p/vfs_addr.c
@@ -50,8 +50,9 @@
  * @page: structure to page
  *
  */
-static int v9fs_fid_readpage(struct p9_fid *fid, struct page *page)
+static int v9fs_fid_readpage(void *data, struct page *page)
 {
+	struct p9_fid *fid = data;
 	struct inode *inode = page->mapping->host;
 	struct bio_vec bvec = {.bv_page = page, .bv_len = PAGE_SIZE};
 	struct iov_iter to;
@@ -122,7 +123,8 @@ static int v9fs_vfs_readpages(struct file *filp, struct address_space *mapping,
 	if (ret == 0)
 		return ret;
 
-	ret = read_cache_pages(mapping, pages, (void *)v9fs_vfs_readpage, filp);
+	ret = read_cache_pages(mapping, pages, v9fs_fid_readpage,
+			filp->private_data);
 	p9_debug(P9_DEBUG_VFS, "  = %d\n", ret);
 	return ret;
 }
-- 
2.20.1


  parent reply	other threads:[~2019-07-19  4:27 UTC|newest]

Thread overview: 143+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-07-19  4:00 [PATCH AUTOSEL 5.1 001/141] drm/panel: simple: Fix panel_simple_dsi_probe Sasha Levin
2019-07-19  4:00 ` [PATCH AUTOSEL 5.1 002/141] iio: adc: stm32-dfsdm: manage the get_irq error case Sasha Levin
2019-07-19  4:00 ` [PATCH AUTOSEL 5.1 003/141] iio: adc: stm32-dfsdm: missing error case during probe Sasha Levin
2019-07-19  4:00 ` [PATCH AUTOSEL 5.1 004/141] drm/virtio: set seqno for dma-fence Sasha Levin
2019-07-19  4:00 ` [PATCH AUTOSEL 5.1 005/141] ipmi_si: fix unexpected driver unregister warning Sasha Levin
2019-07-19  4:00 ` [PATCH AUTOSEL 5.1 006/141] staging: vt6656: use meaningful error code during buffer allocation Sasha Levin
2019-07-19  4:00 ` [PATCH AUTOSEL 5.1 007/141] drm/bochs: Fix connector leak during driver unload Sasha Levin
2019-07-19  4:00 ` [PATCH AUTOSEL 5.1 008/141] usb: core: hub: Disable hub-initiated U1/U2 Sasha Levin
2019-07-19  4:00 ` [PATCH AUTOSEL 5.1 009/141] tty: max310x: Fix invalid baudrate divisors calculator Sasha Levin
2019-07-19  4:00 ` [PATCH AUTOSEL 5.1 010/141] pinctrl: rockchip: fix leaked of_node references Sasha Levin
2019-07-19  4:00 ` [PATCH AUTOSEL 5.1 011/141] tty: serial: cpm_uart - fix init when SMC is relocated Sasha Levin
2019-07-19  4:00 ` [PATCH AUTOSEL 5.1 012/141] consolemap: Fix a memory leaking bug in drivers/tty/vt/consolemap.c Sasha Levin
2019-07-19  4:00 ` [PATCH AUTOSEL 5.1 013/141] drm/msm/a6xx: Check for ERR or NULL before iounmap Sasha Levin
2019-07-19  4:00 ` [PATCH AUTOSEL 5.1 014/141] drm/amd/display: Fill prescale_params->scale for RGB565 Sasha Levin
2019-07-19  4:00 ` [PATCH AUTOSEL 5.1 015/141] drm/amdgpu: Reserve shared fence for eviction fence Sasha Levin
2019-07-19  4:00 ` [PATCH AUTOSEL 5.1 016/141] f2fs: fix to avoid deadloop if data_flush is on Sasha Levin
2019-07-19  4:00 ` [PATCH AUTOSEL 5.1 017/141] drm/amdgpu/sriov: Need to initialize the HDP_NONSURFACE_BAStE Sasha Levin
2019-07-19  4:00 ` [PATCH AUTOSEL 5.1 018/141] drm/amd/display: Disable ABM before destroy ABM struct Sasha Levin
2019-07-19  4:00 ` [PATCH AUTOSEL 5.1 019/141] drm/amdkfd: Fix a potential memory leak Sasha Levin
2019-07-19  4:00 ` [PATCH AUTOSEL 5.1 020/141] drm/amdkfd: Fix sdma queue map issue Sasha Levin
2019-07-19  4:00 ` [PATCH AUTOSEL 5.1 021/141] drm/edid: Fix a missing-check bug in drm_load_edid_firmware() Sasha Levin
2019-07-19  4:00 ` [PATCH AUTOSEL 5.1 022/141] tools: PCI: Fix broken pcitest compilation Sasha Levin
2019-07-19  4:00 ` [PATCH AUTOSEL 5.1 023/141] PCI: Return error if cannot probe VF Sasha Levin
2019-07-19  4:00 ` [PATCH AUTOSEL 5.1 024/141] drm/bridge: tc358767: read display_props in get_modes() Sasha Levin
2019-07-19  4:00 ` [PATCH AUTOSEL 5.1 025/141] drm/bridge: sii902x: pixel clock unit is 10kHz instead of 1kHz Sasha Levin
2019-07-19  4:00 ` [PATCH AUTOSEL 5.1 026/141] drm/amd/display: CS_TFM_1D only applied post EOTF Sasha Levin
2019-07-19  4:00 ` [PATCH AUTOSEL 5.1 027/141] drm/amd/display: Increase Backlight Gain Step Size Sasha Levin
2019-07-19  4:00 ` [PATCH AUTOSEL 5.1 028/141] f2fs: Fix accounting for unusable blocks Sasha Levin
2019-07-19  4:00 ` [PATCH AUTOSEL 5.1 029/141] f2fs: Lower threshold for disable_cp_again Sasha Levin
2019-07-19  4:00 ` [PATCH AUTOSEL 5.1 030/141] gpu: host1x: Increase maximum DMA segment size Sasha Levin
2019-07-19  4:00 ` [PATCH AUTOSEL 5.1 031/141] drm/crc-debugfs: User irqsafe spinlock in drm_crtc_add_crc_entry Sasha Levin
2019-07-19  4:00 ` [PATCH AUTOSEL 5.1 032/141] drm/crc-debugfs: Also sprinkle irqrestore over early exits Sasha Levin
2019-07-19  4:00 ` [PATCH AUTOSEL 5.1 033/141] drm/vkms: Forward timer right after drm_crtc_handle_vblank Sasha Levin
2019-07-19  4:00 ` [PATCH AUTOSEL 5.1 034/141] memstick: Fix error cleanup path of memstick_init Sasha Levin
2019-07-19  4:01 ` [PATCH AUTOSEL 5.1 035/141] tty/serial: digicolor: Fix digicolor-usart already registered warning Sasha Levin
2019-07-19  4:01 ` [PATCH AUTOSEL 5.1 036/141] tty: serial: msm_serial: avoid system lockup condition Sasha Levin
2019-07-19  4:01 ` [PATCH AUTOSEL 5.1 037/141] serial: 8250: Fix TX interrupt handling condition Sasha Levin
2019-07-19  4:01 ` [PATCH AUTOSEL 5.1 038/141] drm/amd/display: Always allocate initial connector state state Sasha Levin
2019-07-19  4:01 ` [PATCH AUTOSEL 5.1 039/141] drm/virtio: Add memory barriers for capset cache Sasha Levin
2019-07-19  4:01 ` [PATCH AUTOSEL 5.1 040/141] drm/amd/display: set link->dongle_max_pix_clk to 0 on a disconnect Sasha Levin
2019-07-19  4:01 ` [PATCH AUTOSEL 5.1 041/141] phy: renesas: rcar-gen2: Fix memory leak at error paths Sasha Levin
2019-07-19  4:01 ` [PATCH AUTOSEL 5.1 042/141] drm/amd/display: fix compilation error Sasha Levin
2019-07-19  4:01 ` [PATCH AUTOSEL 5.1 043/141] powerpc/pseries/mobility: prevent cpu hotplug during DT update Sasha Levin
2019-07-19  4:01 ` [PATCH AUTOSEL 5.1 044/141] dma-remap: Avoid de-referencing NULL atomic_pool Sasha Levin
2019-07-19  4:01 ` [PATCH AUTOSEL 5.1 045/141] drm/rockchip: Properly adjust to a true clock in adjusted_mode Sasha Levin
2019-07-19  4:01 ` [PATCH AUTOSEL 5.1 046/141] platform/x86: asus-wmi: Increase input buffer size of WMI methods Sasha Levin
2019-07-19  4:01 ` [PATCH AUTOSEL 5.1 047/141] iio:core: Fix bug in length of event info_mask and catch unhandled bits set in masks Sasha Levin
2019-07-19  4:01 ` [PATCH AUTOSEL 5.1 048/141] iio: adxl372: fix iio_triggered_buffer_{pre,post}enable positions Sasha Levin
2019-07-19  4:01 ` [PATCH AUTOSEL 5.1 049/141] serial: imx: fix locking in set_termios() Sasha Levin
2019-07-19  4:01 ` [PATCH AUTOSEL 5.1 050/141] serial: uartps: Use the same dynamic major number for all ports Sasha Levin
2019-07-19  4:01 ` [PATCH AUTOSEL 5.1 051/141] tty: serial_core: Set port active bit in uart_port_activate Sasha Levin
2019-07-19  4:01 ` [PATCH AUTOSEL 5.1 052/141] usb: gadget: Zero ffs_io_data Sasha Levin
2019-07-19  4:01 ` [PATCH AUTOSEL 5.1 053/141] kvm: vmx: fix limit checking in get_vmx_mem_address() Sasha Levin
2019-07-19  4:01 ` [PATCH AUTOSEL 5.1 054/141] usb: gadget: storage: Remove warning message Sasha Levin
2019-07-19  5:27   ` Thinh Nguyen
2019-07-28 15:37     ` Sasha Levin
2019-07-19  4:01 ` [PATCH AUTOSEL 5.1 055/141] mmc: sdhci: sdhci-pci-o2micro: Check if controller supports 8-bit width Sasha Levin
2019-07-19  4:01 ` [PATCH AUTOSEL 5.1 056/141] KVM: nVMX: Intercept VMWRITEs to GUEST_{CS,SS}_AR_BYTES Sasha Levin
2019-07-19  4:01 ` [PATCH AUTOSEL 5.1 057/141] kvm: vmx: segment limit check: use access length Sasha Levin
2019-07-19  4:01 ` [PATCH AUTOSEL 5.1 058/141] powerpc/pci/of: Fix OF flags parsing for 64bit BARs Sasha Levin
2019-07-19  4:01 ` [PATCH AUTOSEL 5.1 059/141] drm/msm: Depopulate platform on probe failure Sasha Levin
2019-07-19  4:01 ` [PATCH AUTOSEL 5.1 060/141] serial: mctrl_gpio: Check if GPIO property exisits before requesting it Sasha Levin
2019-07-19  4:01 ` [PATCH AUTOSEL 5.1 061/141] staging: ks7010: Fix build error Sasha Levin
2019-07-19  4:01 ` [PATCH AUTOSEL 5.1 062/141] PCI: sysfs: Ignore lockdep for remove attribute Sasha Levin
2019-07-19  4:01 ` [PATCH AUTOSEL 5.1 063/141] i2c: stm32f7: fix the get_irq error cases Sasha Levin
2019-07-19  4:01 ` [PATCH AUTOSEL 5.1 064/141] iio: st_accel: fix iio_triggered_buffer_{pre,post}enable positions Sasha Levin
2019-07-19  4:01 ` [PATCH AUTOSEL 5.1 065/141] kbuild: Add -Werror=unknown-warning-option to CLANG_FLAGS Sasha Levin
2019-07-19  4:01 ` [PATCH AUTOSEL 5.1 066/141] genksyms: Teach parser about 128-bit built-in types Sasha Levin
2019-07-19  4:01 ` [PATCH AUTOSEL 5.1 067/141] PCI: xilinx-nwl: Fix Multi MSI data programming Sasha Levin
2019-07-19  4:01 ` [PATCH AUTOSEL 5.1 068/141] iio: iio-utils: Fix possible incorrect mask calculation Sasha Levin
2019-07-19  4:01 ` [PATCH AUTOSEL 5.1 069/141] powerpc/cacheflush: fix variable set but not used Sasha Levin
2019-07-19  4:01 ` [PATCH AUTOSEL 5.1 070/141] powerpc/xmon: Fix disabling tracing while in xmon Sasha Levin
2019-07-19  4:01 ` [PATCH AUTOSEL 5.1 071/141] powerpc/rtas: retry when cpu offline races with suspend/migration Sasha Levin
2019-07-19  4:01 ` [PATCH AUTOSEL 5.1 072/141] fixdep: check return value of printf() and putchar() Sasha Levin
2019-07-19  4:01 ` [PATCH AUTOSEL 5.1 073/141] recordmcount: Fix spurious mcount entries on powerpc Sasha Levin
2019-07-19  4:01 ` [PATCH AUTOSEL 5.1 074/141] mfd: madera: Add missing of table registration Sasha Levin
2019-07-19  4:01 ` [PATCH AUTOSEL 5.1 075/141] mfd: core: Set fwnode for created devices Sasha Levin
2019-07-19  4:01 ` [PATCH AUTOSEL 5.1 076/141] mfd: arizona: Fix undefined behavior Sasha Levin
2019-07-19  4:01 ` [PATCH AUTOSEL 5.1 077/141] mfd: hi655x-pmic: Fix missing return value check for devm_regmap_init_mmio_clk Sasha Levin
2019-07-19  4:01 ` [PATCH AUTOSEL 5.1 078/141] mm/swap: fix release_pages() when releasing devmap pages Sasha Levin
2019-07-19  4:01 ` [PATCH AUTOSEL 5.1 079/141] um: Silence lockdep complaint about mmap_sem Sasha Levin
2019-07-19  4:01 ` [PATCH AUTOSEL 5.1 080/141] f2fs: fix is_idle() check for discard type Sasha Levin
2019-07-19  4:01 ` [PATCH AUTOSEL 5.1 081/141] powerpc/4xx/uic: clear pending interrupt after irq type/pol change Sasha Levin
2019-07-19  4:01 ` [PATCH AUTOSEL 5.1 082/141] RDMA/i40iw: Set queue pair state when being queried Sasha Levin
2019-07-19  4:01 ` [PATCH AUTOSEL 5.1 083/141] serial: sh-sci: Terminate TX DMA during buffer flushing Sasha Levin
2019-07-19  4:01 ` [PATCH AUTOSEL 5.1 084/141] serial: sh-sci: Fix TX DMA buffer flushing and workqueue races Sasha Levin
2019-07-19  4:01 ` [PATCH AUTOSEL 5.1 085/141] IB/mlx5: Fixed reporting counters on 2nd port for Dual port RoCE Sasha Levin
2019-07-19  4:01 ` [PATCH AUTOSEL 5.1 086/141] powerpc/mm: Handle page table allocation failures Sasha Levin
2019-07-19  4:01 ` [PATCH AUTOSEL 5.1 087/141] IB/ipoib: Add child to parent list only if device initialized Sasha Levin
2019-07-19  4:01 ` [PATCH AUTOSEL 5.1 088/141] arm64: assembler: Switch ESB-instruction with a vanilla nop if !ARM64_HAS_RAS Sasha Levin
2019-07-19  4:01 ` [PATCH AUTOSEL 5.1 089/141] PCI: tegra: Enable Relaxed Ordering only for Tegra20 & Tegra30 Sasha Levin
2019-07-19  4:01 ` [PATCH AUTOSEL 5.1 090/141] KVM: nVMX: Stash L1's CR3 in vmcs01.GUEST_CR3 on nested entry w/o EPT Sasha Levin
2019-07-19  4:01 ` [PATCH AUTOSEL 5.1 091/141] PCI: mobiveil: Fix PCI base address in MEM/IO outbound windows Sasha Levin
2019-07-19  4:01 ` [PATCH AUTOSEL 5.1 092/141] PCI: mobiveil: Fix the Class Code field Sasha Levin
2019-07-19  4:01 ` [PATCH AUTOSEL 5.1 093/141] kallsyms: exclude kasan local symbols on s390 Sasha Levin
2019-07-19  4:01 ` [PATCH AUTOSEL 5.1 094/141] PCI: mobiveil: Initialize Primary/Secondary/Subordinate bus numbers Sasha Levin
2019-07-19  4:02 ` [PATCH AUTOSEL 5.1 095/141] PCI: mobiveil: Use the 1st inbound window for MEM inbound transactions Sasha Levin
2019-07-19  4:02 ` [PATCH AUTOSEL 5.1 096/141] perf test mmap-thread-lookup: Initialize variable to suppress memory sanitizer warning Sasha Levin
2019-07-19  4:02 ` [PATCH AUTOSEL 5.1 097/141] perf stat: Fix use-after-freed pointer detected by the smatch tool Sasha Levin
2019-07-19  4:02 ` [PATCH AUTOSEL 5.1 098/141] perf top: Fix potential NULL pointer dereference " Sasha Levin
2019-07-19  4:02 ` [PATCH AUTOSEL 5.1 099/141] perf trace: Fix potential NULL pointer dereference found " Sasha Levin
2019-07-19  4:02 ` [PATCH AUTOSEL 5.1 100/141] perf session: " Sasha Levin
2019-07-19  4:02 ` [PATCH AUTOSEL 5.1 101/141] perf map: Fix potential NULL pointer dereference found by " Sasha Levin
2019-07-19  4:02 ` [PATCH AUTOSEL 5.1 102/141] perf annotate: Fix dereferencing freed memory found by the " Sasha Levin
2019-07-19  4:02 ` [PATCH AUTOSEL 5.1 103/141] perf hists browser: Fix potential NULL pointer dereference " Sasha Levin
2019-07-19  4:02 ` [PATCH AUTOSEL 5.1 104/141] RDMA/rxe: Fill in wc byte_len with IB_WC_RECV_RDMA_WITH_IMM Sasha Levin
2019-07-19  4:02 ` [PATCH AUTOSEL 5.1 105/141] PCI: dwc: pci-dra7xx: Fix compilation when !CONFIG_GPIOLIB Sasha Levin
2019-07-19  4:02 ` [PATCH AUTOSEL 5.1 106/141] perf intel-bts: Fix potential NULL pointer dereference found by the smatch tool Sasha Levin
2019-07-19  4:02 ` [PATCH AUTOSEL 5.1 107/141] RDMA/core: Fix race when resolving IP address Sasha Levin
2019-07-19  4:02 ` [PATCH AUTOSEL 5.1 108/141] nvme-pci: check for NULL return from pci_alloc_p2pmem() Sasha Levin
2019-07-19  4:02 ` [PATCH AUTOSEL 5.1 109/141] nvme-pci: limit max_hw_sectors based on the DMA max mapping size Sasha Levin
2019-07-19  4:02 ` [PATCH AUTOSEL 5.1 110/141] nvme-tcp: don't use sendpage for SLAB pages Sasha Levin
2019-07-19  4:02 ` [PATCH AUTOSEL 5.1 111/141] nvme-tcp: set the STABLE_WRITES flag when data digests are enabled Sasha Levin
2019-07-19  4:02 ` [PATCH AUTOSEL 5.1 112/141] powerpc/boot: add {get, put}_unaligned_be32 to xz_config.h Sasha Levin
2019-07-19  4:02 ` [PATCH AUTOSEL 5.1 113/141] block: init flush rq ref count to 1 Sasha Levin
2019-07-19  4:02 ` [PATCH AUTOSEL 5.1 114/141] rds: Accept peer connection reject messages due to incompatible version Sasha Levin
2019-07-19  4:02 ` [PATCH AUTOSEL 5.1 115/141] f2fs: fix to avoid long latency during umount Sasha Levin
2019-07-19  4:02 ` [PATCH AUTOSEL 5.1 116/141] f2fs: avoid out-of-range memory access Sasha Levin
2019-07-19  4:02 ` [PATCH AUTOSEL 5.1 117/141] mailbox: handle failed named mailbox channel request Sasha Levin
2019-07-19  4:02 ` [PATCH AUTOSEL 5.1 118/141] dlm: check if workqueues are NULL before flushing/destroying Sasha Levin
2019-07-19  4:02 ` [PATCH AUTOSEL 5.1 119/141] powerpc/eeh: Handle hugepages in ioremap space Sasha Levin
2019-07-19  4:02 ` [PATCH AUTOSEL 5.1 120/141] s390/dasd: Make layout analysis ESE compatible Sasha Levin
2019-07-19  4:02 ` [PATCH AUTOSEL 5.1 121/141] net/mlx5e: IPoIB, Add error path in mlx5_rdma_setup_rn Sasha Levin
2019-07-19  4:02 ` [PATCH AUTOSEL 5.1 122/141] platform/x86: Fix PCENGINES_APU2 Kconfig warning Sasha Levin
2019-07-19  4:02 ` [PATCH AUTOSEL 5.1 123/141] block/bio-integrity: fix a memory leak bug Sasha Levin
2019-07-19  4:02 ` [PATCH AUTOSEL 5.1 124/141] nvme: fix NULL deref for fabrics options Sasha Levin
2019-07-19  4:02 ` [PATCH AUTOSEL 5.1 125/141] sh: prevent warnings when using iounmap Sasha Levin
2019-07-19  4:02 ` [PATCH AUTOSEL 5.1 126/141] mm/kmemleak.c: fix check for softirq context Sasha Levin
2019-07-19  4:02 ` Sasha Levin [this message]
2019-07-19  4:02 ` [PATCH AUTOSEL 5.1 128/141] mm/mincore.c: fix race between swapoff and mincore Sasha Levin
2019-07-19  4:02 ` [PATCH AUTOSEL 5.1 129/141] mm/gup.c: mark undo_dev_pagemap as __maybe_unused Sasha Levin
2019-07-19  4:02 ` [PATCH AUTOSEL 5.1 130/141] mm/gup.c: remove some BUG_ONs from get_gate_page() Sasha Levin
2019-07-19  4:02 ` [PATCH AUTOSEL 5.1 131/141] memcg, fsnotify: no oom-kill for remote memcg charging Sasha Levin
2019-07-19  4:02 ` [PATCH AUTOSEL 5.1 132/141] mm/mmu_notifier: use hlist_add_head_rcu() Sasha Levin
2019-07-19  4:02 ` [PATCH AUTOSEL 5.1 133/141] proc: use down_read_killable mmap_sem for /proc/pid/smaps_rollup Sasha Levin
2019-07-19  4:02 ` [PATCH AUTOSEL 5.1 134/141] proc: use down_read_killable mmap_sem for /proc/pid/pagemap Sasha Levin
2019-07-19  4:02 ` [PATCH AUTOSEL 5.1 135/141] proc: use down_read_killable mmap_sem for /proc/pid/clear_refs Sasha Levin
2019-07-19  4:02 ` [PATCH AUTOSEL 5.1 136/141] proc: use down_read_killable mmap_sem for /proc/pid/map_files Sasha Levin
2019-07-19  4:02 ` [PATCH AUTOSEL 5.1 137/141] cxgb4: reduce kernel stack usage in cudbg_collect_mem_region() Sasha Levin
2019-07-19  4:02 ` [PATCH AUTOSEL 5.1 138/141] proc: use down_read_killable mmap_sem for /proc/pid/maps Sasha Levin
2019-07-19  4:02 ` [PATCH AUTOSEL 5.1 139/141] locking/lockdep: Fix lock used or unused stats error Sasha Levin
2019-07-19  4:02 ` [PATCH AUTOSEL 5.1 140/141] mm: use down_read_killable for locking mmap_sem in access_remote_vm Sasha Levin
2019-07-19  4:02 ` [PATCH AUTOSEL 5.1 141/141] mm, swap: fix race between swapoff and some swap operations Sasha Levin

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=20190719040246.15945-127-sashal@kernel.org \
    --to=sashal@kernel.org \
    --cc=akpm@linux-foundation.org \
    --cc=hch@lst.de \
    --cc=keescook@chromium.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=ndesaulniers@google.com \
    --cc=samitolvanen@google.com \
    --cc=stable@vger.kernel.org \
    --cc=torvalds@linux-foundation.org \
    --cc=v9fs-developer@lists.sourceforge.net \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).