linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
To: linux-kernel@vger.kernel.org
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
	stable@vger.kernel.org, Niklas Cassel <niklas.cassel@linaro.org>,
	Viresh Kumar <viresh.kumar@linaro.org>
Subject: [PATCH 4.18 191/350] OPP: Free OPP table properly on performance state irregularities
Date: Sun, 11 Nov 2018 14:20:55 -0800	[thread overview]
Message-ID: <20181111221716.015225573@linuxfoundation.org> (raw)
In-Reply-To: <20181111221707.043394111@linuxfoundation.org>

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

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

From: Viresh Kumar <viresh.kumar@linaro.org>

commit 2fbb8670b4ff4454f1c0de510f788d737edc4b90 upstream.

The OPP table was freed, but not the individual OPPs which is done from
_dev_pm_opp_remove_table(). Fix it by calling _dev_pm_opp_remove_table()
as well.

Cc: 4.18 <stable@vger.kernel.org> # v4.18
Fixes: 3ba98324e81a ("PM / OPP: Get performance state using genpd helper")
Tested-by: Niklas Cassel <niklas.cassel@linaro.org>
Signed-off-by: Viresh Kumar <viresh.kumar@linaro.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>

---
 drivers/opp/of.c |    1 +
 1 file changed, 1 insertion(+)

--- a/drivers/opp/of.c
+++ b/drivers/opp/of.c
@@ -425,6 +425,7 @@ static int _of_add_opp_table_v2(struct d
 		dev_err(dev, "Not all nodes have performance state set (%d: %d)\n",
 			count, pstate_count);
 		ret = -ENOENT;
+		_dev_pm_opp_remove_table(opp_table, dev, false);
 		goto put_opp_table;
 	}
 



  parent reply	other threads:[~2018-11-11 22:30 UTC|newest]

Thread overview: 354+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-11-11 22:17 [PATCH 4.18 000/350] 4.18.19-stable review Greg Kroah-Hartman
2018-11-11 22:17 ` [PATCH 4.18 001/350] mtd: rawnand: marvell: fix the IRQ handler complete() condition Greg Kroah-Hartman
2018-11-11 22:17 ` [PATCH 4.18 002/350] mtd: spi-nor: fsl-quadspi: fix read error for flash size larger than 16MB Greg Kroah-Hartman
2018-11-11 22:17 ` [PATCH 4.18 003/350] mtd: spi-nor: intel-spi: Add support for Intel Ice Lake SPI serial flash Greg Kroah-Hartman
2018-11-11 22:17 ` [PATCH 4.18 004/350] mtd: spi-nor: fsl-quadspi: Dont let -EINVAL on the bus Greg Kroah-Hartman
2018-11-11 22:17 ` [PATCH 4.18 005/350] spi: spi-mem: Adjust op len based on message/transfer size limitations Greg Kroah-Hartman
2018-11-11 22:17 ` [PATCH 4.18 006/350] spi: bcm-qspi: switch back to reading flash using smaller chunks Greg Kroah-Hartman
2018-11-11 22:17 ` [PATCH 4.18 007/350] spi: bcm-qspi: fix calculation of address length Greg Kroah-Hartman
2018-11-11 22:17 ` [PATCH 4.18 008/350] bcache: trace missed reading by cache_missed Greg Kroah-Hartman
2018-11-11 22:17 ` [PATCH 4.18 009/350] bcache: correct dirty data statistics Greg Kroah-Hartman
2018-11-11 22:17 ` [PATCH 4.18 010/350] bcache: fix miss key refill->end in writeback Greg Kroah-Hartman
2018-11-11 22:17 ` [PATCH 4.18 011/350] hwmon: (pmbus) Fix page count auto-detection Greg Kroah-Hartman
2018-11-11 22:17 ` [PATCH 4.18 012/350] jffs2: free jffs2_sb_info through jffs2_kill_sb() Greg Kroah-Hartman
2018-11-11 22:17 ` [PATCH 4.18 013/350] block: setup bounce bio_sets properly Greg Kroah-Hartman
2018-11-11 22:17 ` [PATCH 4.18 014/350] block: dont deal with discard limit in blkdev_issue_discard() Greg Kroah-Hartman
2018-11-11 22:17 ` [PATCH 4.18 015/350] block: make sure discard bio is aligned with logical block size Greg Kroah-Hartman
2018-11-11 22:18 ` [PATCH 4.18 016/350] block: make sure writesame " Greg Kroah-Hartman
2018-11-11 22:18 ` [PATCH 4.18 017/350] cpufreq: conservative: Take limits changes into account properly Greg Kroah-Hartman
2018-11-11 22:18 ` [PATCH 4.18 018/350] dma-mapping: fix panic caused by passing empty cma command line argument Greg Kroah-Hartman
2018-11-11 22:18 ` [PATCH 4.18 019/350] pcmcia: Implement CLKRUN protocol disabling for Ricoh bridges Greg Kroah-Hartman
2018-11-11 22:18 ` [PATCH 4.18 020/350] ACPI / OSL: Use jiffies as the time bassis for acpi_os_get_timer() Greg Kroah-Hartman
2018-11-11 22:18 ` [PATCH 4.18 021/350] ACPICA: AML interpreter: add region addresses in global list during initialization Greg Kroah-Hartman
2018-11-11 22:18 ` [PATCH 4.18 022/350] ACPICA: AML Parser: fix parse loop to correctly skip erroneous extended opcodes Greg Kroah-Hartman
2018-11-11 22:18 ` [PATCH 4.18 023/350] kprobes/x86: Use preempt_enable() in optimized_callback() Greg Kroah-Hartman
2018-11-11 22:18 ` [PATCH 4.18 024/350] ipmi: Fix timer race with module unload Greg Kroah-Hartman
2018-11-11 22:18 ` [PATCH 4.18 025/350] mailbox: PCC: handle parse error Greg Kroah-Hartman
2018-11-11 22:18 ` [PATCH 4.18 026/350] acpi, nfit: Fix Address Range Scrub completion tracking Greg Kroah-Hartman
2018-11-11 22:18 ` [PATCH 4.18 027/350] parisc: Fix address in HPMC IVA Greg Kroah-Hartman
2018-11-11 22:18 ` [PATCH 4.18 028/350] parisc: Fix map_pages() to not overwrite existing pte entries Greg Kroah-Hartman
2018-11-11 22:18 ` [PATCH 4.18 029/350] parisc: Fix exported address of os_hpmc handler Greg Kroah-Hartman
2018-11-11 22:18 ` [PATCH 4.18 030/350] ALSA: hda - Add quirk for ASUS G751 laptop Greg Kroah-Hartman
2018-11-11 22:18 ` [PATCH 4.18 031/350] ALSA: hda - Fix headphone pin config for ASUS G751 Greg Kroah-Hartman
2018-11-11 22:18 ` [PATCH 4.18 032/350] ALSA: hda/realtek - Fix the problem of the front MIC on the Lenovo M715 Greg Kroah-Hartman
2018-11-11 22:18 ` [PATCH 4.18 033/350] ALSA: hda - Add mic quirk for the Lenovo G50-30 (17aa:3905) Greg Kroah-Hartman
2018-11-11 22:18 ` [PATCH 4.18 034/350] ALSA: hda: Add 2 more models to the power_save blacklist Greg Kroah-Hartman
2018-11-11 22:18 ` [PATCH 4.18 035/350] ALSA: ca0106: Disable IZD on SB0570 DAC to fix audio pops Greg Kroah-Hartman
2018-11-11 22:18 ` [PATCH 4.18 036/350] x86/speculation: Enable cross-hyperthread spectre v2 STIBP mitigation Greg Kroah-Hartman
2018-11-11 22:18 ` [PATCH 4.18 037/350] x86/xen: Fix boot loader version reported for PVH guests Greg Kroah-Hartman
2018-11-11 22:18 ` [PATCH 4.18 038/350] x86/corruption-check: Fix panic in memory_corruption_check() when boot option without value is provided Greg Kroah-Hartman
2018-11-11 22:18 ` [PATCH 4.18 039/350] x86/mm/pat: Disable preemption around __flush_tlb_all() Greg Kroah-Hartman
2018-11-11 22:18 ` [PATCH 4.18 040/350] x86/speculation: Support Enhanced IBRS on future CPUs Greg Kroah-Hartman
2018-11-11 22:18 ` [PATCH 4.18 041/350] ARM: dts: exynos: Disable pull control for MAX8997 interrupts on Origen Greg Kroah-Hartman
2018-11-11 22:18 ` [PATCH 4.18 042/350] drm: fix use of freed memory in drm_mode_setcrtc Greg Kroah-Hartman
2018-11-11 22:18 ` [PATCH 4.18 043/350] bpf: do not blindly change rlimit in reuseport net selftest Greg Kroah-Hartman
2018-11-11 22:18 ` [PATCH 4.18 044/350] nvme: remove ns sibling before clearing path Greg Kroah-Hartman
2018-11-11 22:18 ` [PATCH 4.18 045/350] Revert "perf tools: Fix PMU term format max value calculation" Greg Kroah-Hartman
2018-11-11 22:18 ` [PATCH 4.18 046/350] selftests: usbip: add wait after attach and before checking port status Greg Kroah-Hartman
2018-11-11 22:18 ` [PATCH 4.18 047/350] xsk: do not call synchronize_net() under RCU read lock Greg Kroah-Hartman
2018-11-11 22:18 ` [PATCH 4.18 048/350] xfrm: policy: use hlist rcu variants on insert Greg Kroah-Hartman
2018-11-11 22:18 ` [PATCH 4.18 049/350] perf vendor events intel: Fix wrong filter_band* values for uncore events Greg Kroah-Hartman
2018-11-11 22:18 ` [PATCH 4.18 050/350] r8169: Enable MSI-X on RTL8106e Greg Kroah-Hartman
2018-11-11 22:18 ` [PATCH 4.18 051/350] nfp: flower: fix pedit set actions for multiple partial masks Greg Kroah-Hartman
2018-11-11 22:18 ` [PATCH 4.18 052/350] nfp: flower: use offsets provided by pedit instead of index for ipv6 Greg Kroah-Hartman
2018-11-11 22:18 ` [PATCH 4.18 053/350] sched/fair: Fix the min_vruntime update logic in dequeue_entity() Greg Kroah-Hartman
2018-11-11 22:18 ` [PATCH 4.18 054/350] perf evsel: Store ids for events with their own cpus perf_event__synthesize_event_update_cpus Greg Kroah-Hartman
2018-11-11 22:18 ` [PATCH 4.18 055/350] perf tools: Fix use of alternatives to find JDIR Greg Kroah-Hartman
2018-11-11 22:18 ` [PATCH 4.18 056/350] perf cpu_map: Align cpu map synthesized events properly Greg Kroah-Hartman
2018-11-11 22:18 ` [PATCH 4.18 057/350] perf report: Dont crash on invalid inline debug information Greg Kroah-Hartman
2018-11-11 22:18 ` [PATCH 4.18 058/350] x86/fpu: Remove second definition of fpu in __fpu__restore_sig() Greg Kroah-Hartman
2018-11-11 22:18 ` [PATCH 4.18 059/350] net: qla3xxx: Remove overflowing shift statement Greg Kroah-Hartman
2018-11-11 22:18 ` [PATCH 4.18 060/350] r8169: re-enable MSI-X on RTL8168g Greg Kroah-Hartman
2018-11-11 22:18 ` [PATCH 4.18 061/350] drm: Get ref on CRTC commit object when waiting for flip_done Greg Kroah-Hartman
2018-11-11 22:18 ` [PATCH 4.18 062/350] selftests: ftrace: Add synthetic event syntax testcase Greg Kroah-Hartman
2018-11-11 22:18 ` [PATCH 4.18 063/350] i2c: rcar: cleanup DMA for all kinds of failure Greg Kroah-Hartman
2018-11-11 22:18 ` [PATCH 4.18 064/350] net: socionext: Reset tx queue in ndo_stop Greg Kroah-Hartman
2018-11-11 22:18 ` [PATCH 4.18 065/350] locking/lockdep: Fix debug_locks off performance problem Greg Kroah-Hartman
2018-11-11 22:18 ` [PATCH 4.18 066/350] netfilter: xt_nat: fix DNAT target for shifted portmap ranges Greg Kroah-Hartman
2018-11-11 22:18 ` [PATCH 4.18 067/350] ataflop: fix error handling during setup Greg Kroah-Hartman
2018-11-11 22:18 ` [PATCH 4.18 068/350] swim: fix cleanup on setup error Greg Kroah-Hartman
2018-11-11 22:18 ` [PATCH 4.18 069/350] arm64: cpufeature: ctr: Fix cpu capability check for late CPUs Greg Kroah-Hartman
2018-11-11 22:18 ` [PATCH 4.18 070/350] nfp: devlink port split support for 1x100G CXP NIC Greg Kroah-Hartman
2018-11-11 22:18 ` [PATCH 4.18 071/350] tun: Consistently configure generic netdev params via rtnetlink Greg Kroah-Hartman
2018-11-11 22:18 ` [PATCH 4.18 072/350] s390/sthyi: Fix machine name validity indication Greg Kroah-Hartman
2018-11-11 22:18 ` [PATCH 4.18 073/350] hwmon: (pwm-fan) Set fan speed to 0 on suspend Greg Kroah-Hartman
2018-11-11 22:18 ` [PATCH 4.18 074/350] lightnvm: pblk: fix race on sysfs line state Greg Kroah-Hartman
2018-11-11 22:18 ` [PATCH 4.18 075/350] lightnvm: pblk: fix two sleep-in-atomic-context bugs Greg Kroah-Hartman
2018-11-11 22:19 ` [PATCH 4.18 076/350] lightnvm: pblk: fix race condition on metadata I/O Greg Kroah-Hartman
2018-11-11 22:19 ` [PATCH 4.18 077/350] spi: spi-ep93xx: Use dma_data_direction for ep93xx_spi_dma_{finish,prepare} Greg Kroah-Hartman
2018-11-11 22:19 ` [PATCH 4.18 078/350] perf tools: Free temporary sys string in read_event_files() Greg Kroah-Hartman
2018-11-11 22:19 ` [PATCH 4.18 079/350] perf tools: Cleanup trace-event-info tdata leak Greg Kroah-Hartman
2018-11-11 22:19 ` [PATCH 4.18 080/350] perf strbuf: Match va_{add,copy} with va_end Greg Kroah-Hartman
2018-11-11 22:19 ` [PATCH 4.18 081/350] cpupower: Fix coredump on VMWare Greg Kroah-Hartman
2018-11-11 22:19 ` [PATCH 4.18 082/350] bcache: Populate writeback_rate_minimum attribute Greg Kroah-Hartman
2018-11-11 22:19 ` [PATCH 4.18 083/350] mmc: sdhci-pci-o2micro: Add quirk for O2 Micro dev 0x8620 rev 0x01 Greg Kroah-Hartman
2018-11-11 22:19 ` [PATCH 4.18 084/350] sdhci: acpi: add free_slot callback Greg Kroah-Hartman
2018-11-11 22:19 ` [PATCH 4.18 085/350] mtd: rawnand: denali: set SPARE_AREA_SKIP_BYTES register to 8 if unset Greg Kroah-Hartman
2018-11-11 22:19 ` [PATCH 4.18 086/350] iwlwifi: pcie: avoid empty free RB queue Greg Kroah-Hartman
2018-11-11 22:19 ` [PATCH 4.18 087/350] iwlwifi: mvm: clear HW_RESTART_REQUESTED when stopping the interface Greg Kroah-Hartman
2018-11-11 22:19 ` [PATCH 4.18 088/350] iwlwifi: mvm: check for n_profiles validity in EWRD ACPI Greg Kroah-Hartman
2018-11-11 22:19 ` [PATCH 4.18 089/350] x86/olpc: Indicate that legacy PC XO-1 platform should not register RTC Greg Kroah-Hartman
2018-11-11 22:19 ` [PATCH 4.18 090/350] nvmet-rdma: use a private workqueue for delete Greg Kroah-Hartman
2018-11-11 22:19 ` [PATCH 4.18 091/350] ACPI/PPTT: Handle architecturally unknown cache types Greg Kroah-Hartman
2018-11-11 22:19 ` [PATCH 4.18 092/350] ACPI / PM: LPIT: Register sysfs attributes based on FADT Greg Kroah-Hartman
2018-11-11 22:19 ` [PATCH 4.18 093/350] ACPI / processor: Fix the return value of acpi_processor_ids_walk() Greg Kroah-Hartman
2018-11-11 22:19 ` [PATCH 4.18 094/350] cpufreq: dt: Try freeing static OPPs only if we have added them Greg Kroah-Hartman
2018-11-11 22:19 ` [PATCH 4.18 095/350] x86/intel_rdt: Show missing resctrl mount options Greg Kroah-Hartman
2018-11-11 22:19 ` [PATCH 4.18 096/350] mtd: rawnand: atmel: Fix potential NULL pointer dereference Greg Kroah-Hartman
2018-11-11 22:19 ` [PATCH 4.18 097/350] signal: Introduce COMPAT_SIGMINSTKSZ for use in compat_sys_sigaltstack Greg Kroah-Hartman
2018-11-11 22:19 ` [PATCH 4.18 098/350] ice: fix changing of ring descriptor size (ethtool -G) Greg Kroah-Hartman
2018-11-11 22:19 ` [PATCH 4.18 099/350] ice: update fw version check logic Greg Kroah-Hartman
2018-11-11 22:19 ` [PATCH 4.18 100/350] net: hns3: Fix for packet buffer setting bug Greg Kroah-Hartman
2018-11-11 22:19 ` [PATCH 4.18 101/350] Bluetooth: btbcm: Add entry for BCM4335C0 UART bluetooth Greg Kroah-Hartman
2018-11-11 22:19 ` [PATCH 4.18 102/350] x86: boot: Fix EFI stub alignment Greg Kroah-Hartman
2018-11-11 22:19 ` [PATCH 4.18 103/350] net: hns3: Add nic state check before calling netif_tx_wake_queue Greg Kroah-Hartman
2018-11-11 22:19 ` [PATCH 4.18 104/350] net: hns3: Fix ets validate issue Greg Kroah-Hartman
2018-11-11 22:19 ` [PATCH 4.18 105/350] pinctrl: sunxi: fix pctrl->functions allocation in sunxi_pinctrl_build_state Greg Kroah-Hartman
2018-11-11 22:19 ` [PATCH 4.18 106/350] pinctrl: qcom: spmi-mpp: Fix err handling of pmic_mpp_set_mux Greg Kroah-Hartman
2018-11-11 22:19 ` [PATCH 4.18 107/350] brcmfmac: fix for proper support of 160MHz bandwidth Greg Kroah-Hartman
2018-11-11 22:19 ` [PATCH 4.18 108/350] net: hns3: Check hdev state when getting link status Greg Kroah-Hartman
2018-11-11 22:19 ` [PATCH 4.18 109/350] net: hns3: Set STATE_DOWN bit of hdev state when stopping net Greg Kroah-Hartman
2018-11-11 22:19 ` [PATCH 4.18 110/350] net: phy: phylink: ensure the carrier is off when starting phylink Greg Kroah-Hartman
2018-11-11 22:19 ` [PATCH 4.18 111/350] block, bfq: correctly charge and reset entity service in all cases Greg Kroah-Hartman
2018-11-11 22:19 ` [PATCH 4.18 112/350] arm64: entry: Allow handling of undefined instructions from EL1 Greg Kroah-Hartman
2018-11-11 22:19 ` [PATCH 4.18 113/350] kprobes: Return error if we fail to reuse kprobe instead of BUG_ON() Greg Kroah-Hartman
2018-11-11 22:19 ` [PATCH 4.18 114/350] spi: gpio: No MISO does not imply no RX Greg Kroah-Hartman
2018-11-11 22:19 ` [PATCH 4.18 115/350] ACPI / LPSS: Add alternative ACPI HIDs for Cherry Trail DMA controllers Greg Kroah-Hartman
2018-11-11 22:19 ` [PATCH 4.18 116/350] pinctrl: qcom: spmi-mpp: Fix drive strength setting Greg Kroah-Hartman
2018-11-11 22:19 ` [PATCH 4.18 117/350] bpf/verifier: fix verifier instability Greg Kroah-Hartman
2018-11-11 22:19 ` [PATCH 4.18 118/350] failover: Add missing check to validate slave_dev in net_failover_slave_unregister Greg Kroah-Hartman
2018-11-11 22:19 ` [PATCH 4.18 119/350] perf tests: Fix record+probe_libc_inet_pton.sh without pings debuginfo Greg Kroah-Hartman
2018-11-11 22:19 ` [PATCH 4.18 120/350] pinctrl: spmi-mpp: Fix pmic_mpp_config_get() to be compliant Greg Kroah-Hartman
2018-11-11 22:19 ` [PATCH 4.18 121/350] pinctrl: ssbi-gpio: Fix pm8xxx_pin_config_get() " Greg Kroah-Hartman
2018-11-11 22:19 ` [PATCH 4.18 122/350] net: hns3: Preserve vlan 0 in hardware table Greg Kroah-Hartman
2018-11-11 22:19 ` [PATCH 4.18 123/350] net: hns3: Fix ping exited problem when doing lp selftest Greg Kroah-Hartman
2018-11-11 22:19 ` [PATCH 4.18 124/350] net: hns3: Fix for vf vlan delete failed problem Greg Kroah-Hartman
2018-11-11 22:19 ` [PATCH 4.18 125/350] net: dsa: mv88e6xxx: Fix writing to a PHY page Greg Kroah-Hartman
2018-11-11 22:19 ` [PATCH 4.18 126/350] rsi: fix memory alignment issue in ARM32 platforms Greg Kroah-Hartman
2018-11-11 22:19 ` [PATCH 4.18 127/350] iwlwifi: mvm: fix BAR seq ctrl reporting Greg Kroah-Hartman
2018-11-11 22:19 ` [PATCH 4.18 128/350] gpio: brcmstb: allow 0 width GPIO banks Greg Kroah-Hartman
2018-11-11 22:19 ` [PATCH 4.18 129/350] ixgbe: disallow IPsec Tx offload when in SR-IOV mode Greg Kroah-Hartman
2018-11-11 22:19 ` [PATCH 4.18 130/350] ixgbevf: VF2VF TCP RSS Greg Kroah-Hartman
2018-11-11 22:19 ` [PATCH 4.18 131/350] ath10k: schedule hardware restart if WMI command times out Greg Kroah-Hartman
2018-11-11 22:19 ` [PATCH 4.18 132/350] libata: Apply NOLPM quirk for SAMSUNG MZ7TD256HAFV-000L9 Greg Kroah-Hartman
2018-11-11 22:19 ` [PATCH 4.18 133/350] thermal: rcar_thermal: Prevent doing work after unbind Greg Kroah-Hartman
2018-11-11 22:19 ` [PATCH 4.18 134/350] thermal: da9062/61: Prevent hardware access during system suspend Greg Kroah-Hartman
2018-11-11 22:19 ` [PATCH 4.18 135/350] cgroup, netclassid: add a preemption point to write_classid Greg Kroah-Hartman
2018-11-11 22:20 ` [PATCH 4.18 136/350] net: stmmac: dwmac-sun8i: fix OF child-node lookup Greg Kroah-Hartman
2018-11-11 22:20 ` [PATCH 4.18 137/350] f2fs: fix to account IO correctly for cgroup writeback Greg Kroah-Hartman
2018-11-11 22:20 ` [PATCH 4.18 138/350] MD: Memory leak when flush bio size is zero Greg Kroah-Hartman
2018-11-11 22:20 ` [PATCH 4.18 139/350] md: fix memleak for mempool Greg Kroah-Hartman
2018-11-11 22:20 ` [PATCH 4.18 140/350] scsi: esp_scsi: Track residual for PIO transfers Greg Kroah-Hartman
2018-11-11 22:20 ` [PATCH 4.18 141/350] scsi: ufs: Schedule clk gating work on correct queue Greg Kroah-Hartman
2018-11-11 22:20 ` [PATCH 4.18 142/350] UAPI: ndctl: Fix g++-unsupported initialisation in headers Greg Kroah-Hartman
2018-11-11 22:20 ` [PATCH 4.18 143/350] KVM: nVMX: Clear reserved bits of #DB exit qualification Greg Kroah-Hartman
2018-11-11 22:20 ` [PATCH 4.18 144/350] scsi: megaraid_sas: fix a missing-check bug Greg Kroah-Hartman
2018-11-11 22:20 ` [PATCH 4.18 145/350] RDMA/core: Do not expose unsupported counters Greg Kroah-Hartman
2018-11-11 22:20 ` [PATCH 4.18 146/350] IB/ipoib: Clear IPCB before icmp_send Greg Kroah-Hartman
2018-11-11 22:20 ` [PATCH 4.18 147/350] RDMA/bnxt_re: Avoid accessing nq->bar_reg_iomem in failure case Greg Kroah-Hartman
2018-11-11 22:20 ` [PATCH 4.18 148/350] RDMA/bnxt_re: Fix recursive lock warning in debug kernel Greg Kroah-Hartman
2018-11-11 22:20 ` [PATCH 4.18 149/350] usb: host: ohci-at91: fix request of irq for optional gpio Greg Kroah-Hartman
2018-11-11 22:20 ` [PATCH 4.18 150/350] PCI: mediatek: Fix mtk_pcie_find_port() endpoint/port matching logic Greg Kroah-Hartman
2018-11-11 22:20 ` [PATCH 4.18 151/350] PCI: cadence: Use AXI region 0 to signal interrupts from EP Greg Kroah-Hartman
2018-11-11 22:20 ` [PATCH 4.18 152/350] usb: typec: tcpm: Report back negotiated PPS voltage and current Greg Kroah-Hartman
2018-11-11 22:20 ` [PATCH 4.18 153/350] tpm: suppress transmit cmd error logs when TPM 1.2 is disabled/deactivated Greg Kroah-Hartman
2018-11-11 22:20 ` [PATCH 4.18 154/350] f2fs: clear PageError on the read path Greg Kroah-Hartman
2018-11-11 22:20 ` [PATCH 4.18 155/350] Drivers: hv: vmbus: Use cpumask_var_t for on-stack cpu mask Greg Kroah-Hartman
2018-11-11 22:20 ` [PATCH 4.18 156/350] VMCI: Resource wildcard match fixed Greg Kroah-Hartman
2018-11-11 22:20 ` [PATCH 4.18 157/350] PCI / ACPI: Enable wake automatically for power managed bridges Greg Kroah-Hartman
2018-11-11 22:20 ` [PATCH 4.18 158/350] xprtrdma: Reset credit grant properly after a disconnect Greg Kroah-Hartman
2018-11-11 22:20 ` [PATCH 4.18 159/350] irqchip/pdc: Setup all edge interrupts as rising edge at GIC Greg Kroah-Hartman
2018-11-11 22:20 ` [PATCH 4.18 160/350] usb: dwc2: fix a race with external vbus supply Greg Kroah-Hartman
2018-11-11 22:20 ` [PATCH 4.18 161/350] usb: gadget: udc: atmel: handle at91sam9rl PMC Greg Kroah-Hartman
2018-11-11 22:20 ` [PATCH 4.18 162/350] ext4: fix argument checking in EXT4_IOC_MOVE_EXT Greg Kroah-Hartman
2018-11-11 22:20 ` [PATCH 4.18 163/350] MD: fix invalid stored role for a disk Greg Kroah-Hartman
2018-11-11 22:20 ` [PATCH 4.18 164/350] nvmem: check the return value of nvmem_add_cells() Greg Kroah-Hartman
2018-11-11 22:20 ` [PATCH 4.18 165/350] xhci: Avoid USB autosuspend when resuming USB2 ports Greg Kroah-Hartman
2018-11-11 22:20 ` [PATCH 4.18 166/350] f2fs: fix to recover inodes crtime during POR Greg Kroah-Hartman
2018-11-11 22:20 ` [PATCH 4.18 167/350] f2fs: fix to recover inodes i_flags " Greg Kroah-Hartman
2018-11-11 22:20 ` [PATCH 4.18 168/350] PCI/MSI: Warn and return error if driver enables MSI/MSI-X twice Greg Kroah-Hartman
2018-11-11 22:20 ` [PATCH 4.18 169/350] coresight: etb10: Fix handling of perf mode Greg Kroah-Hartman
2018-11-11 22:20 ` [PATCH 4.18 170/350] PCI: dwc: pci-dra7xx: Enable errata i870 for both EP and RC mode Greg Kroah-Hartman
2018-11-11 22:20 ` [PATCH 4.18 171/350] crypto: caam - fix implicit casts in endianness helpers Greg Kroah-Hartman
2018-11-11 22:20 ` [PATCH 4.18 172/350] usb: chipidea: Prevent unbalanced IRQ disable Greg Kroah-Hartman
2018-11-11 22:20 ` [PATCH 4.18 173/350] Smack: ptrace capability use fixes Greg Kroah-Hartman
2018-11-11 22:20 ` [PATCH 4.18 174/350] driver/dma/ioat: Call del_timer_sync() without holding prep_lock Greg Kroah-Hartman
2018-11-11 22:20 ` [PATCH 4.18 175/350] firmware: coreboot: Unmap ioregion after device population Greg Kroah-Hartman
2018-11-11 22:20 ` [PATCH 4.18 176/350] IB/mlx5: Allow transition of DCI QP to reset Greg Kroah-Hartman
2018-11-11 22:20 ` [PATCH 4.18 177/350] uio: ensure class is registered before devices Greg Kroah-Hartman
2018-11-11 22:20 ` [PATCH 4.18 178/350] scsi: lpfc: Correct soft lockup when running mds diagnostics Greg Kroah-Hartman
2018-11-11 22:20 ` [PATCH 4.18 179/350] scsi: lpfc: Correct race with abort on completion path Greg Kroah-Hartman
2018-11-11 22:20 ` [PATCH 4.18 180/350] f2fs: avoid sleeping under spin_lock Greg Kroah-Hartman
2018-11-11 22:20 ` [PATCH 4.18 181/350] f2fs: report error if quota off error during umount Greg Kroah-Hartman
2018-11-11 22:20 ` [PATCH 4.18 182/350] signal: Always deliver the kernels SIGKILL and SIGSTOP to a pid namespace init Greg Kroah-Hartman
2018-11-11 22:20 ` [PATCH 4.18 183/350] mfd: menelaus: Fix possible race condition and leak Greg Kroah-Hartman
2018-11-11 22:20 ` [PATCH 4.18 184/350] dmaengine: dma-jz4780: Return error if not probed from DT Greg Kroah-Hartman
2018-11-11 22:20 ` [PATCH 4.18 185/350] IB/rxe: fix for duplicate request processing and ack psns Greg Kroah-Hartman
2018-11-11 22:20 ` [PATCH 4.18 186/350] ALSA: hda: Check the non-cached stream buffers more explicitly Greg Kroah-Hartman
2018-11-11 22:20 ` [PATCH 4.18 187/350] cpupower: Fix AMD Family 0x17 msr_pstate size Greg Kroah-Hartman
2018-11-11 22:20 ` [PATCH 4.18 188/350] Revert "f2fs: fix to clear PG_checked flag in set_page_dirty()" Greg Kroah-Hartman
2018-11-11 22:20 ` [PATCH 4.18 189/350] f2fs: fix to recover cold bit of inode block during POR Greg Kroah-Hartman
2018-11-11 22:20 ` [PATCH 4.18 190/350] f2fs: fix to account IO correctly Greg Kroah-Hartman
2018-11-11 22:20 ` Greg Kroah-Hartman [this message]
2018-11-11 22:20 ` [PATCH 4.18 192/350] arm: dts: exynos: Add missing cooling device properties for CPUs Greg Kroah-Hartman
2018-11-11 22:20 ` [PATCH 4.18 193/350] ARM: dts: exynos: Convert exynos5250.dtsi to opp-v2 bindings Greg Kroah-Hartman
2018-11-11 22:20 ` [PATCH 4.18 194/350] ARM: dts: exynos: Mark 1 GHz CPU OPP as suspend OPP on Exynos5250 Greg Kroah-Hartman
2018-11-11 22:20 ` [PATCH 4.18 195/350] xen-swiotlb: use actually allocated size on check physical continuous Greg Kroah-Hartman
2018-11-11 22:21 ` [PATCH 4.18 196/350] tpm: Restore functionality to xen vtpm driver Greg Kroah-Hartman
2018-11-11 22:21 ` [PATCH 4.18 197/350] xen/blkfront: avoid NULL blkfront_info dereference on device removal Greg Kroah-Hartman
2018-11-11 22:21 ` [PATCH 4.18 198/350] xen/balloon: Support xend-based toolstack Greg Kroah-Hartman
2018-11-11 22:21 ` [PATCH 4.18 199/350] xen: fix race in xen_qlock_wait() Greg Kroah-Hartman
2018-11-11 22:21 ` [PATCH 4.18 200/350] xen: make xen_qlock_wait() nestable Greg Kroah-Hartman
2018-11-11 22:21 ` [PATCH 4.18 201/350] xen/pvh: increase early stack size Greg Kroah-Hartman
2018-11-11 22:21 ` [PATCH 4.18 202/350] xen/pvh: dont try to unplug emulated devices Greg Kroah-Hartman
2018-11-11 22:21 ` [PATCH 4.18 203/350] libertas: dont set URB_ZERO_PACKET on IN USB transfer Greg Kroah-Hartman
2018-11-11 22:21 ` [PATCH 4.18 204/350] usbip:vudc: BUG kmalloc-2048 (Not tainted): Poison overwritten Greg Kroah-Hartman
2018-11-11 22:21 ` [PATCH 4.18 205/350] usb: typec: tcpm: Fix APDO PPS order checking to be based on voltage Greg Kroah-Hartman
2018-11-11 22:21 ` [PATCH 4.18 206/350] usb: gadget: udc: renesas_usb3: Fix b-device mode for "workaround" Greg Kroah-Hartman
2018-11-11 22:21 ` [PATCH 4.18 207/350] mt76: mt76x2: fix multi-interface beacon configuration Greg Kroah-Hartman
2018-11-11 22:21 ` [PATCH 4.18 208/350] iwlwifi: mvm: check return value of rs_rate_from_ucode_rate() Greg Kroah-Hartman
2018-11-11 22:21 ` [PATCH 4.18 209/350] net/ipv4: defensive cipso option parsing Greg Kroah-Hartman
2018-11-11 22:21 ` [PATCH 4.18 210/350] dmaengine: ppc4xx: fix off-by-one build failure Greg Kroah-Hartman
2018-11-11 22:21 ` [PATCH 4.18 211/350] libnvdimm: Hold reference on parent while scheduling async init Greg Kroah-Hartman
2018-11-11 22:21 ` [PATCH 4.18 212/350] libnvdimm, region: Fail badblocks listing for inactive regions Greg Kroah-Hartman
2018-11-11 22:21 ` [PATCH 4.18 213/350] libnvdimm, pmem: Fix badblocks population for raw namespaces Greg Kroah-Hartman
2018-11-11 22:21 ` [PATCH 4.18 214/350] ASoC: intel: skylake: Add missing break in skl_tplg_get_token() Greg Kroah-Hartman
2018-11-11 22:21 ` [PATCH 4.18 215/350] ASoC: sta32x: set ->component pointer in private struct Greg Kroah-Hartman
2018-11-11 22:21 ` [PATCH 4.18 216/350] IB/mlx5: Fix MR cache initialization Greg Kroah-Hartman
2018-11-11 22:21 ` [PATCH 4.18 217/350] IB/rxe: Revise the ib_wr_opcode enum Greg Kroah-Hartman
2018-11-11 22:21 ` [PATCH 4.18 218/350] jbd2: fix use after free in jbd2_log_do_checkpoint() Greg Kroah-Hartman
2018-11-11 22:21 ` [PATCH 4.18 219/350] gfs2_meta: ->mount() can get NULL dev_name Greg Kroah-Hartman
2018-11-11 22:21 ` [PATCH 4.18 220/350] ext4: fix EXT4_IOC_SWAP_BOOT Greg Kroah-Hartman
2018-11-11 22:21 ` [PATCH 4.18 221/350] ext4: initialize retries variable in ext4_da_write_inline_data_begin() Greg Kroah-Hartman
2018-11-11 22:21 ` [PATCH 4.18 222/350] ext4: fix setattr project check in fssetxattr ioctl Greg Kroah-Hartman
2018-11-11 22:21 ` [PATCH 4.18 223/350] ext4: propagate error from dquot_initialize() in EXT4_IOC_FSSETXATTR Greg Kroah-Hartman
2018-11-11 22:21 ` [PATCH 4.18 224/350] ext4: fix use-after-free race in ext4_remount()s error path Greg Kroah-Hartman
2018-11-11 22:21 ` [PATCH 4.18 225/350] selinux: fix mounting of cgroup2 under older policies Greg Kroah-Hartman
2018-11-11 22:21 ` [PATCH 4.18 226/350] HID: wacom: Work around HID descriptor bug in DTK-2451 and DTH-2452 Greg Kroah-Hartman
2018-11-11 22:21 ` [PATCH 4.18 227/350] HID: hiddev: fix potential Spectre v1 Greg Kroah-Hartman
2018-11-11 22:21 ` [PATCH 4.18 228/350] EDAC, amd64: Add Family 17h, models 10h-2fh support Greg Kroah-Hartman
2018-11-11 22:21 ` [PATCH 4.18 229/350] EDAC, {i7core,sb,skx}_edac: Fix uncorrected error counting Greg Kroah-Hartman
2018-11-11 22:21 ` [PATCH 4.18 230/350] EDAC, skx_edac: Fix logical channel intermediate decoding Greg Kroah-Hartman
2018-11-11 22:21 ` [PATCH 4.18 231/350] ARM: dts: dra7: Fix up unaligned access setting for PCIe EP Greg Kroah-Hartman
2018-11-11 22:21 ` [PATCH 4.18 232/350] PCI/ASPM: Fix link_state teardown on device removal Greg Kroah-Hartman
2018-11-11 22:21 ` [PATCH 4.18 233/350] PCI: Add Device IDs for Intel GPU "spurious interrupt" quirk Greg Kroah-Hartman
2018-11-11 22:21 ` [PATCH 4.18 234/350] PCI: vmd: White list for fast interrupt handlers Greg Kroah-Hartman
2018-11-11 22:21 ` [PATCH 4.18 235/350] signal/GenWQE: Fix sending of SIGKILL Greg Kroah-Hartman
2018-11-11 22:21 ` [PATCH 4.18 236/350] signal: Guard against negative signal numbers in copy_siginfo_from_user32 Greg Kroah-Hartman
2018-11-11 22:21 ` [PATCH 4.18 237/350] crypto: lrw - Fix out-of bounds access on counter overflow Greg Kroah-Hartman
2018-11-11 22:21 ` [PATCH 4.18 238/350] crypto: tcrypt - fix ghash-generic speed test Greg Kroah-Hartman
2018-11-11 22:21 ` [PATCH 4.18 239/350] crypto: aesni - dont use GFP_ATOMIC allocation if the request doesnt cross a page in gcm Greg Kroah-Hartman
2018-11-11 22:21 ` [PATCH 4.18 240/350] crypto: morus/generic - fix for big endian systems Greg Kroah-Hartman
2018-11-11 22:21 ` [PATCH 4.18 241/350] crypto: aegis/generic " Greg Kroah-Hartman
2018-11-11 22:21 ` [PATCH 4.18 242/350] crypto: speck - remove Speck Greg Kroah-Hartman
2018-11-11 22:21 ` [PATCH 4.18 243/350] mm: /proc/pid/smaps_rollup: fix NULL pointer deref in smaps_pte_range() Greg Kroah-Hartman
2018-11-11 22:21 ` [PATCH 4.18 244/350] ima: fix showing large violations or runtime_measurements_count Greg Kroah-Hartman
2018-11-11 22:21 ` [PATCH 4.18 245/350] hugetlbfs: dirty pages as they are added to pagecache Greg Kroah-Hartman
2018-11-11 22:21 ` [PATCH 4.18 246/350] mm/rmap: map_pte() was not handling private ZONE_DEVICE page properly Greg Kroah-Hartman
2018-11-11 22:21 ` [PATCH 4.18 247/350] mm/hmm: fix race between hmm_mirror_unregister() and mmu_notifier callback Greg Kroah-Hartman
2018-11-11 22:21 ` [PATCH 4.18 248/350] KVM: arm/arm64: Ensure only THP is candidate for adjustment Greg Kroah-Hartman
2018-11-11 22:21 ` [PATCH 4.18 249/350] KVM: arm64: Fix caching of host MDCR_EL2 value Greg Kroah-Hartman
2018-11-11 22:21 ` [PATCH 4.18 250/350] kbuild: fix kernel/bounds.c W=1 warning Greg Kroah-Hartman
2018-11-11 22:21 ` [PATCH 4.18 251/350] iio: ad5064: Fix regulator handling Greg Kroah-Hartman
2018-11-11 22:21 ` [PATCH 4.18 252/350] iio: adc: imx25-gcq: Fix leak of device_node in mx25_gcq_setup_cfgs() Greg Kroah-Hartman
2018-11-11 22:21 ` [PATCH 4.18 253/350] iio: adc: at91: fix acking DRDY irq on simple conversions Greg Kroah-Hartman
2018-11-11 22:21 ` [PATCH 4.18 254/350] iio: adc: at91: fix wrong channel number in triggered buffer mode Greg Kroah-Hartman
2018-11-11 22:21 ` [PATCH 4.18 255/350] w1: omap-hdq: fix missing bus unregister at removal Greg Kroah-Hartman
2018-11-11 22:22 ` [PATCH 4.18 256/350] smb3: allow stats which track session and share reconnects to be reset Greg Kroah-Hartman
2018-11-11 22:22 ` [PATCH 4.18 257/350] smb3: do not attempt cifs operation in smb3 query info error path Greg Kroah-Hartman
2018-11-11 22:22 ` [PATCH 4.18 258/350] smb3: on kerberos mount if server doesnt specify auth type use krb5 Greg Kroah-Hartman
2018-11-11 22:22 ` [PATCH 4.18 259/350] printk: Fix panic caused by passing log_buf_len to command line Greg Kroah-Hartman
2018-11-11 22:22 ` [PATCH 4.18 260/350] genirq: Fix race on spurious interrupt detection Greg Kroah-Hartman
2018-11-11 22:22 ` [PATCH 4.18 261/350] NFC: nfcmrvl_uart: fix OF child-node lookup Greg Kroah-Hartman
2018-11-11 22:22 ` [PATCH 4.18 262/350] NFSv4.1: Fix the r/wsize checking Greg Kroah-Hartman
2018-11-11 22:22 ` [PATCH 4.18 263/350] nfs: Fix a missed page unlock after pg_doio() Greg Kroah-Hartman
2018-11-11 22:22 ` [PATCH 4.18 264/350] nfsd: correctly decrement odstate refcount in error path Greg Kroah-Hartman
2018-11-11 22:22 ` [PATCH 4.18 265/350] nfsd: Fix an Oops in free_session() Greg Kroah-Hartman
2018-11-11 22:22 ` [PATCH 4.18 266/350] lockd: fix access beyond unterminated strings in prints Greg Kroah-Hartman
2018-11-11 22:22 ` [PATCH 4.18 267/350] dm ioctl: harden copy_params()s copy_from_user() from malicious users Greg Kroah-Hartman
2018-11-11 22:22 ` [PATCH 4.18 268/350] dm zoned: fix metadata block ref counting Greg Kroah-Hartman
2018-11-11 22:22 ` [PATCH 4.18 269/350] dm zoned: fix various dmz_get_mblock() issues Greg Kroah-Hartman
2018-11-11 22:22 ` [PATCH 4.18 270/350] media: ov7670: make "xclk" clock optional Greg Kroah-Hartman
2018-11-11 22:22 ` [PATCH 4.18 271/350] fsnotify: Fix busy inodes during unmount Greg Kroah-Hartman
2018-11-11 22:22 ` [PATCH 4.18 272/350] powerpc/msi: Fix compile error on mpc83xx Greg Kroah-Hartman
2018-11-11 22:22 ` [PATCH 4.18 273/350] powerpc/tm: Fix HFSCR bit for no suspend case Greg Kroah-Hartman
2018-11-11 22:22 ` [PATCH 4.18 274/350] powerpc/64s/hash: Do not use PPC_INVALIDATE_ERAT on CPUs before POWER9 Greg Kroah-Hartman
2018-11-11 22:22 ` [PATCH 4.18 275/350] MIPS: memset: Fix CPU_DADDI_WORKAROUNDS `small_fixup regression Greg Kroah-Hartman
2018-11-11 22:22 ` [PATCH 4.18 276/350] MIPS: OCTEON: fix out of bounds array access on CN68XX Greg Kroah-Hartman
2018-11-11 22:22 ` [PATCH 4.18 277/350] rtc: ds1307: fix ds1339 wakealarm support Greg Kroah-Hartman
2018-11-11 22:22 ` [PATCH 4.18 278/350] rtc: cmos: Fix non-ACPI undefined reference to `hpet_rtc_interrupt Greg Kroah-Hartman
2018-11-11 22:22 ` [PATCH 4.18 279/350] rtc: cmos: Remove the `use_acpi_alarm module parameter for !ACPI Greg Kroah-Hartman
2018-11-11 22:22 ` [PATCH 4.18 280/350] power: supply: twl4030-charger: fix OF sibling-node lookup Greg Kroah-Hartman
2018-11-11 22:22 ` [PATCH 4.18 281/350] ocxl: Fix access to the AFU Descriptor Data Greg Kroah-Hartman
2018-11-11 22:22 ` [PATCH 4.18 282/350] iommu/arm-smmu: Ensure that page-table updates are visible before TLBI Greg Kroah-Hartman
2018-11-11 22:22 ` [PATCH 4.18 283/350] TC: Set DMA masks for devices Greg Kroah-Hartman
2018-11-11 22:22 ` [PATCH 4.18 284/350] net: bcmgenet: fix OF child-node lookup Greg Kroah-Hartman
2018-11-11 22:22 ` [PATCH 4.18 285/350] media: v4l2-tpg: fix kernel oops when enabling HFLIP and OSD Greg Kroah-Hartman
2018-11-11 22:22 ` [PATCH 4.18 286/350] Revert "media: dvbsky: use just one mutex for serializing device R/W ops" Greg Kroah-Hartman
2018-11-11 22:22 ` [PATCH 4.18 287/350] kgdboc: Passing ekgdboc to command line causes panic Greg Kroah-Hartman
2018-11-11 22:22 ` [PATCH 4.18 288/350] media: cec: make cec_get_edid_spa_location() an inline function Greg Kroah-Hartman
2018-11-11 22:22 ` [PATCH 4.18 289/350] media: cec: integrate cec_validate_phys_addr() in cec-api.c Greg Kroah-Hartman
2018-11-11 22:22 ` [PATCH 4.18 290/350] xen: fix xen_qlock_wait() Greg Kroah-Hartman
2018-11-11 22:22 ` [PATCH 4.18 291/350] xen: remove size limit of privcmd-buf mapping interface Greg Kroah-Hartman
2018-11-11 22:22 ` [PATCH 4.18 292/350] xen-blkfront: fix kernel panic with negotiate_mq error path Greg Kroah-Hartman
2018-11-11 22:22 ` [PATCH 4.18 293/350] media: cec: add new tx/rx status bits to detect aborts/timeouts Greg Kroah-Hartman
2018-11-11 22:22 ` [PATCH 4.18 294/350] media: cec: fix the Signal Free Time calculation Greg Kroah-Hartman
2018-11-11 22:22 ` [PATCH 4.18 295/350] media: cec: forgot to cancel delayed work Greg Kroah-Hartman
2018-11-11 22:22 ` [PATCH 4.18 296/350] media: em28xx: use a default format if TRY_FMT fails Greg Kroah-Hartman
2018-11-11 22:22 ` [PATCH 4.18 297/350] media: tvp5150: avoid going past array on v4l2_querymenu() Greg Kroah-Hartman
2018-11-11 22:22 ` [PATCH 4.18 298/350] media: em28xx: fix input name for Terratec AV 350 Greg Kroah-Hartman
2018-11-11 22:22 ` [PATCH 4.18 299/350] media: em28xx: make v4l2-compliance happier by starting sequence on zero Greg Kroah-Hartman
2018-11-11 22:22 ` [PATCH 4.18 300/350] media: em28xx: fix handler for vidioc_s_input() Greg Kroah-Hartman
2018-11-11 22:22 ` [PATCH 4.18 301/350] media: adv7604: when the EDID is cleared, unconfigure CEC as well Greg Kroah-Hartman
2018-11-11 22:22 ` [PATCH 4.18 302/350] media: adv7842: " Greg Kroah-Hartman
2018-11-11 22:22 ` [PATCH 4.18 303/350] drm/mediatek: fix OF sibling-node lookup Greg Kroah-Hartman
2018-11-11 22:22 ` [PATCH 4.18 304/350] media: media colorspaces*.rst: rename AdobeRGB to opRGB Greg Kroah-Hartman
2018-11-11 22:22 ` [PATCH 4.18 305/350] media: replace ADOBERGB by OPRGB Greg Kroah-Hartman
2018-11-11 22:22 ` [PATCH 4.18 306/350] media: hdmi.h: rename ADOBE_RGB to OPRGB and ADOBE_YCC to OPYCC Greg Kroah-Hartman
2018-11-11 22:22 ` [PATCH 4.18 307/350] arm64: lse: remove -fcall-used-x0 flag Greg Kroah-Hartman
2018-11-11 22:22 ` [PATCH 4.18 308/350] rpmsg: smd: fix memory leak on channel create Greg Kroah-Hartman
2018-11-11 22:22 ` [PATCH 4.18 309/350] Cramfs: fix abad comparison when wrap-arounds occur Greg Kroah-Hartman
2018-11-11 22:22 ` [PATCH 4.18 310/350] ARM: dts: socfpga: Fix SDRAM node address for Arria10 Greg Kroah-Hartman
2018-11-11 22:22 ` [PATCH 4.18 311/350] arm64: dts: stratix10: Correct System Manager register size Greg Kroah-Hartman
2018-11-11 22:22 ` [PATCH 4.18 312/350] soc: qcom: rmtfs-mem: Validate that scm is available Greg Kroah-Hartman
2018-11-11 22:22 ` [PATCH 4.18 313/350] soc/tegra: pmc: Fix child-node lookup Greg Kroah-Hartman
2018-11-11 22:22 ` [PATCH 4.18 314/350] selftests/ftrace: Fix synthetic event test to delete event correctly Greg Kroah-Hartman
2018-11-11 22:22 ` [PATCH 4.18 315/350] selftests/powerpc: Fix ptrace tm failure Greg Kroah-Hartman
2018-11-11 22:23 ` [PATCH 4.18 316/350] tracing: Return -ENOENT if there is no target synthetic event Greg Kroah-Hartman
2018-11-11 22:23 ` [PATCH 4.18 317/350] btrfs: qgroup: Avoid calling qgroup functions if qgroup is not enabled Greg Kroah-Hartman
2018-11-11 22:23 ` [PATCH 4.18 318/350] btrfs: Handle owner mismatch gracefully when walking up tree Greg Kroah-Hartman
2018-11-11 22:23 ` [PATCH 4.18 319/350] btrfs: locking: Add extra check in btrfs_init_new_buffer() to avoid deadlock Greg Kroah-Hartman
2018-11-11 22:23 ` [PATCH 4.18 320/350] btrfs: fix error handling in free_log_tree Greg Kroah-Hartman
2018-11-11 22:23 ` [PATCH 4.18 321/350] btrfs: fix error handling in btrfs_dev_replace_start Greg Kroah-Hartman
2018-11-11 22:23 ` [PATCH 4.18 322/350] btrfs: Enhance btrfs_trim_fs function to handle error better Greg Kroah-Hartman
2018-11-11 22:23 ` [PATCH 4.18 323/350] btrfs: Ensure btrfs_trim_fs can trim the whole filesystem Greg Kroah-Hartman
2018-11-11 22:23 ` [PATCH 4.18 324/350] btrfs: iterate all devices during trim, instead of fs_devices::alloc_list Greg Kroah-Hartman
2018-11-11 22:23 ` [PATCH 4.18 325/350] btrfs: dont attempt to trim devices that dont support it Greg Kroah-Hartman
2018-11-11 22:23 ` [PATCH 4.18 326/350] btrfs: keep trim from interfering with transaction commits Greg Kroah-Hartman
2018-11-11 22:23 ` [PATCH 4.18 327/350] btrfs: wait on caching when putting the bg cache Greg Kroah-Hartman
2018-11-11 22:23 ` [PATCH 4.18 328/350] Btrfs: dont clean dirty pages during buffered writes Greg Kroah-Hartman
2018-11-11 22:23 ` [PATCH 4.18 329/350] btrfs: release metadata before running delayed refs Greg Kroah-Hartman
2018-11-11 22:23 ` [PATCH 4.18 330/350] btrfs: protect space cache inode alloc with GFP_NOFS Greg Kroah-Hartman
2018-11-11 22:23 ` [PATCH 4.18 331/350] btrfs: reset max_extent_size on clear in a bitmap Greg Kroah-Hartman
2018-11-11 22:23 ` [PATCH 4.18 332/350] btrfs: make sure we create all new block groups Greg Kroah-Hartman
2018-11-11 22:23 ` [PATCH 4.18 333/350] Btrfs: fix warning when replaying log after fsync of a tmpfile Greg Kroah-Hartman
2018-11-11 22:23 ` [PATCH 4.18 334/350] Btrfs: fix wrong dentries after fsync of file that got its parent replaced Greg Kroah-Hartman
2018-11-11 22:23 ` [PATCH 4.18 335/350] btrfs: qgroup: Dirty all qgroups before rescan Greg Kroah-Hartman
2018-11-11 22:23 ` [PATCH 4.18 336/350] Btrfs: fix null pointer dereference on compressed write path error Greg Kroah-Hartman
2018-11-11 22:23 ` [PATCH 4.18 337/350] Btrfs: fix assertion on fsync of regular file when using no-holes feature Greg Kroah-Hartman
2018-11-11 22:23 ` [PATCH 4.18 338/350] Btrfs: fix deadlock when writing out free space caches Greg Kroah-Hartman
2018-11-11 22:23 ` [PATCH 4.18 339/350] btrfs: reset max_extent_size properly Greg Kroah-Hartman
2018-11-11 22:23 ` [PATCH 4.18 340/350] btrfs: set " Greg Kroah-Hartman
2018-11-11 22:23 ` [PATCH 4.18 341/350] btrfs: dont use ctl->free_space for max_extent_size Greg Kroah-Hartman
2018-11-11 22:23 ` [PATCH 4.18 342/350] btrfs: only free reserved extent if we didnt insert it Greg Kroah-Hartman
2018-11-11 22:23 ` [PATCH 4.18 343/350] btrfs: fix insert_reserved error handling Greg Kroah-Hartman
2018-11-11 22:23 ` [PATCH 4.18 344/350] btrfs: dont run delayed_iputs in commit Greg Kroah-Hartman
2018-11-11 22:23 ` [PATCH 4.18 345/350] btrfs: move the dio_sem higher up the callchain Greg Kroah-Hartman
2018-11-11 22:23 ` [PATCH 4.18 346/350] Btrfs: fix use-after-free during inode eviction Greg Kroah-Hartman
2018-11-11 22:23 ` [PATCH 4.18 347/350] Btrfs: fix use-after-free when dumping free space Greg Kroah-Hartman
2018-11-11 22:23 ` [PATCH 4.18 348/350] net: sched: Remove TCA_OPTIONS from policy Greg Kroah-Hartman
2018-11-11 22:23 ` [PATCH 4.18 349/350] userns: also map extents in the reverse map to kernel IDs Greg Kroah-Hartman
2018-11-11 22:23 ` [PATCH 4.18 350/350] bpf: wait for running BPF programs when updating map-in-map Greg Kroah-Hartman
2018-11-12  4:10 ` [PATCH 4.18 000/350] 4.18.19-stable review kernelci.org bot
2018-11-12 14:02 ` Naresh Kamboju
2018-11-13  0:57 ` Guenter Roeck

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=20181111221716.015225573@linuxfoundation.org \
    --to=gregkh@linuxfoundation.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=niklas.cassel@linaro.org \
    --cc=stable@vger.kernel.org \
    --cc=viresh.kumar@linaro.org \
    /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).