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: Leo Yan <leo.yan@linaro.org>, Jiri Olsa <jolsa@kernel.org>,
	Adrian Hunter <adrian.hunter@intel.com>,
	Alexander Shishkin <alexander.shishkin@linux.intel.com>,
	Alexey Budankov <alexey.budankov@linux.intel.com>,
	Alexios Zavras <alexios.zavras@intel.com>,
	Andi Kleen <ak@linux.intel.com>,
	Changbin Du <changbin.du@intel.com>,
	"David S . Miller" <davem@davemloft.net>,
	Davidlohr Bueso <dave@stgolabs.net>,
	Eric Saint-Etienne <eric.saint.etienne@oracle.com>,
	Jin Yao <yao.jin@linux.intel.com>,
	Konstantin Khlebnikov <khlebnikov@yandex-team.ru>,
	Mathieu Poirier <mathieu.poirier@linaro.org>,
	Namhyung Kim <namhyung@kernel.org>,
	Peter Zijlstra <peterz@infradead.org>,
	Rasmus Villemoes <linux@rasmusvillemoes.dk>,
	Song Liu <songliubraving@fb.com>,
	Suzuki Poulouse <suzuki.poulose@arm.com>,
	Thomas Gleixner <tglx@linutronix.de>,
	Thomas Richter <tmricht@linux.ibm.com>,
	linux-arm-kernel@lists.infradead.org,
	Arnaldo Carvalho de Melo <acme@redhat.com>,
	Sasha Levin <sashal@kernel.org>
Subject: [PATCH AUTOSEL 5.1 102/141] perf annotate: Fix dereferencing freed memory found by the smatch tool
Date: Fri, 19 Jul 2019 00:02:07 -0400	[thread overview]
Message-ID: <20190719040246.15945-102-sashal@kernel.org> (raw)
In-Reply-To: <20190719040246.15945-1-sashal@kernel.org>

From: Leo Yan <leo.yan@linaro.org>

[ Upstream commit 600c787dbf6521d8d07ee717ab7606d5070103ea ]

Based on the following report from Smatch, fix the potential
dereferencing freed memory check.

  tools/perf/util/annotate.c:1125
  disasm_line__parse() error: dereferencing freed memory 'namep'

  tools/perf/util/annotate.c
  1100 static int disasm_line__parse(char *line, const char **namep, char **rawp)
  1101 {
  1102         char tmp, *name = ltrim(line);

  [...]

  1114         *namep = strdup(name);
  1115
  1116         if (*namep == NULL)
  1117                 goto out_free_name;

  [...]

  1124 out_free_name:
  1125         free((void *)namep);
                            ^^^^^
  1126         *namep = NULL;
               ^^^^^^
  1127         return -1;
  1128 }

If strdup() fails to allocate memory space for *namep, we don't need to
free memory with pointer 'namep', which is resident in data structure
disasm_line::ins::name; and *namep is NULL pointer for this failure, so
it's pointless to assign NULL to *namep again.

Committer note:

Freeing namep, which is the address of the first entry of the 'struct
ins' that is the first member of struct disasm_line would in fact free
that disasm_line instance, if it was allocated via malloc/calloc, which,
later, would a dereference of freed memory.

Signed-off-by: Leo Yan <leo.yan@linaro.org>
Acked-by: Jiri Olsa <jolsa@kernel.org>
Cc: Adrian Hunter <adrian.hunter@intel.com>
Cc: Alexander Shishkin <alexander.shishkin@linux.intel.com>
Cc: Alexey Budankov <alexey.budankov@linux.intel.com>
Cc: Alexios Zavras <alexios.zavras@intel.com>
Cc: Andi Kleen <ak@linux.intel.com>
Cc: Changbin Du <changbin.du@intel.com>
Cc: David S. Miller <davem@davemloft.net>
Cc: Davidlohr Bueso <dave@stgolabs.net>
Cc: Eric Saint-Etienne <eric.saint.etienne@oracle.com>
Cc: Jin Yao <yao.jin@linux.intel.com>
Cc: Konstantin Khlebnikov <khlebnikov@yandex-team.ru>
Cc: Mathieu Poirier <mathieu.poirier@linaro.org>
Cc: Namhyung Kim <namhyung@kernel.org>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Rasmus Villemoes <linux@rasmusvillemoes.dk>
Cc: Song Liu <songliubraving@fb.com>
Cc: Suzuki Poulouse <suzuki.poulose@arm.com>
Cc: Thomas Gleixner <tglx@linutronix.de>
Cc: Thomas Richter <tmricht@linux.ibm.com>
Cc: linux-arm-kernel@lists.infradead.org
Link: http://lkml.kernel.org/r/20190702103420.27540-5-leo.yan@linaro.org
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
 tools/perf/util/annotate.c | 6 ++----
 1 file changed, 2 insertions(+), 4 deletions(-)

diff --git a/tools/perf/util/annotate.c b/tools/perf/util/annotate.c
index 09762985c713..b56282041f41 100644
--- a/tools/perf/util/annotate.c
+++ b/tools/perf/util/annotate.c
@@ -1115,16 +1115,14 @@ static int disasm_line__parse(char *line, const char **namep, char **rawp)
 	*namep = strdup(name);
 
 	if (*namep == NULL)
-		goto out_free_name;
+		goto out;
 
 	(*rawp)[0] = tmp;
 	*rawp = ltrim(*rawp);
 
 	return 0;
 
-out_free_name:
-	free((void *)namep);
-	*namep = NULL;
+out:
 	return -1;
 }
 
-- 
2.20.1


  parent reply	other threads:[~2019-07-19  4:29 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 ` Sasha Levin [this message]
2019-07-19  4:02 ` [PATCH AUTOSEL 5.1 103/141] perf hists browser: Fix potential NULL pointer dereference found by the " 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 ` [PATCH AUTOSEL 5.1 127/141] 9p: pass the correct prototype to read_cache_page Sasha Levin
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-102-sashal@kernel.org \
    --to=sashal@kernel.org \
    --cc=acme@redhat.com \
    --cc=adrian.hunter@intel.com \
    --cc=ak@linux.intel.com \
    --cc=alexander.shishkin@linux.intel.com \
    --cc=alexey.budankov@linux.intel.com \
    --cc=alexios.zavras@intel.com \
    --cc=changbin.du@intel.com \
    --cc=dave@stgolabs.net \
    --cc=davem@davemloft.net \
    --cc=eric.saint.etienne@oracle.com \
    --cc=jolsa@kernel.org \
    --cc=khlebnikov@yandex-team.ru \
    --cc=leo.yan@linaro.org \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux@rasmusvillemoes.dk \
    --cc=mathieu.poirier@linaro.org \
    --cc=namhyung@kernel.org \
    --cc=peterz@infradead.org \
    --cc=songliubraving@fb.com \
    --cc=stable@vger.kernel.org \
    --cc=suzuki.poulose@arm.com \
    --cc=tglx@linutronix.de \
    --cc=tmricht@linux.ibm.com \
    --cc=yao.jin@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 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).