From: Sasha Levin <sashal@kernel.org>
To: stable@vger.kernel.org, linux-kernel@vger.kernel.org
Cc: Nathan Chancellor <natechancellor@gmail.com>,
Mark Brown <broonie@kernel.org>, Sasha Levin <sashal@kernel.org>
Subject: [PATCH AUTOSEL 4.18 015/126] spi: spi-ep93xx: Use dma_data_direction for ep93xx_spi_dma_{finish,prepare}
Date: Wed, 31 Oct 2018 19:06:03 -0400 [thread overview]
Message-ID: <20181031230754.29029-15-sashal@kernel.org> (raw)
In-Reply-To: <20181031230754.29029-1-sashal@kernel.org>
From: Nathan Chancellor <natechancellor@gmail.com>
[ Upstream commit a1108c7b2efb892350ba6a0e932dfd45622f4e2b ]
Clang warns when one enumerated type is implicitly converted to another.
drivers/spi/spi-ep93xx.c:342:62: warning: implicit conversion from
enumeration type 'enum dma_transfer_direction' to different enumeration
type 'enum dma_data_direction' [-Wenum-conversion]
nents = dma_map_sg(chan->device->dev, sgt->sgl, sgt->nents, dir);
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~
./include/linux/dma-mapping.h:428:58: note: expanded from macro
'dma_map_sg'
#define dma_map_sg(d, s, n, r) dma_map_sg_attrs(d, s, n, r, 0)
~~~~~~~~~~~~~~~~ ^
drivers/spi/spi-ep93xx.c:348:57: warning: implicit conversion from
enumeration type 'enum dma_transfer_direction' to different enumeration
type 'enum dma_data_direction' [-Wenum-conversion]
dma_unmap_sg(chan->device->dev, sgt->sgl, sgt->nents, dir);
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~
./include/linux/dma-mapping.h:429:62: note: expanded from macro
'dma_unmap_sg'
#define dma_unmap_sg(d, s, n, r) dma_unmap_sg_attrs(d, s, n, r, 0)
~~~~~~~~~~~~~~~~~~ ^
drivers/spi/spi-ep93xx.c:377:56: warning: implicit conversion from
enumeration type 'enum dma_transfer_direction' to different enumeration
type 'enum dma_data_direction' [-Wenum-conversion]
dma_unmap_sg(chan->device->dev, sgt->sgl, sgt->nents, dir);
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~
./include/linux/dma-mapping.h:429:62: note: expanded from macro
'dma_unmap_sg'
#define dma_unmap_sg(d, s, n, r) dma_unmap_sg_attrs(d, s, n, r, 0)
~~~~~~~~~~~~~~~~~~ ^
3 warnings generated.
dma_{,un}map_sg expect an enum of type dma_data_direction but this
driver uses dma_transfer_direction for everything. Convert the driver to
use dma_data_direction for these two functions.
There are two places that strictly require an enum of type
dma_transfer_direction: the direction member in struct dma_slave_config
and the direction parameter in dmaengine_prep_slave_sg. To avoid using
an explicit cast, add a simple function, ep93xx_dma_data_to_trans_dir,
to safely map between the two types because they are not 1 to 1 in
meaning.
Signed-off-by: Nathan Chancellor <natechancellor@gmail.com>
Reviewed-by: Nick Desaulniers <ndesaulniers@google.com>
Reviewed-by: Mika Westerberg <mika.westerberg@linux.intel.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
drivers/spi/spi-ep93xx.c | 36 +++++++++++++++++++++++++-----------
1 file changed, 25 insertions(+), 11 deletions(-)
diff --git a/drivers/spi/spi-ep93xx.c b/drivers/spi/spi-ep93xx.c
index f1526757aaf6..79fc3940245a 100644
--- a/drivers/spi/spi-ep93xx.c
+++ b/drivers/spi/spi-ep93xx.c
@@ -246,6 +246,19 @@ static int ep93xx_spi_read_write(struct spi_master *master)
return -EINPROGRESS;
}
+static enum dma_transfer_direction
+ep93xx_dma_data_to_trans_dir(enum dma_data_direction dir)
+{
+ switch (dir) {
+ case DMA_TO_DEVICE:
+ return DMA_MEM_TO_DEV;
+ case DMA_FROM_DEVICE:
+ return DMA_DEV_TO_MEM;
+ default:
+ return DMA_TRANS_NONE;
+ }
+}
+
/**
* ep93xx_spi_dma_prepare() - prepares a DMA transfer
* @master: SPI master
@@ -257,7 +270,7 @@ static int ep93xx_spi_read_write(struct spi_master *master)
*/
static struct dma_async_tx_descriptor *
ep93xx_spi_dma_prepare(struct spi_master *master,
- enum dma_transfer_direction dir)
+ enum dma_data_direction dir)
{
struct ep93xx_spi *espi = spi_master_get_devdata(master);
struct spi_transfer *xfer = master->cur_msg->state;
@@ -277,9 +290,9 @@ ep93xx_spi_dma_prepare(struct spi_master *master,
buswidth = DMA_SLAVE_BUSWIDTH_1_BYTE;
memset(&conf, 0, sizeof(conf));
- conf.direction = dir;
+ conf.direction = ep93xx_dma_data_to_trans_dir(dir);
- if (dir == DMA_DEV_TO_MEM) {
+ if (dir == DMA_FROM_DEVICE) {
chan = espi->dma_rx;
buf = xfer->rx_buf;
sgt = &espi->rx_sgt;
@@ -343,7 +356,8 @@ ep93xx_spi_dma_prepare(struct spi_master *master,
if (!nents)
return ERR_PTR(-ENOMEM);
- txd = dmaengine_prep_slave_sg(chan, sgt->sgl, nents, dir, DMA_CTRL_ACK);
+ txd = dmaengine_prep_slave_sg(chan, sgt->sgl, nents, conf.direction,
+ DMA_CTRL_ACK);
if (!txd) {
dma_unmap_sg(chan->device->dev, sgt->sgl, sgt->nents, dir);
return ERR_PTR(-ENOMEM);
@@ -360,13 +374,13 @@ ep93xx_spi_dma_prepare(struct spi_master *master,
* unmapped.
*/
static void ep93xx_spi_dma_finish(struct spi_master *master,
- enum dma_transfer_direction dir)
+ enum dma_data_direction dir)
{
struct ep93xx_spi *espi = spi_master_get_devdata(master);
struct dma_chan *chan;
struct sg_table *sgt;
- if (dir == DMA_DEV_TO_MEM) {
+ if (dir == DMA_FROM_DEVICE) {
chan = espi->dma_rx;
sgt = &espi->rx_sgt;
} else {
@@ -381,8 +395,8 @@ static void ep93xx_spi_dma_callback(void *callback_param)
{
struct spi_master *master = callback_param;
- ep93xx_spi_dma_finish(master, DMA_MEM_TO_DEV);
- ep93xx_spi_dma_finish(master, DMA_DEV_TO_MEM);
+ ep93xx_spi_dma_finish(master, DMA_TO_DEVICE);
+ ep93xx_spi_dma_finish(master, DMA_FROM_DEVICE);
spi_finalize_current_transfer(master);
}
@@ -392,15 +406,15 @@ static int ep93xx_spi_dma_transfer(struct spi_master *master)
struct ep93xx_spi *espi = spi_master_get_devdata(master);
struct dma_async_tx_descriptor *rxd, *txd;
- rxd = ep93xx_spi_dma_prepare(master, DMA_DEV_TO_MEM);
+ rxd = ep93xx_spi_dma_prepare(master, DMA_FROM_DEVICE);
if (IS_ERR(rxd)) {
dev_err(&master->dev, "DMA RX failed: %ld\n", PTR_ERR(rxd));
return PTR_ERR(rxd);
}
- txd = ep93xx_spi_dma_prepare(master, DMA_MEM_TO_DEV);
+ txd = ep93xx_spi_dma_prepare(master, DMA_TO_DEVICE);
if (IS_ERR(txd)) {
- ep93xx_spi_dma_finish(master, DMA_DEV_TO_MEM);
+ ep93xx_spi_dma_finish(master, DMA_FROM_DEVICE);
dev_err(&master->dev, "DMA TX failed: %ld\n", PTR_ERR(txd));
return PTR_ERR(txd);
}
--
2.17.1
next prev parent reply other threads:[~2018-10-31 23:06 UTC|newest]
Thread overview: 126+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-10-31 23:05 [PATCH AUTOSEL 4.18 001/126] net: socionext: Reset tx queue in ndo_stop Sasha Levin
2018-10-31 23:05 ` [PATCH AUTOSEL 4.18 002/126] net: ethernet: ti: cpsw: unsync mcast entries while switch promisc mode Sasha Levin
2018-10-31 23:05 ` [PATCH AUTOSEL 4.18 003/126] locking/lockdep: Fix debug_locks off performance problem Sasha Levin
2018-10-31 23:05 ` [PATCH AUTOSEL 4.18 004/126] netfilter: xt_nat: fix DNAT target for shifted portmap ranges Sasha Levin
2018-10-31 23:05 ` [PATCH AUTOSEL 4.18 005/126] ataflop: fix error handling during setup Sasha Levin
2018-10-31 23:05 ` [PATCH AUTOSEL 4.18 006/126] swim: fix cleanup on setup error Sasha Levin
2018-10-31 23:05 ` [PATCH AUTOSEL 4.18 007/126] arm64: cpufeature: ctr: Fix cpu capability check for late CPUs Sasha Levin
2018-10-31 23:05 ` [PATCH AUTOSEL 4.18 008/126] nfp: devlink port split support for 1x100G CXP NIC Sasha Levin
2018-10-31 23:05 ` [PATCH AUTOSEL 4.18 009/126] tun: Consistently configure generic netdev params via rtnetlink Sasha Levin
2018-10-31 23:05 ` [PATCH AUTOSEL 4.18 010/126] s390/sthyi: Fix machine name validity indication Sasha Levin
2018-10-31 23:05 ` [PATCH AUTOSEL 4.18 011/126] hwmon: (pwm-fan) Set fan speed to 0 on suspend Sasha Levin
2018-10-31 23:06 ` [PATCH AUTOSEL 4.18 012/126] lightnvm: pblk: fix race on sysfs line state Sasha Levin
2018-10-31 23:06 ` [PATCH AUTOSEL 4.18 013/126] lightnvm: pblk: fix two sleep-in-atomic-context bugs Sasha Levin
2018-10-31 23:06 ` [PATCH AUTOSEL 4.18 014/126] lightnvm: pblk: fix race condition on metadata I/O Sasha Levin
2018-10-31 23:06 ` Sasha Levin [this message]
2018-10-31 23:06 ` [PATCH AUTOSEL 4.18 016/126] perf tools: Free temporary 'sys' string in read_event_files() Sasha Levin
2018-10-31 23:06 ` [PATCH AUTOSEL 4.18 017/126] perf tools: Cleanup trace-event-info 'tdata' leak Sasha Levin
2018-10-31 23:06 ` [PATCH AUTOSEL 4.18 018/126] perf strbuf: Match va_{add,copy} with va_end Sasha Levin
2018-10-31 23:06 ` [PATCH AUTOSEL 4.18 019/126] cpupower: Fix coredump on VMWare Sasha Levin
2018-10-31 23:06 ` [PATCH AUTOSEL 4.18 020/126] bcache: Populate writeback_rate_minimum attribute Sasha Levin
2018-10-31 23:06 ` [PATCH AUTOSEL 4.18 021/126] mmc: sdhci-pci-o2micro: Add quirk for O2 Micro dev 0x8620 rev 0x01 Sasha Levin
2018-10-31 23:06 ` [PATCH AUTOSEL 4.18 022/126] sdhci: acpi: add free_slot callback Sasha Levin
2018-10-31 23:06 ` [PATCH AUTOSEL 4.18 023/126] mtd: rawnand: denali: set SPARE_AREA_SKIP_BYTES register to 8 if unset Sasha Levin
2018-10-31 23:06 ` [PATCH AUTOSEL 4.18 024/126] iwlwifi: pcie: avoid empty free RB queue Sasha Levin
2018-10-31 23:06 ` [PATCH AUTOSEL 4.18 025/126] iwlwifi: mvm: clear HW_RESTART_REQUESTED when stopping the interface Sasha Levin
2018-10-31 23:06 ` [PATCH AUTOSEL 4.18 026/126] iwlwifi: mvm: check for n_profiles validity in EWRD ACPI Sasha Levin
2018-10-31 23:06 ` [PATCH AUTOSEL 4.18 027/126] x86/olpc: Indicate that legacy PC XO-1 platform should not register RTC Sasha Levin
2018-10-31 23:06 ` [PATCH AUTOSEL 4.18 028/126] nvmet-rdma: use a private workqueue for delete Sasha Levin
2018-10-31 23:06 ` [PATCH AUTOSEL 4.18 029/126] ACPI/PPTT: Handle architecturally unknown cache types Sasha Levin
2018-10-31 23:06 ` [PATCH AUTOSEL 4.18 030/126] ACPI / PM: LPIT: Register sysfs attributes based on FADT Sasha Levin
2018-10-31 23:06 ` [PATCH AUTOSEL 4.18 031/126] ACPI / processor: Fix the return value of acpi_processor_ids_walk() Sasha Levin
2018-10-31 23:06 ` [PATCH AUTOSEL 4.18 032/126] cpufreq: dt: Try freeing static OPPs only if we have added them Sasha Levin
2018-10-31 23:06 ` [PATCH AUTOSEL 4.18 033/126] x86/intel_rdt: Show missing resctrl mount options Sasha Levin
2018-10-31 23:06 ` [PATCH AUTOSEL 4.18 034/126] mtd: rawnand: atmel: Fix potential NULL pointer dereference Sasha Levin
2018-10-31 23:06 ` [PATCH AUTOSEL 4.18 035/126] regulator: fixed: Default enable high on DT regulators Sasha Levin
2018-10-31 23:06 ` [PATCH AUTOSEL 4.18 036/126] signal: Introduce COMPAT_SIGMINSTKSZ for use in compat_sys_sigaltstack Sasha Levin
2018-10-31 23:06 ` [PATCH AUTOSEL 4.18 037/126] ice: fix changing of ring descriptor size (ethtool -G) Sasha Levin
2018-10-31 23:06 ` [PATCH AUTOSEL 4.18 038/126] ice: update fw version check logic Sasha Levin
2018-10-31 23:06 ` [PATCH AUTOSEL 4.18 039/126] net: hns3: Fix for packet buffer setting bug Sasha Levin
2018-10-31 23:06 ` [PATCH AUTOSEL 4.18 040/126] Bluetooth: btbcm: Add entry for BCM4335C0 UART bluetooth Sasha Levin
2018-10-31 23:06 ` [PATCH AUTOSEL 4.18 041/126] x86: boot: Fix EFI stub alignment Sasha Levin
2018-10-31 23:06 ` [PATCH AUTOSEL 4.18 042/126] net: hns3: Add nic state check before calling netif_tx_wake_queue Sasha Levin
2018-10-31 23:06 ` [PATCH AUTOSEL 4.18 043/126] net: hns3: Fix ets validate issue Sasha Levin
2018-10-31 23:06 ` [PATCH AUTOSEL 4.18 044/126] pinctrl: sunxi: fix 'pctrl->functions' allocation in sunxi_pinctrl_build_state Sasha Levin
2018-10-31 23:06 ` [PATCH AUTOSEL 4.18 045/126] pinctrl: qcom: spmi-mpp: Fix err handling of pmic_mpp_set_mux Sasha Levin
2018-10-31 23:06 ` [PATCH AUTOSEL 4.18 046/126] brcmfmac: fix for proper support of 160MHz bandwidth Sasha Levin
2018-10-31 23:06 ` [PATCH AUTOSEL 4.18 047/126] net: hns3: Check hdev state when getting link status Sasha Levin
2018-10-31 23:06 ` [PATCH AUTOSEL 4.18 048/126] net: hns3: Set STATE_DOWN bit of hdev state when stopping net Sasha Levin
2018-10-31 23:06 ` [PATCH AUTOSEL 4.18 049/126] net: phy: phylink: ensure the carrier is off when starting phylink Sasha Levin
2018-10-31 23:06 ` [PATCH AUTOSEL 4.18 050/126] block, bfq: correctly charge and reset entity service in all cases Sasha Levin
2018-10-31 23:06 ` [PATCH AUTOSEL 4.18 051/126] arm64: entry: Allow handling of undefined instructions from EL1 Sasha Levin
2018-10-31 23:06 ` [PATCH AUTOSEL 4.18 052/126] kprobes: Return error if we fail to reuse kprobe instead of BUG_ON() Sasha Levin
2018-10-31 23:06 ` [PATCH AUTOSEL 4.18 053/126] spi: gpio: No MISO does not imply no RX Sasha Levin
2018-10-31 23:06 ` [PATCH AUTOSEL 4.18 054/126] ACPI / LPSS: Add alternative ACPI HIDs for Cherry Trail DMA controllers Sasha Levin
2018-10-31 23:06 ` [PATCH AUTOSEL 4.18 055/126] pinctrl: qcom: spmi-mpp: Fix drive strength setting Sasha Levin
2018-10-31 23:06 ` [PATCH AUTOSEL 4.18 056/126] bpf/verifier: fix verifier instability Sasha Levin
2018-10-31 23:06 ` [PATCH AUTOSEL 4.18 057/126] failover: Add missing check to validate 'slave_dev' in net_failover_slave_unregister Sasha Levin
2018-10-31 23:06 ` [PATCH AUTOSEL 4.18 058/126] perf tests: Fix record+probe_libc_inet_pton.sh without ping's debuginfo Sasha Levin
2018-10-31 23:06 ` [PATCH AUTOSEL 4.18 059/126] pinctrl: spmi-mpp: Fix pmic_mpp_config_get() to be compliant Sasha Levin
2018-10-31 23:06 ` [PATCH AUTOSEL 4.18 060/126] pinctrl: ssbi-gpio: Fix pm8xxx_pin_config_get() " Sasha Levin
2018-10-31 23:06 ` [PATCH AUTOSEL 4.18 061/126] net: hns3: Preserve vlan 0 in hardware table Sasha Levin
2018-10-31 23:06 ` [PATCH AUTOSEL 4.18 062/126] net: hns3: Fix ping exited problem when doing lp selftest Sasha Levin
2018-10-31 23:06 ` [PATCH AUTOSEL 4.18 063/126] net: hns3: Fix for vf vlan delete failed problem Sasha Levin
2018-10-31 23:06 ` [PATCH AUTOSEL 4.18 064/126] net: dsa: mv88e6xxx: Fix writing to a PHY page Sasha Levin
2018-10-31 23:06 ` [PATCH AUTOSEL 4.18 065/126] rsi: fix memory alignment issue in ARM32 platforms Sasha Levin
2018-10-31 23:06 ` [PATCH AUTOSEL 4.18 066/126] iwlwifi: mvm: fix BAR seq ctrl reporting Sasha Levin
2018-10-31 23:06 ` [PATCH AUTOSEL 4.18 067/126] gpio: brcmstb: allow 0 width GPIO banks Sasha Levin
2018-10-31 23:06 ` [PATCH AUTOSEL 4.18 068/126] ixgbe: disallow IPsec Tx offload when in SR-IOV mode Sasha Levin
2018-10-31 23:06 ` [PATCH AUTOSEL 4.18 069/126] ixgbevf: VF2VF TCP RSS Sasha Levin
2018-10-31 23:06 ` [PATCH AUTOSEL 4.18 070/126] ath10k: schedule hardware restart if WMI command times out Sasha Levin
2018-10-31 23:06 ` [PATCH AUTOSEL 4.18 071/126] libata: Apply NOLPM quirk for SAMSUNG MZ7TD256HAFV-000L9 Sasha Levin
2018-10-31 23:07 ` [PATCH AUTOSEL 4.18 072/126] thermal: rcar_thermal: Prevent doing work after unbind Sasha Levin
2018-10-31 23:07 ` [PATCH AUTOSEL 4.18 073/126] thermal: da9062/61: Prevent hardware access during system suspend Sasha Levin
2018-10-31 23:07 ` [PATCH AUTOSEL 4.18 074/126] cgroup, netclassid: add a preemption point to write_classid Sasha Levin
2018-10-31 23:07 ` [PATCH AUTOSEL 4.18 075/126] net: stmmac: dwmac-sun8i: fix OF child-node lookup Sasha Levin
2018-10-31 23:07 ` [PATCH AUTOSEL 4.18 076/126] f2fs: fix to account IO correctly for cgroup writeback Sasha Levin
2018-10-31 23:07 ` [PATCH AUTOSEL 4.18 077/126] MD: Memory leak when flush bio size is zero Sasha Levin
2018-10-31 23:07 ` [PATCH AUTOSEL 4.18 078/126] md: fix memleak for mempool Sasha Levin
2018-10-31 23:07 ` [PATCH AUTOSEL 4.18 079/126] scsi: esp_scsi: Track residual for PIO transfers Sasha Levin
2018-10-31 23:07 ` [PATCH AUTOSEL 4.18 080/126] scsi: ufs: Schedule clk gating work on correct queue Sasha Levin
2018-10-31 23:07 ` [PATCH AUTOSEL 4.18 081/126] UAPI: ndctl: Fix g++-unsupported initialisation in headers Sasha Levin
2018-10-31 23:07 ` [PATCH AUTOSEL 4.18 082/126] KVM: nVMX: Clear reserved bits of #DB exit qualification Sasha Levin
2018-10-31 23:07 ` [PATCH AUTOSEL 4.18 083/126] scsi: megaraid_sas: fix a missing-check bug Sasha Levin
2018-10-31 23:07 ` [PATCH AUTOSEL 4.18 084/126] RDMA/core: Do not expose unsupported counters Sasha Levin
2018-10-31 23:07 ` [PATCH AUTOSEL 4.18 085/126] IB/ipoib: Clear IPCB before icmp_send Sasha Levin
2018-10-31 23:07 ` [PATCH AUTOSEL 4.18 086/126] RDMA/bnxt_re: Avoid accessing nq->bar_reg_iomem in failure case Sasha Levin
2018-10-31 23:07 ` [PATCH AUTOSEL 4.18 087/126] RDMA/bnxt_re: Fix recursive lock warning in debug kernel Sasha Levin
2018-10-31 23:07 ` [PATCH AUTOSEL 4.18 088/126] usb: host: ohci-at91: fix request of irq for optional gpio Sasha Levin
2018-10-31 23:07 ` [PATCH AUTOSEL 4.18 089/126] PCI: mediatek: Fix mtk_pcie_find_port() endpoint/port matching logic Sasha Levin
2018-10-31 23:07 ` [PATCH AUTOSEL 4.18 090/126] PCI: cadence: Use AXI region 0 to signal interrupts from EP Sasha Levin
2018-10-31 23:07 ` [PATCH AUTOSEL 4.18 091/126] usb: typec: tcpm: Report back negotiated PPS voltage and current Sasha Levin
2018-10-31 23:07 ` [PATCH AUTOSEL 4.18 092/126] tpm: suppress transmit cmd error logs when TPM 1.2 is disabled/deactivated Sasha Levin
2018-10-31 23:07 ` [PATCH AUTOSEL 4.18 093/126] f2fs: clear PageError on the read path Sasha Levin
2018-10-31 23:07 ` [PATCH AUTOSEL 4.18 094/126] Drivers: hv: vmbus: Use cpumask_var_t for on-stack cpu mask Sasha Levin
2018-10-31 23:07 ` [PATCH AUTOSEL 4.18 095/126] Drivers: hv: kvp: Fix two "this statement may fall through" warnings Sasha Levin
2018-10-31 23:07 ` [PATCH AUTOSEL 4.18 096/126] VMCI: Resource wildcard match fixed Sasha Levin
2018-10-31 23:07 ` [PATCH AUTOSEL 4.18 097/126] PCI / ACPI: Enable wake automatically for power managed bridges Sasha Levin
2018-10-31 23:07 ` [PATCH AUTOSEL 4.18 098/126] xprtrdma: Reset credit grant properly after a disconnect Sasha Levin
2018-10-31 23:07 ` [PATCH AUTOSEL 4.18 099/126] irqchip/pdc: Setup all edge interrupts as rising edge at GIC Sasha Levin
2018-10-31 23:07 ` [PATCH AUTOSEL 4.18 100/126] usb: dwc2: fix a race with external vbus supply Sasha Levin
2018-10-31 23:07 ` [PATCH AUTOSEL 4.18 101/126] usb: gadget: udc: atmel: handle at91sam9rl PMC Sasha Levin
2018-10-31 23:07 ` [PATCH AUTOSEL 4.18 102/126] ext4: fix argument checking in EXT4_IOC_MOVE_EXT Sasha Levin
2018-10-31 23:07 ` [PATCH AUTOSEL 4.18 103/126] MD: fix invalid stored role for a disk Sasha Levin
2018-10-31 23:07 ` [PATCH AUTOSEL 4.18 104/126] nvmem: check the return value of nvmem_add_cells() Sasha Levin
2018-10-31 23:07 ` [PATCH AUTOSEL 4.18 105/126] xhci: Avoid USB autosuspend when resuming USB2 ports Sasha Levin
2018-10-31 23:07 ` [PATCH AUTOSEL 4.18 106/126] f2fs: fix to recover inode's crtime during POR Sasha Levin
2018-10-31 23:07 ` [PATCH AUTOSEL 4.18 107/126] f2fs: fix to recover inode's i_flags " Sasha Levin
2018-10-31 23:07 ` [PATCH AUTOSEL 4.18 108/126] PCI/MSI: Warn and return error if driver enables MSI/MSI-X twice Sasha Levin
2018-10-31 23:07 ` [PATCH AUTOSEL 4.18 109/126] coresight: etb10: Fix handling of perf mode Sasha Levin
2018-10-31 23:07 ` [PATCH AUTOSEL 4.18 110/126] PCI: dwc: pci-dra7xx: Enable errata i870 for both EP and RC mode Sasha Levin
2018-10-31 23:07 ` [PATCH AUTOSEL 4.18 111/126] crypto: caam - fix implicit casts in endianness helpers Sasha Levin
2018-10-31 23:07 ` [PATCH AUTOSEL 4.18 112/126] usb: chipidea: Prevent unbalanced IRQ disable Sasha Levin
2018-10-31 23:07 ` [PATCH AUTOSEL 4.18 113/126] Smack: ptrace capability use fixes Sasha Levin
2018-10-31 23:07 ` [PATCH AUTOSEL 4.18 114/126] driver/dma/ioat: Call del_timer_sync() without holding prep_lock Sasha Levin
2018-10-31 23:07 ` [PATCH AUTOSEL 4.18 115/126] firmware: coreboot: Unmap ioregion after device population Sasha Levin
2018-10-31 23:07 ` [PATCH AUTOSEL 4.18 116/126] IB/mlx5: Allow transition of DCI QP to reset Sasha Levin
2018-10-31 23:07 ` [PATCH AUTOSEL 4.18 117/126] uio: ensure class is registered before devices Sasha Levin
2018-10-31 23:07 ` [PATCH AUTOSEL 4.18 118/126] scsi: lpfc: Correct soft lockup when running mds diagnostics Sasha Levin
2018-10-31 23:07 ` [PATCH AUTOSEL 4.18 119/126] scsi: lpfc: Correct race with abort on completion path Sasha Levin
2018-10-31 23:07 ` [PATCH AUTOSEL 4.18 120/126] f2fs: avoid sleeping under spin_lock Sasha Levin
2018-10-31 23:07 ` [PATCH AUTOSEL 4.18 121/126] f2fs: report error if quota off error during umount Sasha Levin
2018-10-31 23:07 ` [PATCH AUTOSEL 4.18 122/126] signal: Always deliver the kernel's SIGKILL and SIGSTOP to a pid namespace init Sasha Levin
2018-10-31 23:07 ` [PATCH AUTOSEL 4.18 123/126] mfd: menelaus: Fix possible race condition and leak Sasha Levin
2018-10-31 23:07 ` [PATCH AUTOSEL 4.18 124/126] dmaengine: dma-jz4780: Return error if not probed from DT Sasha Levin
2018-10-31 23:07 ` [PATCH AUTOSEL 4.18 125/126] IB/rxe: fix for duplicate request processing and ack psns Sasha Levin
2018-10-31 23:07 ` [PATCH AUTOSEL 4.18 126/126] ALSA: hda: Check the non-cached stream buffers more explicitly 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=20181031230754.29029-15-sashal@kernel.org \
--to=sashal@kernel.org \
--cc=broonie@kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=natechancellor@gmail.com \
--cc=stable@vger.kernel.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).